2025-04-25T04:10:15.3420080Z Current runner version: '2.323.0' 2025-04-25T04:10:15.3428508Z Runner name: 'i-011f9a5b269b95681' 2025-04-25T04:10:15.3429684Z Machine name: 'EC2AMAZ-DD9BHOF' 2025-04-25T04:10:15.3434634Z ##[group]GITHUB_TOKEN Permissions 2025-04-25T04:10:15.3437574Z Actions: read 2025-04-25T04:10:15.3438179Z Attestations: read 2025-04-25T04:10:15.3438801Z Checks: read 2025-04-25T04:10:15.3439363Z Contents: read 2025-04-25T04:10:15.3439909Z Deployments: read 2025-04-25T04:10:15.3440547Z Discussions: read 2025-04-25T04:10:15.3441101Z Issues: read 2025-04-25T04:10:15.3441628Z Metadata: read 2025-04-25T04:10:15.3442152Z Models: read 2025-04-25T04:10:15.3442664Z Packages: read 2025-04-25T04:10:15.3443282Z Pages: read 2025-04-25T04:10:15.3443713Z PullRequests: read 2025-04-25T04:10:15.3444273Z RepositoryProjects: read 2025-04-25T04:10:15.3444798Z SecurityEvents: read 2025-04-25T04:10:15.3445290Z Statuses: read 2025-04-25T04:10:15.3445797Z ##[endgroup] 2025-04-25T04:10:15.3448426Z Secret source: Actions 2025-04-25T04:10:15.3449379Z Prepare workflow directory 2025-04-25T04:10:15.4027349Z Prepare all required actions 2025-04-25T04:10:15.4070608Z Getting action download info 2025-04-25T04:10:15.6120157Z Download action repository 'pytorch/test-infra@main' (SHA:dba7ae1b796e6ea5268ffdec5594ba272b42a67a) 2025-04-25T04:10:18.4537861Z Download action repository 'pytorch/pytorch@main' (SHA:e2c7ae52d5c896845d26c6c49c187083fa5c4400) 2025-04-25T04:10:46.1946692Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-04-25T04:10:46.8658181Z Getting action download info 2025-04-25T04:10:46.9680001Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-04-25T04:10:47.2680996Z Complete job name: win-vs2022-cuda12.6-py3 / build 2025-04-25T04:10:47.3372529Z ##[group]Run git config --global core.longpaths true 2025-04-25T04:10:47.3373209Z git config --global core.longpaths true 2025-04-25T04:10:47.3373619Z git config --global core.symlinks true 2025-04-25T04:10:47.3374007Z  2025-04-25T04:10:47.3374437Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-04-25T04:10:47.3375084Z # the directory on Windows and prevent GHA from checking out as reported 2025-04-25T04:10:47.3375691Z # in https://github.com/actions/checkout/issues/1018 2025-04-25T04:10:47.3376183Z git config --global core.fsmonitor false 2025-04-25T04:10:47.3401707Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:10:47.3402604Z env: 2025-04-25T04:10:47.3402872Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:47.3403206Z ##[endgroup] 2025-04-25T04:10:47.9024934Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-04-25T04:10:47.9025456Z env: 2025-04-25T04:10:47.9025715Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:47.9025989Z ##[endgroup] 2025-04-25T04:10:47.9195049Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:10:47.9195929Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:10:47.9196666Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-04-25T04:10:47.9197206Z # handle tool 2025-04-25T04:10:47.9197594Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-04-25T04:10:47.9198073Z Foreach ($process In $processes) { 2025-04-25T04:10:47.9198406Z  Try { 2025-04-25T04:10:47.9199026Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-04-25T04:10:47.9199816Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-04-25T04:10:47.9200300Z  } 2025-04-25T04:10:47.9200522Z  Catch { 2025-04-25T04:10:47.9202333Z  Write-Output "No leftover $process process, continuing" 2025-04-25T04:10:47.9202754Z  Write-Output $_ 2025-04-25T04:10:47.9203031Z  } 2025-04-25T04:10:47.9203262Z } 2025-04-25T04:10:47.9203472Z  2025-04-25T04:10:47.9204009Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-04-25T04:10:47.9204618Z # for hung processes 2025-04-25T04:10:47.9204948Z Foreach ($process In $processes) { 2025-04-25T04:10:47.9205270Z  Try { 2025-04-25T04:10:47.9205725Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-04-25T04:10:47.9206244Z  } 2025-04-25T04:10:47.9206466Z  Catch { 2025-04-25T04:10:47.9206728Z  Write-Output $_ 2025-04-25T04:10:47.9206996Z  } 2025-04-25T04:10:47.9207222Z } 2025-04-25T04:10:47.9207436Z  2025-04-25T04:10:47.9207668Z Try { 2025-04-25T04:10:47.9207940Z  # Print all the processes for debugging 2025-04-25T04:10:47.9208707Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-04-25T04:10:47.9209181Z } 2025-04-25T04:10:47.9209402Z Catch { 2025-04-25T04:10:47.9209849Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-04-25T04:10:47.9210365Z  Write-Output $_ 2025-04-25T04:10:47.9210640Z } 2025-04-25T04:10:47.9227420Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:10:47.9227957Z env: 2025-04-25T04:10:47.9228206Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:47.9228488Z ##[endgroup] 2025-04-25T04:10:48.3015918Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:10:48.3078960Z Finished 2025-04-25T04:10:48.3241140Z No leftover python process, continuing 2025-04-25T04:10:48.3740609Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-04-25T04:10:48.3741407Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:9 char:5 2025-04-25T04:10:48.3742171Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:48.3742668Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.3743280Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:48.3744225Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:48.3744933Z 2025-04-25T04:10:48.3763373Z No leftover ninja process, continuing 2025-04-25T04:10:48.3774683Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-04-25T04:10:48.3775432Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:9 char:5 2025-04-25T04:10:48.3776272Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:48.3776920Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.3777647Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:48.3778693Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:48.3779380Z 2025-04-25T04:10:48.3795020Z No leftover cl process, continuing 2025-04-25T04:10:48.3807231Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-04-25T04:10:48.3808074Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:9 char:5 2025-04-25T04:10:48.3808749Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:48.3809332Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.3810781Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:48.3811848Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:48.3812567Z 2025-04-25T04:10:48.3827110Z No leftover nvcc process, continuing 2025-04-25T04:10:48.3839011Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-04-25T04:10:48.3839757Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:9 char:5 2025-04-25T04:10:48.3840385Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:48.3840836Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.3841477Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:48.3842345Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:48.3843035Z 2025-04-25T04:10:48.3881597Z No leftover sccache process, continuing 2025-04-25T04:10:48.3895140Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-04-25T04:10:48.3896042Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:9 char:5 2025-04-25T04:10:48.3896747Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:48.3897240Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.3897837Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:48.3898889Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:48.3899622Z 2025-04-25T04:10:48.3911621Z No leftover git process, continuing 2025-04-25T04:10:48.3924475Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-04-25T04:10:48.3925258Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:9 char:5 2025-04-25T04:10:48.3926081Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:10:48.3926580Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.3927135Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-04-25T04:10:48.3928059Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:10:48.3928797Z 2025-04-25T04:10:48.5853128Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.5854190Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.5854942Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.5855479Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.5856154Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.5856639Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.5857105Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.5857876Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.5858443Z 2025-04-25T04:10:48.5883932Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.5885015Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.5885731Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.5886256Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.5887056Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.5887545Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.5888020Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.5888888Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.5889468Z 2025-04-25T04:10:48.5914432Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.5915497Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.5916277Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.5917173Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.5918243Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.5918743Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.5919235Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.5920062Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.5920797Z 2025-04-25T04:10:48.5947575Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.5948564Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.5949259Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.5949786Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.5950540Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.5951077Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.5951569Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.5952338Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.5952921Z 2025-04-25T04:10:48.5983220Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.5984189Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.5985066Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.5985597Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.5986363Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.5986918Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.5987396Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.5988152Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.5988724Z 2025-04-25T04:10:48.6015644Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.6016604Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.6017247Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.6017779Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.6018379Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.6019027Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.6019844Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.6020602Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.6021190Z 2025-04-25T04:10:48.6047270Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-04-25T04:10:48.6048227Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-04-25T04:10:48.6048994Z deletion. (Exception from HRESULT: 0x800703FA). 2025-04-25T04:10:48.6049516Z At C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1:21 char:6 2025-04-25T04:10:48.6050132Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:10:48.6050605Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:10:48.6051091Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-04-25T04:10:48.6051848Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-04-25T04:10:48.6052516Z 2025-04-25T04:10:48.7578167Z Caption CommandLine ProcessId 2025-04-25T04:10:48.7578806Z 2025-04-25T04:10:48.7579300Z System Idle Process 0 2025-04-25T04:10:48.7579770Z 2025-04-25T04:10:48.7580432Z System 4 2025-04-25T04:10:48.7580843Z 2025-04-25T04:10:48.7581294Z Registry 168 2025-04-25T04:10:48.7581725Z 2025-04-25T04:10:48.7582428Z smss.exe 412 2025-04-25T04:10:48.7583369Z 2025-04-25T04:10:48.7584429Z csrss.exe 512 2025-04-25T04:10:48.7585689Z 2025-04-25T04:10:48.7586155Z wininit.exe 588 2025-04-25T04:10:48.7586577Z 2025-04-25T04:10:48.7587016Z csrss.exe 596 2025-04-25T04:10:48.7587433Z 2025-04-25T04:10:48.7588457Z winlogon.exe winlogon.exe 660 2025-04-25T04:10:48.7588939Z 2025-04-25T04:10:48.7589522Z services.exe 732 2025-04-25T04:10:48.7589957Z 2025-04-25T04:10:48.7591450Z lsass.exe C:\Windows\system32\lsass.exe 756 2025-04-25T04:10:48.7591979Z 2025-04-25T04:10:48.7592671Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 868 2025-04-25T04:10:48.7593313Z 2025-04-25T04:10:48.7593999Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 892 2025-04-25T04:10:48.7594676Z 2025-04-25T04:10:48.7595254Z fontdrvhost.exe "fontdrvhost.exe" 920 2025-04-25T04:10:48.7595883Z 2025-04-25T04:10:48.7596418Z fontdrvhost.exe "fontdrvhost.exe" 928 2025-04-25T04:10:48.7596945Z 2025-04-25T04:10:48.7597561Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 1016 2025-04-25T04:10:48.7598140Z 2025-04-25T04:10:48.7598805Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 8 2025-04-25T04:10:48.7599424Z 2025-04-25T04:10:48.7600069Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 724 2025-04-25T04:10:48.7600696Z 2025-04-25T04:10:48.7601511Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1096 2025-04-25T04:10:48.7602250Z 2025-04-25T04:10:48.7602674Z dwm.exe "dwm.exe" 1148 2025-04-25T04:10:48.7603115Z 2025-04-25T04:10:48.7603846Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1228 2025-04-25T04:10:48.7604656Z 2025-04-25T04:10:48.7605264Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1312 2025-04-25T04:10:48.7605868Z 2025-04-25T04:10:48.7606578Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1344 2025-04-25T04:10:48.7607292Z 2025-04-25T04:10:48.7607886Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1368 2025-04-25T04:10:48.7608599Z 2025-04-25T04:10:48.7609223Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1400 2025-04-25T04:10:48.7609834Z 2025-04-25T04:10:48.7610474Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-04-25T04:10:48.7611120Z 2025-04-25T04:10:48.7611954Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1492 2025-04-25T04:10:48.7612703Z 2025-04-25T04:10:48.7614699Z 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 1512 2025-04-25T04:10:48.7616664Z 2025-04-25T04:10:48.7617317Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1580 2025-04-25T04:10:48.7618025Z 2025-04-25T04:10:48.7618623Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1692 2025-04-25T04:10:48.7619247Z 2025-04-25T04:10:48.7619839Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1700 2025-04-25T04:10:48.7620461Z 2025-04-25T04:10:48.7621140Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1708 2025-04-25T04:10:48.7621802Z 2025-04-25T04:10:48.7622380Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1824 2025-04-25T04:10:48.7622975Z 2025-04-25T04:10:48.7623685Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1848 2025-04-25T04:10:48.7624330Z 2025-04-25T04:10:48.7625036Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1856 2025-04-25T04:10:48.7625736Z 2025-04-25T04:10:48.7626384Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1924 2025-04-25T04:10:48.7627037Z 2025-04-25T04:10:48.7627690Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1960 2025-04-25T04:10:48.7628975Z 2025-04-25T04:10:48.7629664Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2000 2025-04-25T04:10:48.7630345Z 2025-04-25T04:10:48.7631033Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 1224 2025-04-25T04:10:48.7631737Z 2025-04-25T04:10:48.7632522Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2052 2025-04-25T04:10:48.7633294Z 2025-04-25T04:10:48.7633839Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2220 2025-04-25T04:10:48.7634374Z 2025-04-25T04:10:48.7635472Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2296 2025-04-25T04:10:48.7636221Z 2025-04-25T04:10:48.7636829Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2320 2025-04-25T04:10:48.7637462Z 2025-04-25T04:10:48.7638105Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2436 2025-04-25T04:10:48.7638773Z 2025-04-25T04:10:48.7639437Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2444 2025-04-25T04:10:48.7640045Z 2025-04-25T04:10:48.7640755Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2456 2025-04-25T04:10:48.7641467Z 2025-04-25T04:10:48.7642309Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2468 2025-04-25T04:10:48.7643024Z 2025-04-25T04:10:48.7643645Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2480 2025-04-25T04:10:48.7644291Z 2025-04-25T04:10:48.7644898Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2488 2025-04-25T04:10:48.7645510Z 2025-04-25T04:10:48.7646220Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2504 2025-04-25T04:10:48.7646847Z 2025-04-25T04:10:48.7647503Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2512 2025-04-25T04:10:48.7648184Z 2025-04-25T04:10:48.7648913Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2788 2025-04-25T04:10:48.7649616Z 2025-04-25T04:10:48.7650143Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2832 2025-04-25T04:10:48.7650721Z 2025-04-25T04:10:48.7651361Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2872 2025-04-25T04:10:48.7651999Z 2025-04-25T04:10:48.7652753Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3004 2025-04-25T04:10:48.7653537Z 2025-04-25T04:10:48.7654140Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3024 2025-04-25T04:10:48.7654776Z 2025-04-25T04:10:48.7655357Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 2072 2025-04-25T04:10:48.7655974Z 2025-04-25T04:10:48.7656887Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3212 2025-04-25T04:10:48.7657736Z 2025-04-25T04:10:48.7658464Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3476 2025-04-25T04:10:48.7659227Z 2025-04-25T04:10:48.7659765Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3624 2025-04-25T04:10:48.7660400Z 2025-04-25T04:10:48.7661093Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4052 2025-04-25T04:10:48.7661804Z 2025-04-25T04:10:48.7662413Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 3100 2025-04-25T04:10:48.7663042Z 2025-04-25T04:10:48.7664910Z 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 1684 2025-04-25T04:10:48.7666765Z 2025-04-25T04:10:48.7667602Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 3568 2025-04-25T04:10:48.7668460Z 2025-04-25T04:10:48.7669005Z vds.exe C:\Windows\System32\vds.exe 3844 2025-04-25T04:10:48.7669585Z 2025-04-25T04:10:48.7670225Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 2604 2025-04-25T04:10:48.7670891Z 2025-04-25T04:10:48.7671386Z msdtc.exe C:\Windows\System32\msdtc.exe 3752 2025-04-25T04:10:48.7671906Z 2025-04-25T04:10:48.7672599Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 1168 2025-04-25T04:10:48.7673390Z 2025-04-25T04:10:48.7673975Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1608 2025-04-25T04:10:48.7674567Z 2025-04-25T04:10:48.7675286Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 3680 2025-04-25T04:10:48.7676022Z 2025-04-25T04:10:48.7676713Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2416 2025-04-25T04:10:48.7677424Z 2025-04-25T04:10:48.7678015Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4248 2025-04-25T04:10:48.7678647Z 2025-04-25T04:10:48.7679349Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4656 2025-04-25T04:10:48.7680031Z 2025-04-25T04:10:48.7680707Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 3424 2025-04-25T04:10:48.7681420Z 2025-04-25T04:10:48.7682178Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 5004 2025-04-25T04:10:48.7683005Z 2025-04-25T04:10:48.7683834Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 5052 2025-04-25T04:10:48.7684680Z 2025-04-25T04:10:48.7686413Z 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 1192 2025-04-25T04:10:48.7688167Z 2025-04-25T04:10:48.7688801Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1648 2025-04-25T04:10:48.7689336Z 2025-04-25T04:10:48.7689863Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1768 2025-04-25T04:10:48.7690400Z 2025-04-25T04:10:48.7691004Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4108 2025-04-25T04:10:48.7691623Z 2025-04-25T04:10:48.7692306Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1660 2025-04-25T04:10:48.7692932Z 2025-04-25T04:10:48.7693536Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 3408 2025-04-25T04:10:48.7694154Z 2025-04-25T04:10:48.7694674Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4260 2025-04-25T04:10:48.7695290Z 2025-04-25T04:10:48.7695798Z taskhostw.exe taskhostw.exe /RuntimeWide 4440 2025-04-25T04:10:48.7696348Z 2025-04-25T04:10:48.7697067Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:528 2940 2025-04-25T04:10:48.7697812Z 2025-04-25T04:10:48.7698328Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4364 2025-04-25T04:10:48.7698876Z 2025-04-25T04:10:48.7699579Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:588 1504 2025-04-25T04:10:48.7700313Z 2025-04-25T04:10:48.7700893Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4960 2025-04-25T04:10:48.7701428Z 2025-04-25T04:10:48.7702126Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 144 2025-04-25T04:10:48.7702825Z 2025-04-25T04:10:48.7703595Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 5092 2025-04-25T04:10:48.7704370Z 2025-04-25T04:10:48.7705119Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1416 2025-04-25T04:10:48.7705973Z 2025-04-25T04:10:48.7706624Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 1912 1412 4680 2025-04-25T04:10:48.7707285Z 2025-04-25T04:10:48.7707810Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3392 2025-04-25T04:10:48.7708348Z 2025-04-25T04:10:48.7709294Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent de0 -InterruptEvent 0 -NGENProcess d14 -Pipe 4e8 -Comment "NGen Worker Process" 3952 2025-04-25T04:10:48.7710270Z 2025-04-25T04:10:48.7711201Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\497adc37-546b-4573-9ab5-e381c9c1a5ce.ps1'" 3120 2025-04-25T04:10:48.7712151Z 2025-04-25T04:10:48.7712926Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3416 2025-04-25T04:10:48.7713659Z 2025-04-25T04:10:48.7714191Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3032 2025-04-25T04:10:48.7714753Z 2025-04-25T04:10:48.7714759Z 2025-04-25T04:10:48.7714765Z 2025-04-25T04:10:48.8063453Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-04-25T04:10:48.8063896Z with: 2025-04-25T04:10:48.8064577Z github-secret: *** 2025-04-25T04:10:48.8066814Z 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:48.8069766Z activate-with-label: false 2025-04-25T04:10:48.8070026Z label: with-ssh 2025-04-25T04:10:48.8070244Z remove-existing-keys: true 2025-04-25T04:10:48.8070496Z fail-silently: true 2025-04-25T04:10:48.8070704Z env: 2025-04-25T04:10:48.8070922Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:48.8071169Z ##[endgroup] 2025-04-25T04:10:48.9706421Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-04-25T04:10:48.9708847Z ciflow reference detected, attempting to extract PR number 2025-04-25T04:10:49.3436361Z Grabbing public ssh keys from https://github.com/pytorch-bot[bot].keys 2025-04-25T04:10:49.3985979Z No SSH keys found for user pytorch-bot[bot] 2025-04-25T04:10:49.4506771Z Grabbing public ssh keys from https://github.com/laithsakka.keys 2025-04-25T04:10:49.4507452Z Public keys pulled and installed to C:\Users\runneruser\.ssh\authorized_keys 2025-04-25T04:10:49.4553983Z Login using: ssh runneruser@ec2-3-239-119-189.compute-1.amazonaws.com 2025-04-25T04:10:49.4554590Z To forward remote desktop on your local machine ssh as follows: 2025-04-25T04:10:49.4555151Z ssh -L 3389:localhost:3389 runneruser@ec2-3-239-119-189.compute-1.amazonaws.com 2025-04-25T04:10:49.4555674Z And then change password using `passwd` command. 2025-04-25T04:10:49.4555926Z 2025-04-25T04:10:49.4556211Z To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, 2025-04-25T04:10:49.4556791Z Activate miniconda and Visual Studio environment, by running: 2025-04-25T04:10:49.4557310Z call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-04-25T04:10:49.4557990Z call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-04-25T04:10:49.4831402Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-04-25T04:10:49.4831905Z with: 2025-04-25T04:10:49.4832111Z no-sudo: true 2025-04-25T04:10:49.4832335Z submodules: recursive 2025-04-25T04:10:49.4832553Z fetch-depth: 0 2025-04-25T04:10:49.4832757Z env: 2025-04-25T04:10:49.4832940Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:49.4833178Z ##[endgroup] 2025-04-25T04:10:49.4918084Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-04-25T04:10:49.4919023Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-04-25T04:10:49.4939882Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:10:49.4940340Z env: 2025-04-25T04:10:49.4940541Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:49.4940796Z ##[endgroup] 2025-04-25T04:10:49.5352955Z ##[group]Run # Use all available CPUs for fetching 2025-04-25T04:10:49.5353396Z # Use all available CPUs for fetching 2025-04-25T04:10:49.5353728Z cd "${GITHUB_WORKSPACE}" 2025-04-25T04:10:49.5354053Z git config --global fetch.parallel 0 2025-04-25T04:10:49.5354497Z git config --global submodule.fetchJobs 0 2025-04-25T04:10:49.5355006Z  2025-04-25T04:10:49.5355554Z # Clean workspace. The default checkout action should also do this, but 2025-04-25T04:10:49.5356298Z # do it here as well just in case 2025-04-25T04:10:49.5356835Z if [[ -d .git ]]; then 2025-04-25T04:10:49.5357269Z  if [ -z "${NO_SUDO}" ]; then 2025-04-25T04:10:49.5357750Z  sudo git clean -ffdx 2025-04-25T04:10:49.5358297Z  else 2025-04-25T04:10:49.5358660Z  git clean -ffdx 2025-04-25T04:10:49.5359032Z  fi 2025-04-25T04:10:49.5359324Z fi 2025-04-25T04:10:49.5380652Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:10:49.5381280Z env: 2025-04-25T04:10:49.5381475Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:49.5381721Z NO_SUDO: true 2025-04-25T04:10:49.5381911Z ##[endgroup] 2025-04-25T04:10:49.6366557Z ##[group]Run actions/checkout@v4 2025-04-25T04:10:49.6366847Z with: 2025-04-25T04:10:49.6367080Z ref: b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:10:49.6367390Z fetch-depth: 0 2025-04-25T04:10:49.6367612Z submodules: recursive 2025-04-25T04:10:49.6367840Z show-progress: false 2025-04-25T04:10:49.6368080Z repository: pytorch/pytorch 2025-04-25T04:10:49.6368613Z token: *** 2025-04-25T04:10:49.6368816Z ssh-strict: true 2025-04-25T04:10:49.6369035Z ssh-user: git 2025-04-25T04:10:49.6369247Z persist-credentials: true 2025-04-25T04:10:49.6369499Z clean: true 2025-04-25T04:10:49.6369717Z sparse-checkout-cone-mode: true 2025-04-25T04:10:49.6369991Z fetch-tags: false 2025-04-25T04:10:49.6370230Z lfs: false 2025-04-25T04:10:49.6370434Z set-safe-directory: true 2025-04-25T04:10:49.6370725Z env: 2025-04-25T04:10:49.6370928Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:10:49.6371221Z ##[endgroup] 2025-04-25T04:10:49.7769149Z Syncing repository: pytorch/pytorch 2025-04-25T04:10:49.7770541Z ##[group]Getting Git version info 2025-04-25T04:10:49.7770973Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-04-25T04:10:49.7857426Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-04-25T04:10:49.8089631Z git version 2.47.1.windows.2 2025-04-25T04:10:49.8139644Z ##[endgroup] 2025-04-25T04:10:49.8152073Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\b8986625-687a-4819-9199-6b07fe136e42\.gitconfig' 2025-04-25T04:10:49.8171631Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\b8986625-687a-4819-9199-6b07fe136e42' before making global git config changes 2025-04-25T04:10:49.8173990Z Adding repository directory to the temporary git global config as a safe directory 2025-04-25T04:10:49.8181421Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:10:49.8432825Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-04-25T04:10:49.8439360Z ##[group]Initializing the repository 2025-04-25T04:10:49.8450671Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:10:49.9622008Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-04-25T04:10:49.9675356Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-04-25T04:10:49.9937373Z ##[endgroup] 2025-04-25T04:10:49.9950120Z ##[group]Disabling automatic garbage collection 2025-04-25T04:10:49.9950670Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-04-25T04:10:50.0195284Z ##[endgroup] 2025-04-25T04:10:50.0209768Z ##[group]Setting up auth 2025-04-25T04:10:50.0210350Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-04-25T04:10:50.0491490Z [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:50.5436483Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-04-25T04:10:50.5692213Z [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:50.9622745Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-04-25T04:10:50.9936330Z ##[endgroup] 2025-04-25T04:10:50.9937025Z ##[group]Fetching the repository 2025-04-25T04:10:50.9951177Z [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:46.6113609Z From https://github.com/pytorch/pytorch 2025-04-25T04:11:46.6114308Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-04-25T04:11:46.6115291Z * [new branch] Chillee-patch-1 -> origin/Chillee-patch-1 2025-04-25T04:11:46.6148720Z * [new branch] Chillee-patch-5 -> origin/Chillee-patch-5 2025-04-25T04:11:46.6149329Z * [new branch] Flamefire-patch-1 -> origin/Flamefire-patch-1 2025-04-25T04:11:46.6149974Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-04-25T04:11:46.6150757Z * [new branch] JackCaoG/add_new_lazy_counter_macro -> origin/JackCaoG/add_new_lazy_counter_macro 2025-04-25T04:11:46.6151519Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-04-25T04:11:46.6152273Z * [new branch] JackCaoG/update_xla_pin_to_skip_test -> origin/JackCaoG/update_xla_pin_to_skip_test 2025-04-25T04:11:46.6153007Z * [new branch] JackCaoG/update_xla_pin_to_skip_test2 -> origin/JackCaoG/update_xla_pin_to_skip_test2 2025-04-25T04:11:46.6153655Z * [new branch] NicolasHug-patch-2 -> origin/NicolasHug-patch-2 2025-04-25T04:11:46.6154241Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-04-25T04:11:46.6154959Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-04-25T04:11:46.6155540Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-04-25T04:11:46.6157307Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-04-25T04:11:46.6157924Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-04-25T04:11:46.6158476Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-04-25T04:11:46.6159106Z * [new branch] Valentine/flash_attention_bf16 -> origin/Valentine/flash_attention_bf16 2025-04-25T04:11:46.6159667Z * [new branch] add-assign -> origin/add-assign 2025-04-25T04:11:46.6160126Z * [new branch] add-dates -> origin/add-dates 2025-04-25T04:11:46.6160707Z * [new branch] add_broadcast_functional_collective -> origin/add_broadcast_functional_collective 2025-04-25T04:11:46.6161368Z * [new branch] add_mha_to_autocast_policy -> origin/add_mha_to_autocast_policy 2025-04-25T04:11:46.6162061Z * [new branch] add_non_parallel_model_comparison -> origin/add_non_parallel_model_comparison 2025-04-25T04:11:46.6162790Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-04-25T04:11:46.6163343Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-04-25T04:11:46.6163811Z * [new branch] addsimde -> origin/addsimde 2025-04-25T04:11:46.6164289Z * [new branch] adi/gemm_bf16f32 -> origin/adi/gemm_bf16f32 2025-04-25T04:11:46.6164914Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-04-25T04:11:46.6165474Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-04-25T04:11:46.6166045Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-04-25T04:11:46.6166583Z * [new branch] alanwaketan/pin2 -> origin/alanwaketan/pin2 2025-04-25T04:11:46.6167095Z * [new branch] albanD-patch-2 -> origin/albanD-patch-2 2025-04-25T04:11:46.6167782Z * [new branch] alt-disable -> origin/alt-disable 2025-04-25T04:11:46.6168377Z * [new branch] angelayi/aot_inductor_torch -> origin/angelayi/aot_inductor_torch 2025-04-25T04:11:46.6169009Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-04-25T04:11:46.6169595Z * [new branch] angelayi/aps_issue -> origin/angelayi/aps_issue 2025-04-25T04:11:46.6170234Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-04-25T04:11:46.6170878Z * [new branch] angelayi/constraint -> origin/angelayi/constraint 2025-04-25T04:11:46.6171409Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-04-25T04:11:46.6171941Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-04-25T04:11:46.6172507Z * [new branch] angelayi/default_serialized -> origin/angelayi/default_serialized 2025-04-25T04:11:46.6173068Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-04-25T04:11:46.6173584Z * [new branch] angelayi/distribby -> origin/angelayi/distribby 2025-04-25T04:11:46.6174221Z * [new branch] angelayi/distribution -> origin/angelayi/distribution 2025-04-25T04:11:46.6174814Z * [new branch] angelayi/draft_export_cv -> origin/angelayi/draft_export_cv 2025-04-25T04:11:46.6772608Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-04-25T04:11:46.6773262Z * [new branch] angelayi/embed_constants -> origin/angelayi/embed_constants 2025-04-25T04:11:46.6773854Z * [new branch] angelayi/fake -> origin/angelayi/fake 2025-04-25T04:11:46.6774741Z * [new branch] angelayi/filter_stacktrace -> origin/angelayi/filter_stacktrace 2025-04-25T04:11:46.6775403Z * [new branch] angelayi/fix_additional_inputs -> origin/angelayi/fix_additional_inputs 2025-04-25T04:11:46.6776007Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-04-25T04:11:46.6776551Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-04-25T04:11:46.6777067Z * [new branch] angelayi/meta_kernel -> origin/angelayi/meta_kernel 2025-04-25T04:11:46.6777631Z * [new branch] angelayi/meta_kernel_yaml2 -> origin/angelayi/meta_kernel_yaml2 2025-04-25T04:11:46.6778193Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-04-25T04:11:46.6778754Z * [new branch] angelayi/register_dataclass -> origin/angelayi/register_dataclass 2025-04-25T04:11:46.6779381Z * [new branch] angelayi/rename_generate_fake -> origin/angelayi/rename_generate_fake 2025-04-25T04:11:46.6779967Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-04-25T04:11:46.6780483Z * [new branch] angelayi/shape -> origin/angelayi/shape 2025-04-25T04:11:46.6780999Z * [new branch] angelayi/symint_help -> origin/angelayi/symint_help 2025-04-25T04:11:46.6781532Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-04-25T04:11:46.6782083Z * [new branch] angelayi/symint_input2 -> origin/angelayi/symint_input2 2025-04-25T04:11:46.6782625Z * [new branch] angelayi/test113041 -> origin/angelayi/test113041 2025-04-25T04:11:46.6783161Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-04-25T04:11:46.6783714Z * [new branch] angelayi/transpose_ -> origin/angelayi/transpose_ 2025-04-25T04:11:46.6784287Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-04-25T04:11:46.6785152Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-04-25T04:11:46.6785880Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-04-25T04:11:46.6786488Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-04-25T04:11:46.6786990Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-04-25T04:11:46.6787493Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-04-25T04:11:46.6787992Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-04-25T04:11:46.6788483Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-04-25T04:11:46.6789008Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-04-25T04:11:46.6789555Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-04-25T04:11:46.6790094Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-04-25T04:11:46.6790632Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-04-25T04:11:46.6791120Z * [new branch] base/1.5 -> origin/base/1.5 2025-04-25T04:11:46.6791606Z * [new branch] base_inductor_opt_flag -> origin/base_inductor_opt_flag 2025-04-25T04:11:46.6792211Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-04-25T04:11:46.6792864Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-04-25T04:11:46.6793670Z * [new branch] benjaminglass1/add-missing-regression-benchmarks -> origin/benjaminglass1/add-missing-regression-benchmarks 2025-04-25T04:11:46.6794735Z * [new branch] benjaminglass1/fixup-opinfo-cpu-gradient -> origin/benjaminglass1/fixup-opinfo-cpu-gradient 2025-04-25T04:11:46.6795467Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-04-25T04:11:46.6795991Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-04-25T04:11:46.6796515Z * [new branch] bf/cg-foreach-op -> origin/bf/cg-foreach-op 2025-04-25T04:11:46.6797039Z * [new branch] bf/cg-meta-tensor -> origin/bf/cg-meta-tensor 2025-04-25T04:11:46.6797540Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-04-25T04:11:46.6798140Z * [new branch] bf/cg-skip-unbacked-symint-msg -> origin/bf/cg-skip-unbacked-symint-msg 2025-04-25T04:11:46.6798719Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-04-25T04:11:46.7230052Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-04-25T04:11:46.7231259Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-04-25T04:11:46.7232229Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-04-25T04:11:46.7232823Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-04-25T04:11:46.7233785Z * [new branch] bf/fa-small-block-mask -> origin/bf/fa-small-block-mask 2025-04-25T04:11:46.7234670Z * [new branch] bf/noop-elimination -> origin/bf/noop-elimination 2025-04-25T04:11:46.7235258Z * [new branch] bf/noop-slice -> origin/bf/noop-slice 2025-04-25T04:11:46.7235781Z * [new branch] bf/padded-tensor-init -> origin/bf/padded-tensor-init 2025-04-25T04:11:46.7236328Z * [new branch] bf/partition-cg -> origin/bf/partition-cg 2025-04-25T04:11:46.7236878Z * [new branch] bf/partition-custom-op -> origin/bf/partition-custom-op 2025-04-25T04:11:46.7237652Z * [new branch] bf/partition-flaky -> origin/bf/partition-flaky 2025-04-25T04:11:46.7238169Z * [new branch] bf/partition-gc -> origin/bf/partition-gc 2025-04-25T04:11:46.7238699Z * [new branch] bf/partition-reorder -> origin/bf/partition-reorder 2025-04-25T04:11:46.7239255Z * [new branch] bf/partition-rng -> origin/bf/partition-rng 2025-04-25T04:11:46.7239792Z * [new branch] bf/partition-symint -> origin/bf/partition-symint 2025-04-25T04:11:46.7240666Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-04-25T04:11:46.7241321Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-04-25T04:11:46.7242061Z * [new branch] bf/reorder-minimal-partition -> origin/bf/reorder-minimal-partition 2025-04-25T04:11:46.7242670Z * [new branch] bik -> origin/bik 2025-04-25T04:11:46.7243236Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-04-25T04:11:46.7243942Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-04-25T04:11:46.7244647Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-04-25T04:11:46.7245349Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-04-25T04:11:46.7245973Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-04-25T04:11:46.7246555Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-04-25T04:11:46.7247151Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-04-25T04:11:46.7248534Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-04-25T04:11:46.7249166Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-04-25T04:11:46.7249745Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-04-25T04:11:46.7250318Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-04-25T04:11:46.7251153Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-04-25T04:11:46.7251795Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-04-25T04:11:46.7252455Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-04-25T04:11:46.7253039Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-04-25T04:11:46.7253623Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-04-25T04:11:46.7254212Z * [new branch] bowbao/beartype_fix_2.1.1 -> origin/bowbao/beartype_fix_2.1.1 2025-04-25T04:11:46.7254785Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-04-25T04:11:46.7255336Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-04-25T04:11:46.7255856Z * [new branch] bowbao/skip_decomp -> origin/bowbao/skip_decomp 2025-04-25T04:11:46.7256486Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-04-25T04:11:46.7257287Z * [new branch] bowenbao/docker_rocm_miniforge -> origin/bowenbao/docker_rocm_miniforge 2025-04-25T04:11:46.7257945Z * [new branch] brister/3d_broadcast -> origin/brister/3d_broadcast 2025-04-25T04:11:46.7258544Z * [new branch] brister/allclose_many -> origin/brister/allclose_many 2025-04-25T04:11:46.7259308Z * [new branch] brister/always_tiled_reduction -> origin/brister/always_tiled_reduction 2025-04-25T04:11:46.7614425Z * [new branch] brister/block_ptr_dynamic -> origin/brister/block_ptr_dynamic 2025-04-25T04:11:46.7614983Z * [new branch] brister/floordiv -> origin/brister/floordiv 2025-04-25T04:11:46.7615500Z * [new branch] brister/loop_order -> origin/brister/loop_order 2025-04-25T04:11:46.7616038Z * [new branch] brister/singleton_tiling -> origin/brister/singleton_tiling 2025-04-25T04:11:46.7616701Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-04-25T04:11:46.7617345Z * [new branch] brister/wrapper_ir -> origin/brister/wrapper_ir 2025-04-25T04:11:46.7617924Z * [new branch] brister/wrapper_ir_refactor -> origin/brister/wrapper_ir_refactor 2025-04-25T04:11:46.7618441Z * [new branch] bug -> origin/bug 2025-04-25T04:11:46.7618874Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-04-25T04:11:46.7619341Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-04-25T04:11:46.7619898Z * [new branch] camyllh/ff_linting_D72572050 -> origin/camyllh/ff_linting_D72572050 2025-04-25T04:11:46.7620431Z * [new branch] check-links -> origin/check-links 2025-04-25T04:11:46.7620921Z * [new branch] cherry-pick-111576 -> origin/cherry-pick-111576 2025-04-25T04:11:46.7621567Z * [new branch] cherry-pick-134515-by-pytorch_bot_bot_ -> origin/cherry-pick-134515-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7622359Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7623318Z * [new branch] cherry-pick-148070-by-pytorch_bot_bot_ -> origin/cherry-pick-148070-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7624099Z * [new branch] cherry-pick-148360-by-pytorch_bot_bot_ -> origin/cherry-pick-148360-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7624869Z * [new branch] cherry-pick-148677-by-pytorch_bot_bot_ -> origin/cherry-pick-148677-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7625628Z * [new branch] cherry-pick-148863-by-pytorch_bot_bot_ -> origin/cherry-pick-148863-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7626403Z * [new branch] cherry-pick-148912-by-pytorch_bot_bot_ -> origin/cherry-pick-148912-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7627302Z * [new branch] cherry-pick-149052-by-pytorch_bot_bot_ -> origin/cherry-pick-149052-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7628070Z * [new branch] cherry-pick-149057-by-pytorch_bot_bot_ -> origin/cherry-pick-149057-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7628857Z * [new branch] cherry-pick-149147-by-pytorch_bot_bot_ -> origin/cherry-pick-149147-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7629655Z * [new branch] cherry-pick-149208-by-pytorch_bot_bot_ -> origin/cherry-pick-149208-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7630435Z * [new branch] cherry-pick-149245-by-pytorch_bot_bot_ -> origin/cherry-pick-149245-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7631206Z * [new branch] cherry-pick-149299-by-pytorch_bot_bot_ -> origin/cherry-pick-149299-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7631970Z * [new branch] cherry-pick-149388-by-pytorch_bot_bot_ -> origin/cherry-pick-149388-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7632751Z * [new branch] cherry-pick-149437-by-pytorch_bot_bot_ -> origin/cherry-pick-149437-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7633524Z * [new branch] cherry-pick-149473-by-pytorch_bot_bot_ -> origin/cherry-pick-149473-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7634289Z * [new branch] cherry-pick-149505-by-pytorch_bot_bot_ -> origin/cherry-pick-149505-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7635187Z * [new branch] cherry-pick-149584-by-pytorch_bot_bot_ -> origin/cherry-pick-149584-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7635953Z * [new branch] cherry-pick-149672-by-pytorch_bot_bot_ -> origin/cherry-pick-149672-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7636728Z * [new branch] cherry-pick-149683-by-pytorch_bot_bot_ -> origin/cherry-pick-149683-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7637507Z * [new branch] cherry-pick-149756-by-pytorch_bot_bot_ -> origin/cherry-pick-149756-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7638271Z * [new branch] cherry-pick-149778-by-pytorch_bot_bot_ -> origin/cherry-pick-149778-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7639040Z * [new branch] cherry-pick-149808-by-pytorch_bot_bot_ -> origin/cherry-pick-149808-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7639809Z * [new branch] cherry-pick-149843-by-pytorch_bot_bot_ -> origin/cherry-pick-149843-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7640579Z * [new branch] cherry-pick-149866-by-pytorch_bot_bot_ -> origin/cherry-pick-149866-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7992545Z * [new branch] cherry-pick-149947-by-pytorch_bot_bot_ -> origin/cherry-pick-149947-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7993337Z * [new branch] cherry-pick-149973-by-pytorch_bot_bot_ -> origin/cherry-pick-149973-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7994120Z * [new branch] cherry-pick-150157-by-pytorch_bot_bot_ -> origin/cherry-pick-150157-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7994895Z * [new branch] cherry-pick-150158-by-pytorch_bot_bot_ -> origin/cherry-pick-150158-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7995656Z * [new branch] cherry-pick-150185-by-pytorch_bot_bot_ -> origin/cherry-pick-150185-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7996631Z * [new branch] cherry-pick-150212-by-pytorch_bot_bot_ -> origin/cherry-pick-150212-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7997415Z * [new branch] cherry-pick-150256-by-pytorch_bot_bot_ -> origin/cherry-pick-150256-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7998198Z * [new branch] cherry-pick-150300-by-pytorch_bot_bot_ -> origin/cherry-pick-150300-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7998993Z * [new branch] cherry-pick-150324-by-pytorch_bot_bot_ -> origin/cherry-pick-150324-by-pytorch_bot_bot_ 2025-04-25T04:11:46.7999757Z * [new branch] cherry-pick-150358-by-pytorch_bot_bot_ -> origin/cherry-pick-150358-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8000528Z * [new branch] cherry-pick-150397-by-pytorch_bot_bot_ -> origin/cherry-pick-150397-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8001297Z * [new branch] cherry-pick-150512-by-pytorch_bot_bot_ -> origin/cherry-pick-150512-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8002063Z * [new branch] cherry-pick-150640-by-pytorch_bot_bot_ -> origin/cherry-pick-150640-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8002837Z * [new branch] cherry-pick-150705-by-pytorch_bot_bot_ -> origin/cherry-pick-150705-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8003602Z * [new branch] cherry-pick-150786-by-pytorch_bot_bot_ -> origin/cherry-pick-150786-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8004466Z * [new branch] cherry-pick-150845-by-pytorch_bot_bot_ -> origin/cherry-pick-150845-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8005251Z * [new branch] cherry-pick-150931-by-pytorch_bot_bot_ -> origin/cherry-pick-150931-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8006014Z * [new branch] cherry-pick-150956-by-pytorch_bot_bot_ -> origin/cherry-pick-150956-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8006785Z * [new branch] cherry-pick-151257-by-pytorch_bot_bot_ -> origin/cherry-pick-151257-by-pytorch_bot_bot_ 2025-04-25T04:11:46.8007586Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-04-25T04:11:46.8008185Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-04-25T04:11:46.8008778Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-04-25T04:11:46.8009307Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-04-25T04:11:46.8009923Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-04-25T04:11:46.8010591Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-04-25T04:11:46.8011144Z * [new branch] consolidate-is-qat -> origin/consolidate-is-qat 2025-04-25T04:11:46.8011643Z * [new branch] copy_graph -> origin/copy_graph 2025-04-25T04:11:46.8012129Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-04-25T04:11:46.8012654Z * [new branch] cpio/fix_unit_test -> origin/cpio/fix_unit_test 2025-04-25T04:11:46.8013130Z * [new branch] csl/3proc -> origin/csl/3proc 2025-04-25T04:11:46.8013741Z * [new branch] csl/almalinux_docker_use_reusable_action -> origin/csl/almalinux_docker_use_reusable_action 2025-04-25T04:11:46.8014419Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-04-25T04:11:46.8015000Z * [new branch] csl/binary_docker_build_action -> origin/csl/binary_docker_build_action 2025-04-25T04:11:46.8015610Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-04-25T04:11:46.8016181Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-04-25T04:11:46.8016809Z * [new branch] csl/cmake-3.31.6 -> origin/csl/cmake-3.31.6 2025-04-25T04:11:46.8017399Z * [new branch] csl/disable_some_periodic_tests -> origin/csl/disable_some_periodic_tests 2025-04-25T04:11:46.8017999Z * [new branch] csl/docker_multistage -> origin/csl/docker_multistage 2025-04-25T04:11:46.8018525Z * [new branch] csl/fix_logs_again -> origin/csl/fix_logs_again 2025-04-25T04:11:46.8460605Z * [new branch] csl/hotfix_cmake_executorch -> origin/csl/hotfix_cmake_executorch 2025-04-25T04:11:46.8461173Z * [new branch] csl/katex -> origin/csl/katex 2025-04-25T04:11:46.8461652Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-04-25T04:11:46.8462286Z * [new branch] csl/libtorch_docker_ues_reusable_action -> origin/csl/libtorch_docker_ues_reusable_action 2025-04-25T04:11:46.8463035Z * [new branch] csl/manywheel_docker_reusable_action -> origin/csl/manywheel_docker_reusable_action 2025-04-25T04:11:46.8463699Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-04-25T04:11:46.8464215Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-04-25T04:11:46.8464759Z * [new branch] csl/no_protobuf_docker -> origin/csl/no_protobuf_docker 2025-04-25T04:11:46.8465281Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-04-25T04:11:46.8465832Z * [new branch] csl/remove_lite_interpreter -> origin/csl/remove_lite_interpreter 2025-04-25T04:11:46.8466364Z * [new branch] csl/rocm_drm -> origin/csl/rocm_drm 2025-04-25T04:11:46.8466837Z * [new branch] csl/system_nccl -> origin/csl/system_nccl 2025-04-25T04:11:46.8467398Z * [new branch] csl/tagged_binary_docker_builds -> origin/csl/tagged_binary_docker_builds 2025-04-25T04:11:46.8468011Z * [new branch] csl/td_on_distributed_cpu -> origin/csl/td_on_distributed_cpu 2025-04-25T04:11:46.8468812Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-04-25T04:11:46.8469469Z * [new branch] csl/test_cusparse_binary_docker -> origin/csl/test_cusparse_binary_docker 2025-04-25T04:11:46.8470078Z * [new branch] csl/test_graph_partition -> origin/csl/test_graph_partition 2025-04-25T04:11:46.8470735Z * [new branch] csl/test_new_calc_docker_image_action -> origin/csl/test_new_calc_docker_image_action 2025-04-25T04:11:46.8471356Z * [new branch] csl/test_sys_nccl_binary -> origin/csl/test_sys_nccl_binary 2025-04-25T04:11:46.8471903Z * [new branch] csl/unify_install_cuda -> origin/csl/unify_install_cuda 2025-04-25T04:11:46.8472488Z * [new branch] csl/unify_install_cusparselt -> origin/csl/unify_install_cusparselt 2025-04-25T04:11:46.8473125Z * [new branch] csl/unify_manywheel_docker_pull -> origin/csl/unify_manywheel_docker_pull 2025-04-25T04:11:46.8473745Z * [new branch] csl/where_did_the_logs_go -> origin/csl/where_did_the_logs_go 2025-04-25T04:11:46.8474298Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-04-25T04:11:46.8474826Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-04-25T04:11:46.8475327Z * [new branch] d4l3k/fsdp_wait -> origin/d4l3k/fsdp_wait 2025-04-25T04:11:46.8475813Z * [new branch] d4l3k/queue_block -> origin/d4l3k/queue_block 2025-04-25T04:11:46.8476341Z * [new branch] d4l3k/reducer_checks -> origin/d4l3k/reducer_checks 2025-04-25T04:11:46.8476891Z * [new branch] d4l3k/tcpstore_take_over -> origin/d4l3k/tcpstore_take_over 2025-04-25T04:11:46.8477569Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-04-25T04:11:46.8478969Z * [new branch] desertfire/torchgen_support_default_arg -> origin/desertfire/torchgen_support_default_arg 2025-04-25T04:11:46.8479766Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-04-25T04:11:46.8480435Z * [new branch] desertfire/update_hf_pin -> origin/desertfire/update_hf_pin 2025-04-25T04:11:46.8481017Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-04-25T04:11:46.8481587Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-04-25T04:11:46.8482124Z * [new branch] dev/joona/cachingkey -> origin/dev/joona/cachingkey 2025-04-25T04:11:46.8482676Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-04-25T04:11:46.8483269Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-04-25T04:11:46.8483845Z * [new branch] dev/joona/mps_linear -> origin/dev/joona/mps_linear 2025-04-25T04:11:46.8484506Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-04-25T04:11:46.8485029Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-04-25T04:11:46.8485507Z * [new branch] disable -> origin/disable 2025-04-25T04:11:46.8486048Z * [new branch] disable_fp_contract_baseline -> origin/disable_fp_contract_baseline 2025-04-25T04:11:46.8486719Z * [new branch] distributed_checkpointing_e2e_tests -> origin/distributed_checkpointing_e2e_tests 2025-04-25T04:11:46.8926922Z * [new branch] divup -> origin/divup 2025-04-25T04:11:46.8927453Z * [new branch] dropout-eval -> origin/dropout-eval 2025-04-25T04:11:46.8927980Z * [new branch] dtensor_inputoutput -> origin/dtensor_inputoutput 2025-04-25T04:11:46.8928540Z * [new branch] dtensor_select -> origin/dtensor_select 2025-04-25T04:11:46.8929242Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-04-25T04:11:46.8929814Z * [new branch] eikanwang/eager_torch_compile -> origin/eikanwang/eager_torch_compile 2025-04-25T04:11:46.8930443Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-04-25T04:11:46.8931016Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-04-25T04:11:46.8931624Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-04-25T04:11:46.8932230Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-04-25T04:11:46.8932848Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-04-25T04:11:46.8933402Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-04-25T04:11:46.8933873Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-04-25T04:11:46.8934344Z * [new branch] eqy-patch-20 -> origin/eqy-patch-20 2025-04-25T04:11:46.8934813Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-04-25T04:11:46.8935283Z * [new branch] eqy-patch-5 -> origin/eqy-patch-5 2025-04-25T04:11:46.8935740Z * [new branch] eqy-patch-6 -> origin/eqy-patch-6 2025-04-25T04:11:46.8936488Z * [new branch] eqy-patch-7 -> origin/eqy-patch-7 2025-04-25T04:11:46.8937016Z * [new branch] eqy-patch-8 -> origin/eqy-patch-8 2025-04-25T04:11:46.8937627Z * [new branch] error-when-setattr-over-cls-attr -> origin/error-when-setattr-over-cls-attr 2025-04-25T04:11:46.8938372Z * [new branch] et_pin_bump -> origin/et_pin_bump 2025-04-25T04:11:46.8938972Z * [new branch] exclamaforte/aten-convolution-out -> origin/exclamaforte/aten-convolution-out 2025-04-25T04:11:46.8939748Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-04-25T04:11:46.8940514Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-04-25T04:11:46.8941176Z * [new branch] exclamaforte/fix-135998 -> origin/exclamaforte/fix-135998 2025-04-25T04:11:46.8941878Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-04-25T04:11:46.8942724Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-04-25T04:11:46.8943488Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-04-25T04:11:46.8944153Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-04-25T04:11:46.8944864Z * [new branch] exclamaforte/heuristic-choices-2 -> origin/exclamaforte/heuristic-choices-2 2025-04-25T04:11:46.8945512Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-04-25T04:11:46.8946175Z * [new branch] exclamaforte/max-autotune-dtype-test -> origin/exclamaforte/max-autotune-dtype-test 2025-04-25T04:11:46.8947080Z * [new branch] exclamaforte/remove-desc-names -> origin/exclamaforte/remove-desc-names 2025-04-25T04:11:46.8947772Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-04-25T04:11:46.8948475Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-04-25T04:11:46.8949064Z * [new branch] exec -> origin/exec 2025-04-25T04:11:46.8949557Z * [new branch] exlamaforte/fix-mm-log -> origin/exlamaforte/fix-mm-log 2025-04-25T04:11:46.8950228Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-04-25T04:11:46.8950777Z * [new branch] export-D50544876 -> origin/export-D50544876 2025-04-25T04:11:46.8951278Z * [new branch] export-D51032385 -> origin/export-D51032385 2025-04-25T04:11:46.8951794Z * [new branch] export-D52434604 -> origin/export-D52434604 2025-04-25T04:11:46.8952288Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-04-25T04:11:46.8952787Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-04-25T04:11:46.8953273Z * [new branch] export-D68245292 -> origin/export-D68245292 2025-04-25T04:11:46.8953775Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-04-25T04:11:46.9381838Z * [new branch] export-D69361235 -> origin/export-D69361235 2025-04-25T04:11:46.9382363Z * [new branch] export-D69994481 -> origin/export-D69994481 2025-04-25T04:11:46.9382856Z * [new branch] export-D70193972 -> origin/export-D70193972 2025-04-25T04:11:46.9383360Z * [new branch] export-D71081192 -> origin/export-D71081192 2025-04-25T04:11:46.9383835Z * [new branch] export-D71229547 -> origin/export-D71229547 2025-04-25T04:11:46.9384322Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-04-25T04:11:46.9384811Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-04-25T04:11:46.9385296Z * [new branch] export-D71522032 -> origin/export-D71522032 2025-04-25T04:11:46.9385773Z * [new branch] export-D71692245 -> origin/export-D71692245 2025-04-25T04:11:46.9386444Z * [new branch] export-D71769231 -> origin/export-D71769231 2025-04-25T04:11:46.9386953Z * [new branch] export-D72084111 -> origin/export-D72084111 2025-04-25T04:11:46.9387440Z * [new branch] export-D72190746 -> origin/export-D72190746 2025-04-25T04:11:46.9387932Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-04-25T04:11:46.9388422Z * [new branch] export-D72486930 -> origin/export-D72486930 2025-04-25T04:11:46.9388918Z * [new branch] export-D72609835 -> origin/export-D72609835 2025-04-25T04:11:46.9389400Z * [new branch] export-D72761995 -> origin/export-D72761995 2025-04-25T04:11:46.9389879Z * [new branch] export-D72762767 -> origin/export-D72762767 2025-04-25T04:11:46.9390367Z * [new branch] export-D72789690 -> origin/export-D72789690 2025-04-25T04:11:46.9390858Z * [new branch] export-D72978020 -> origin/export-D72978020 2025-04-25T04:11:46.9391363Z * [new branch] export-D73008663 -> origin/export-D73008663 2025-04-25T04:11:46.9391880Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-04-25T04:11:46.9392367Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-04-25T04:11:46.9393031Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-04-25T04:11:46.9393635Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-04-25T04:11:46.9394132Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-04-25T04:11:46.9394628Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-04-25T04:11:46.9395060Z * [new branch] fca -> origin/fca 2025-04-25T04:11:46.9395622Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-04-25T04:11:46.9396055Z * [new branch] fca5 -> origin/fca5 2025-04-25T04:11:46.9396592Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-04-25T04:11:46.9397324Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-04-25T04:11:46.9398226Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-04-25T04:11:46.9398938Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-04-25T04:11:46.9399464Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-04-25T04:11:46.9399987Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-04-25T04:11:46.9400504Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-04-25T04:11:46.9401053Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-04-25T04:11:46.9401642Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-04-25T04:11:46.9402226Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-04-25T04:11:46.9402774Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-04-25T04:11:46.9403308Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-04-25T04:11:46.9403879Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-04-25T04:11:46.9404581Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-04-25T04:11:46.9405242Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-04-25T04:11:46.9405746Z * [new branch] fix -> origin/fix 2025-04-25T04:11:46.9406172Z * [new branch] fix-149722 -> origin/fix-149722 2025-04-25T04:11:46.9406730Z * [new branch] fix-cat-lowering-uint8-hack -> origin/fix-cat-lowering-uint8-hack 2025-04-25T04:11:46.9867266Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-04-25T04:11:46.9867904Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-04-25T04:11:46.9868431Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-04-25T04:11:46.9868917Z * [new branch] fix-links -> origin/fix-links 2025-04-25T04:11:46.9869420Z * [new branch] fix-qat-derived-qspec -> origin/fix-qat-derived-qspec 2025-04-25T04:11:46.9870028Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-04-25T04:11:46.9870582Z * [new branch] fix_avoid_record_stream -> origin/fix_avoid_record_stream 2025-04-25T04:11:46.9871141Z * [new branch] fix_e2e_fsdp_tp_pairwise -> origin/fix_e2e_fsdp_tp_pairwise 2025-04-25T04:11:46.9871646Z * [new branch] fix_partial -> origin/fix_partial 2025-04-25T04:11:46.9872129Z * [new branch] fixes-triage -> origin/fixes-triage 2025-04-25T04:11:46.9872592Z * [new branch] flash -> origin/flash 2025-04-25T04:11:46.9873025Z * [new branch] flat_apply -> origin/flat_apply 2025-04-25T04:11:46.9873576Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-04-25T04:11:46.9874221Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-04-25T04:11:46.9874977Z * [new branch] fmassa/partitioner_knapsack_checkpoint -> origin/fmassa/partitioner_knapsack_checkpoint 2025-04-25T04:11:46.9875992Z * [new branch] fmassa/update_pointwise_shard_strategy -> origin/fmassa/update_pointwise_shard_strategy 2025-04-25T04:11:46.9876588Z * [new branch] foo -> origin/foo 2025-04-25T04:11:46.9877028Z * [new branch] fp8_fix -> origin/fp8_fix 2025-04-25T04:11:46.9877491Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-04-25T04:11:46.9877994Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-04-25T04:11:46.9878484Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-04-25T04:11:46.9878940Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-04-25T04:11:46.9879424Z * [new branch] functorch_scan -> origin/functorch_scan 2025-04-25T04:11:46.9879901Z * [new branch] fused_qkv -> origin/fused_qkv 2025-04-25T04:11:46.9880353Z * [new branch] fx_cpp -> origin/fx_cpp 2025-04-25T04:11:46.9880790Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-04-25T04:11:46.9881249Z * [new branch] gelu-3 -> origin/gelu-3 2025-04-25T04:11:46.9881766Z * [new branch] get_state_dict_forward_fix -> origin/get_state_dict_forward_fix 2025-04-25T04:11:46.9882309Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-04-25T04:11:46.9882821Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-04-25T04:11:46.9883327Z * [new branch] gh/CaoE/47/base -> origin/gh/CaoE/47/base 2025-04-25T04:11:46.9883799Z * [new branch] gh/CaoE/47/head -> origin/gh/CaoE/47/head 2025-04-25T04:11:46.9884495Z * [new branch] gh/CaoE/47/orig -> origin/gh/CaoE/47/orig 2025-04-25T04:11:46.9885068Z * [new branch] gh/CaoE/48/base -> origin/gh/CaoE/48/base 2025-04-25T04:11:46.9885536Z * [new branch] gh/CaoE/48/head -> origin/gh/CaoE/48/head 2025-04-25T04:11:46.9886107Z * [new branch] gh/CaoE/48/orig -> origin/gh/CaoE/48/orig 2025-04-25T04:11:46.9886688Z * [new branch] gh/ColinPeppler/63/base -> origin/gh/ColinPeppler/63/base 2025-04-25T04:11:46.9887283Z * [new branch] gh/ColinPeppler/63/head -> origin/gh/ColinPeppler/63/head 2025-04-25T04:11:46.9887859Z * [new branch] gh/ColinPeppler/63/orig -> origin/gh/ColinPeppler/63/orig 2025-04-25T04:11:46.9888427Z * [new branch] gh/ColinPeppler/64/base -> origin/gh/ColinPeppler/64/base 2025-04-25T04:11:46.9888994Z * [new branch] gh/ColinPeppler/64/head -> origin/gh/ColinPeppler/64/head 2025-04-25T04:11:46.9889560Z * [new branch] gh/ColinPeppler/64/orig -> origin/gh/ColinPeppler/64/orig 2025-04-25T04:11:46.9890135Z * [new branch] gh/ColinPeppler/65/base -> origin/gh/ColinPeppler/65/base 2025-04-25T04:11:46.9890699Z * [new branch] gh/ColinPeppler/65/head -> origin/gh/ColinPeppler/65/head 2025-04-25T04:11:46.9891257Z * [new branch] gh/ColinPeppler/65/orig -> origin/gh/ColinPeppler/65/orig 2025-04-25T04:11:46.9891829Z * [new branch] gh/ColinPeppler/66/base -> origin/gh/ColinPeppler/66/base 2025-04-25T04:11:46.9892385Z * [new branch] gh/ColinPeppler/66/head -> origin/gh/ColinPeppler/66/head 2025-04-25T04:11:46.9892956Z * [new branch] gh/ColinPeppler/66/orig -> origin/gh/ColinPeppler/66/orig 2025-04-25T04:11:47.0378791Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-04-25T04:11:47.0379407Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-04-25T04:11:47.0380167Z * [new branch] gh/EikanWang/79/base -> origin/gh/EikanWang/79/base 2025-04-25T04:11:47.0380698Z * [new branch] gh/EikanWang/79/head -> origin/gh/EikanWang/79/head 2025-04-25T04:11:47.0381218Z * [new branch] gh/EikanWang/79/orig -> origin/gh/EikanWang/79/orig 2025-04-25T04:11:47.0381745Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-04-25T04:11:47.0382262Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-04-25T04:11:47.0382783Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-04-25T04:11:47.0383301Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-04-25T04:11:47.0383825Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-04-25T04:11:47.0384354Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-04-25T04:11:47.0384890Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-04-25T04:11:47.0385489Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-04-25T04:11:47.0386054Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-04-25T04:11:47.0386564Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-04-25T04:11:47.0387056Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-04-25T04:11:47.0387546Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-04-25T04:11:47.0388041Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-04-25T04:11:47.0388529Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-04-25T04:11:47.0389150Z * [new branch] gh/H-Huang/160/base -> origin/gh/H-Huang/160/base 2025-04-25T04:11:47.0389660Z * [new branch] gh/H-Huang/160/head -> origin/gh/H-Huang/160/head 2025-04-25T04:11:47.0390156Z * [new branch] gh/H-Huang/160/orig -> origin/gh/H-Huang/160/orig 2025-04-25T04:11:47.0390651Z * [new branch] gh/H-Huang/168/base -> origin/gh/H-Huang/168/base 2025-04-25T04:11:47.0391137Z * [new branch] gh/H-Huang/168/head -> origin/gh/H-Huang/168/head 2025-04-25T04:11:47.0391630Z * [new branch] gh/H-Huang/168/orig -> origin/gh/H-Huang/168/orig 2025-04-25T04:11:47.0392119Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-04-25T04:11:47.0392611Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-04-25T04:11:47.0393108Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-04-25T04:11:47.0393603Z * [new branch] gh/H-Huang/173/base -> origin/gh/H-Huang/173/base 2025-04-25T04:11:47.0394095Z * [new branch] gh/H-Huang/173/head -> origin/gh/H-Huang/173/head 2025-04-25T04:11:47.0394583Z * [new branch] gh/H-Huang/173/orig -> origin/gh/H-Huang/173/orig 2025-04-25T04:11:47.0395080Z * [new branch] gh/H-Huang/174/base -> origin/gh/H-Huang/174/base 2025-04-25T04:11:47.0395579Z * [new branch] gh/H-Huang/174/head -> origin/gh/H-Huang/174/head 2025-04-25T04:11:47.0396069Z * [new branch] gh/H-Huang/174/orig -> origin/gh/H-Huang/174/orig 2025-04-25T04:11:47.0396560Z * [new branch] gh/H-Huang/175/base -> origin/gh/H-Huang/175/base 2025-04-25T04:11:47.0397046Z * [new branch] gh/H-Huang/175/head -> origin/gh/H-Huang/175/head 2025-04-25T04:11:47.0397553Z * [new branch] gh/H-Huang/175/orig -> origin/gh/H-Huang/175/orig 2025-04-25T04:11:47.0398155Z * [new branch] gh/H-Huang/176/base -> origin/gh/H-Huang/176/base 2025-04-25T04:11:47.0398647Z * [new branch] gh/H-Huang/176/head -> origin/gh/H-Huang/176/head 2025-04-25T04:11:47.0399136Z * [new branch] gh/H-Huang/176/orig -> origin/gh/H-Huang/176/orig 2025-04-25T04:11:47.0399627Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-04-25T04:11:47.0400131Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-04-25T04:11:47.0400629Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-04-25T04:11:47.0401163Z * [new branch] gh/IvanKobzarev/100/base -> origin/gh/IvanKobzarev/100/base 2025-04-25T04:11:47.0401745Z * [new branch] gh/IvanKobzarev/100/head -> origin/gh/IvanKobzarev/100/head 2025-04-25T04:11:47.0402327Z * [new branch] gh/IvanKobzarev/100/orig -> origin/gh/IvanKobzarev/100/orig 2025-04-25T04:11:47.0402906Z * [new branch] gh/IvanKobzarev/105/base -> origin/gh/IvanKobzarev/105/base 2025-04-25T04:11:47.0849209Z * [new branch] gh/IvanKobzarev/105/head -> origin/gh/IvanKobzarev/105/head 2025-04-25T04:11:47.0849832Z * [new branch] gh/IvanKobzarev/105/orig -> origin/gh/IvanKobzarev/105/orig 2025-04-25T04:11:47.0850422Z * [new branch] gh/IvanKobzarev/106/base -> origin/gh/IvanKobzarev/106/base 2025-04-25T04:11:47.0850993Z * [new branch] gh/IvanKobzarev/106/head -> origin/gh/IvanKobzarev/106/head 2025-04-25T04:11:47.0851573Z * [new branch] gh/IvanKobzarev/106/orig -> origin/gh/IvanKobzarev/106/orig 2025-04-25T04:11:47.0852143Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-04-25T04:11:47.0852938Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-04-25T04:11:47.0853545Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-04-25T04:11:47.0854114Z * [new branch] gh/IvanKobzarev/108/base -> origin/gh/IvanKobzarev/108/base 2025-04-25T04:11:47.0854696Z * [new branch] gh/IvanKobzarev/108/head -> origin/gh/IvanKobzarev/108/head 2025-04-25T04:11:47.0855271Z * [new branch] gh/IvanKobzarev/108/orig -> origin/gh/IvanKobzarev/108/orig 2025-04-25T04:11:47.0855833Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-04-25T04:11:47.0856399Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-04-25T04:11:47.0856970Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-04-25T04:11:47.0857538Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-04-25T04:11:47.0858121Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-04-25T04:11:47.0858688Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-04-25T04:11:47.0859262Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-04-25T04:11:47.0859819Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-04-25T04:11:47.0860383Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-04-25T04:11:47.0861269Z * [new branch] gh/IvanKobzarev/64/base -> origin/gh/IvanKobzarev/64/base 2025-04-25T04:11:47.0861897Z * [new branch] gh/IvanKobzarev/64/head -> origin/gh/IvanKobzarev/64/head 2025-04-25T04:11:47.0862468Z * [new branch] gh/IvanKobzarev/64/orig -> origin/gh/IvanKobzarev/64/orig 2025-04-25T04:11:47.0863030Z * [new branch] gh/IvanKobzarev/94/base -> origin/gh/IvanKobzarev/94/base 2025-04-25T04:11:47.0864298Z * [new branch] gh/IvanKobzarev/94/head -> origin/gh/IvanKobzarev/94/head 2025-04-25T04:11:47.0864857Z * [new branch] gh/IvanKobzarev/94/orig -> origin/gh/IvanKobzarev/94/orig 2025-04-25T04:11:47.0865422Z * [new branch] gh/IvanKobzarev/98/base -> origin/gh/IvanKobzarev/98/base 2025-04-25T04:11:47.0865989Z * [new branch] gh/IvanKobzarev/98/head -> origin/gh/IvanKobzarev/98/head 2025-04-25T04:11:47.0866544Z * [new branch] gh/IvanKobzarev/98/orig -> origin/gh/IvanKobzarev/98/orig 2025-04-25T04:11:47.0867090Z * [new branch] gh/Lezcano/243/base -> origin/gh/Lezcano/243/base 2025-04-25T04:11:47.0867607Z * [new branch] gh/Lezcano/243/head -> origin/gh/Lezcano/243/head 2025-04-25T04:11:47.0868133Z * [new branch] gh/Lezcano/243/orig -> origin/gh/Lezcano/243/orig 2025-04-25T04:11:47.0868687Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-04-25T04:11:47.0869250Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-04-25T04:11:47.0869823Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-04-25T04:11:47.0870371Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-04-25T04:11:47.0870922Z * [new branch] gh/NikhilAPatel/3/base -> origin/gh/NikhilAPatel/3/base 2025-04-25T04:11:47.0871477Z * [new branch] gh/NikhilAPatel/3/head -> origin/gh/NikhilAPatel/3/head 2025-04-25T04:11:47.0872022Z * [new branch] gh/NikhilAPatel/3/orig -> origin/gh/NikhilAPatel/3/orig 2025-04-25T04:11:47.0872573Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-04-25T04:11:47.0873224Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-04-25T04:11:47.0873784Z * [new branch] gh/NikhilAPatel/5/base -> origin/gh/NikhilAPatel/5/base 2025-04-25T04:11:47.0874346Z * [new branch] gh/NikhilAPatel/5/head -> origin/gh/NikhilAPatel/5/head 2025-04-25T04:11:47.0874896Z * [new branch] gh/NikhilAPatel/5/orig -> origin/gh/NikhilAPatel/5/orig 2025-04-25T04:11:47.0875455Z * [new branch] gh/NikhilAPatel/6/base -> origin/gh/NikhilAPatel/6/base 2025-04-25T04:11:47.1332631Z * [new branch] gh/NikhilAPatel/6/head -> origin/gh/NikhilAPatel/6/head 2025-04-25T04:11:47.1333216Z * [new branch] gh/NikhilAPatel/6/orig -> origin/gh/NikhilAPatel/6/orig 2025-04-25T04:11:47.1333776Z * [new branch] gh/NikhilAPatel/7/base -> origin/gh/NikhilAPatel/7/base 2025-04-25T04:11:47.1334334Z * [new branch] gh/NikhilAPatel/7/head -> origin/gh/NikhilAPatel/7/head 2025-04-25T04:11:47.1334926Z * [new branch] gh/NikhilAPatel/7/orig -> origin/gh/NikhilAPatel/7/orig 2025-04-25T04:11:47.1335483Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-04-25T04:11:47.1336042Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-04-25T04:11:47.1336589Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-04-25T04:11:47.1337130Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-04-25T04:11:47.1337680Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-04-25T04:11:47.1338222Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-04-25T04:11:47.1338780Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-04-25T04:11:47.1339329Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-04-25T04:11:47.1340060Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-04-25T04:11:47.1340608Z * [new branch] gh/PaulZhang12/10/base -> origin/gh/PaulZhang12/10/base 2025-04-25T04:11:47.1341147Z * [new branch] gh/PaulZhang12/10/head -> origin/gh/PaulZhang12/10/head 2025-04-25T04:11:47.1341700Z * [new branch] gh/PaulZhang12/10/orig -> origin/gh/PaulZhang12/10/orig 2025-04-25T04:11:47.1342245Z * [new branch] gh/PaulZhang12/11/base -> origin/gh/PaulZhang12/11/base 2025-04-25T04:11:47.1342785Z * [new branch] gh/PaulZhang12/11/head -> origin/gh/PaulZhang12/11/head 2025-04-25T04:11:47.1343337Z * [new branch] gh/PaulZhang12/11/orig -> origin/gh/PaulZhang12/11/orig 2025-04-25T04:11:47.1343874Z * [new branch] gh/PaulZhang12/12/base -> origin/gh/PaulZhang12/12/base 2025-04-25T04:11:47.1344420Z * [new branch] gh/PaulZhang12/12/head -> origin/gh/PaulZhang12/12/head 2025-04-25T04:11:47.1345171Z * [new branch] gh/PaulZhang12/2/base -> origin/gh/PaulZhang12/2/base 2025-04-25T04:11:47.1345828Z * [new branch] gh/PaulZhang12/2/head -> origin/gh/PaulZhang12/2/head 2025-04-25T04:11:47.1346429Z * [new branch] gh/PaulZhang12/2/orig -> origin/gh/PaulZhang12/2/orig 2025-04-25T04:11:47.1347064Z * [new branch] gh/PaulZhang12/3/base -> origin/gh/PaulZhang12/3/base 2025-04-25T04:11:47.1347618Z * [new branch] gh/PaulZhang12/3/head -> origin/gh/PaulZhang12/3/head 2025-04-25T04:11:47.1348150Z * [new branch] gh/PaulZhang12/3/orig -> origin/gh/PaulZhang12/3/orig 2025-04-25T04:11:47.1348682Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-04-25T04:11:47.1349831Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-04-25T04:11:47.1350380Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-04-25T04:11:47.1350918Z * [new branch] gh/PaulZhang12/5/base -> origin/gh/PaulZhang12/5/base 2025-04-25T04:11:47.1351452Z * [new branch] gh/PaulZhang12/5/head -> origin/gh/PaulZhang12/5/head 2025-04-25T04:11:47.1351990Z * [new branch] gh/PaulZhang12/5/orig -> origin/gh/PaulZhang12/5/orig 2025-04-25T04:11:47.1352527Z * [new branch] gh/PaulZhang12/6/base -> origin/gh/PaulZhang12/6/base 2025-04-25T04:11:47.1353056Z * [new branch] gh/PaulZhang12/6/head -> origin/gh/PaulZhang12/6/head 2025-04-25T04:11:47.1353595Z * [new branch] gh/PaulZhang12/6/orig -> origin/gh/PaulZhang12/6/orig 2025-04-25T04:11:47.1354124Z * [new branch] gh/PaulZhang12/7/base -> origin/gh/PaulZhang12/7/base 2025-04-25T04:11:47.1354660Z * [new branch] gh/PaulZhang12/7/head -> origin/gh/PaulZhang12/7/head 2025-04-25T04:11:47.1355205Z * [new branch] gh/PaulZhang12/7/orig -> origin/gh/PaulZhang12/7/orig 2025-04-25T04:11:47.1355725Z * [new branch] gh/PaulZhang12/8/base -> origin/gh/PaulZhang12/8/base 2025-04-25T04:11:47.1356275Z * [new branch] gh/PaulZhang12/8/head -> origin/gh/PaulZhang12/8/head 2025-04-25T04:11:47.1356806Z * [new branch] gh/PaulZhang12/8/orig -> origin/gh/PaulZhang12/8/orig 2025-04-25T04:11:47.1357338Z * [new branch] gh/PaulZhang12/9/base -> origin/gh/PaulZhang12/9/base 2025-04-25T04:11:47.1357878Z * [new branch] gh/PaulZhang12/9/head -> origin/gh/PaulZhang12/9/head 2025-04-25T04:11:47.1799284Z * [new branch] gh/PaulZhang12/9/orig -> origin/gh/PaulZhang12/9/orig 2025-04-25T04:11:47.1799979Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-04-25T04:11:47.1800623Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-04-25T04:11:47.1801457Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-04-25T04:11:47.1802037Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-04-25T04:11:47.1802615Z * [new branch] gh/StrongerXi/100/base -> origin/gh/StrongerXi/100/base 2025-04-25T04:11:47.1803210Z * [new branch] gh/StrongerXi/100/head -> origin/gh/StrongerXi/100/head 2025-04-25T04:11:47.1803792Z * [new branch] gh/StrongerXi/100/orig -> origin/gh/StrongerXi/100/orig 2025-04-25T04:11:47.1804485Z * [new branch] gh/StrongerXi/101/base -> origin/gh/StrongerXi/101/base 2025-04-25T04:11:47.1805073Z * [new branch] gh/StrongerXi/101/head -> origin/gh/StrongerXi/101/head 2025-04-25T04:11:47.1805665Z * [new branch] gh/StrongerXi/101/orig -> origin/gh/StrongerXi/101/orig 2025-04-25T04:11:47.1806267Z * [new branch] gh/StrongerXi/102/base -> origin/gh/StrongerXi/102/base 2025-04-25T04:11:47.1806848Z * [new branch] gh/StrongerXi/102/head -> origin/gh/StrongerXi/102/head 2025-04-25T04:11:47.1807438Z * [new branch] gh/StrongerXi/102/orig -> origin/gh/StrongerXi/102/orig 2025-04-25T04:11:47.1808038Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-04-25T04:11:47.1808646Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-04-25T04:11:47.1809233Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-04-25T04:11:47.1809813Z * [new branch] gh/StrongerXi/104/base -> origin/gh/StrongerXi/104/base 2025-04-25T04:11:47.1810397Z * [new branch] gh/StrongerXi/104/head -> origin/gh/StrongerXi/104/head 2025-04-25T04:11:47.1811121Z * [new branch] gh/StrongerXi/104/orig -> origin/gh/StrongerXi/104/orig 2025-04-25T04:11:47.1811715Z * [new branch] gh/StrongerXi/105/base -> origin/gh/StrongerXi/105/base 2025-04-25T04:11:47.1812306Z * [new branch] gh/StrongerXi/105/head -> origin/gh/StrongerXi/105/head 2025-04-25T04:11:47.1812891Z * [new branch] gh/StrongerXi/105/orig -> origin/gh/StrongerXi/105/orig 2025-04-25T04:11:47.1813482Z * [new branch] gh/StrongerXi/63/base -> origin/gh/StrongerXi/63/base 2025-04-25T04:11:47.1814062Z * [new branch] gh/StrongerXi/63/head -> origin/gh/StrongerXi/63/head 2025-04-25T04:11:47.1814635Z * [new branch] gh/StrongerXi/63/orig -> origin/gh/StrongerXi/63/orig 2025-04-25T04:11:47.1815253Z * [new branch] gh/StrongerXi/67/base -> origin/gh/StrongerXi/67/base 2025-04-25T04:11:47.1815823Z * [new branch] gh/StrongerXi/67/head -> origin/gh/StrongerXi/67/head 2025-04-25T04:11:47.1816406Z * [new branch] gh/StrongerXi/67/orig -> origin/gh/StrongerXi/67/orig 2025-04-25T04:11:47.1816973Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-04-25T04:11:47.1817555Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-04-25T04:11:47.1818140Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-04-25T04:11:47.1818674Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-04-25T04:11:47.1819211Z * [new branch] gh/StrongerXi/94/base -> origin/gh/StrongerXi/94/base 2025-04-25T04:11:47.1819737Z * [new branch] gh/StrongerXi/94/head -> origin/gh/StrongerXi/94/head 2025-04-25T04:11:47.1820274Z * [new branch] gh/StrongerXi/94/orig -> origin/gh/StrongerXi/94/orig 2025-04-25T04:11:47.1820816Z * [new branch] gh/StrongerXi/95/base -> origin/gh/StrongerXi/95/base 2025-04-25T04:11:47.1821455Z * [new branch] gh/StrongerXi/95/head -> origin/gh/StrongerXi/95/head 2025-04-25T04:11:47.1822011Z * [new branch] gh/StrongerXi/95/orig -> origin/gh/StrongerXi/95/orig 2025-04-25T04:11:47.1822540Z * [new branch] gh/StrongerXi/96/base -> origin/gh/StrongerXi/96/base 2025-04-25T04:11:47.1823080Z * [new branch] gh/StrongerXi/96/head -> origin/gh/StrongerXi/96/head 2025-04-25T04:11:47.1823655Z * [new branch] gh/StrongerXi/96/orig -> origin/gh/StrongerXi/96/orig 2025-04-25T04:11:47.1824221Z * [new branch] gh/StrongerXi/97/base -> origin/gh/StrongerXi/97/base 2025-04-25T04:11:47.1824796Z * [new branch] gh/StrongerXi/97/head -> origin/gh/StrongerXi/97/head 2025-04-25T04:11:47.1825381Z * [new branch] gh/StrongerXi/97/orig -> origin/gh/StrongerXi/97/orig 2025-04-25T04:11:47.1825961Z * [new branch] gh/StrongerXi/98/base -> origin/gh/StrongerXi/98/base 2025-04-25T04:11:47.2276305Z * [new branch] gh/StrongerXi/98/head -> origin/gh/StrongerXi/98/head 2025-04-25T04:11:47.2276978Z * [new branch] gh/StrongerXi/98/orig -> origin/gh/StrongerXi/98/orig 2025-04-25T04:11:47.2277570Z * [new branch] gh/StrongerXi/99/base -> origin/gh/StrongerXi/99/base 2025-04-25T04:11:47.2278142Z * [new branch] gh/StrongerXi/99/head -> origin/gh/StrongerXi/99/head 2025-04-25T04:11:47.2278760Z * [new branch] gh/StrongerXi/99/orig -> origin/gh/StrongerXi/99/orig 2025-04-25T04:11:47.2279338Z * [new branch] gh/Xia-Weiwen/33/base -> origin/gh/Xia-Weiwen/33/base 2025-04-25T04:11:47.2279898Z * [new branch] gh/Xia-Weiwen/33/head -> origin/gh/Xia-Weiwen/33/head 2025-04-25T04:11:47.2280730Z * [new branch] gh/Xia-Weiwen/33/orig -> origin/gh/Xia-Weiwen/33/orig 2025-04-25T04:11:47.2281316Z * [new branch] gh/Xia-Weiwen/34/base -> origin/gh/Xia-Weiwen/34/base 2025-04-25T04:11:47.2281927Z * [new branch] gh/Xia-Weiwen/34/head -> origin/gh/Xia-Weiwen/34/head 2025-04-25T04:11:47.2301541Z * [new branch] gh/Xia-Weiwen/34/orig -> origin/gh/Xia-Weiwen/34/orig 2025-04-25T04:11:47.2302400Z * [new branch] gh/Xia-Weiwen/35/base -> origin/gh/Xia-Weiwen/35/base 2025-04-25T04:11:47.2303042Z * [new branch] gh/Xia-Weiwen/35/head -> origin/gh/Xia-Weiwen/35/head 2025-04-25T04:11:47.2303624Z * [new branch] gh/Xia-Weiwen/35/orig -> origin/gh/Xia-Weiwen/35/orig 2025-04-25T04:11:47.2304210Z * [new branch] gh/Xia-Weiwen/36/base -> origin/gh/Xia-Weiwen/36/base 2025-04-25T04:11:47.2304829Z * [new branch] gh/Xia-Weiwen/36/head -> origin/gh/Xia-Weiwen/36/head 2025-04-25T04:11:47.2305422Z * [new branch] gh/Xia-Weiwen/36/orig -> origin/gh/Xia-Weiwen/36/orig 2025-04-25T04:11:47.2306022Z * [new branch] gh/Xia-Weiwen/37/base -> origin/gh/Xia-Weiwen/37/base 2025-04-25T04:11:47.2306627Z * [new branch] gh/Xia-Weiwen/37/head -> origin/gh/Xia-Weiwen/37/head 2025-04-25T04:11:47.2307211Z * [new branch] gh/Xia-Weiwen/37/orig -> origin/gh/Xia-Weiwen/37/orig 2025-04-25T04:11:47.2307791Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-04-25T04:11:47.2308438Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-04-25T04:11:47.2309017Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-04-25T04:11:47.2309572Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-04-25T04:11:47.2310188Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-04-25T04:11:47.2310981Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-04-25T04:11:47.2311573Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-04-25T04:11:47.2312144Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-04-25T04:11:47.2312695Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-04-25T04:11:47.2313304Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-04-25T04:11:47.2313875Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-04-25T04:11:47.2314382Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-04-25T04:11:47.2314889Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-04-25T04:11:47.2315401Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-04-25T04:11:47.2315912Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-04-25T04:11:47.2316419Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-04-25T04:11:47.2316925Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-04-25T04:11:47.2317436Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-04-25T04:11:47.2317939Z * [new branch] gh/XilunWu/122/base -> origin/gh/XilunWu/122/base 2025-04-25T04:11:47.2318442Z * [new branch] gh/XilunWu/122/head -> origin/gh/XilunWu/122/head 2025-04-25T04:11:47.2318943Z * [new branch] gh/XilunWu/122/orig -> origin/gh/XilunWu/122/orig 2025-04-25T04:11:47.2319486Z * [new branch] gh/XilunWu/125/base -> origin/gh/XilunWu/125/base 2025-04-25T04:11:47.2320207Z * [new branch] gh/XilunWu/125/head -> origin/gh/XilunWu/125/head 2025-04-25T04:11:47.2320719Z * [new branch] gh/XilunWu/125/orig -> origin/gh/XilunWu/125/orig 2025-04-25T04:11:47.2321230Z * [new branch] gh/XilunWu/126/base -> origin/gh/XilunWu/126/base 2025-04-25T04:11:47.2321732Z * [new branch] gh/XilunWu/126/head -> origin/gh/XilunWu/126/head 2025-04-25T04:11:47.2322240Z * [new branch] gh/XilunWu/126/orig -> origin/gh/XilunWu/126/orig 2025-04-25T04:11:47.2725507Z * [new branch] gh/XilunWu/127/base -> origin/gh/XilunWu/127/base 2025-04-25T04:11:47.2726095Z * [new branch] gh/XilunWu/127/head -> origin/gh/XilunWu/127/head 2025-04-25T04:11:47.2726663Z * [new branch] gh/XilunWu/127/orig -> origin/gh/XilunWu/127/orig 2025-04-25T04:11:47.2727187Z * [new branch] gh/XilunWu/128/base -> origin/gh/XilunWu/128/base 2025-04-25T04:11:47.2727730Z * [new branch] gh/XilunWu/128/head -> origin/gh/XilunWu/128/head 2025-04-25T04:11:47.2728252Z * [new branch] gh/XilunWu/128/orig -> origin/gh/XilunWu/128/orig 2025-04-25T04:11:47.2728758Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-04-25T04:11:47.2729281Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-04-25T04:11:47.2729795Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-04-25T04:11:47.2730306Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-04-25T04:11:47.2730820Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-04-25T04:11:47.2731321Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-04-25T04:11:47.2731841Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-04-25T04:11:47.2732575Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-04-25T04:11:47.2733087Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-04-25T04:11:47.2733601Z * [new branch] gh/XilunWu/132/base -> origin/gh/XilunWu/132/base 2025-04-25T04:11:47.2734108Z * [new branch] gh/XilunWu/132/head -> origin/gh/XilunWu/132/head 2025-04-25T04:11:47.2734621Z * [new branch] gh/XilunWu/132/orig -> origin/gh/XilunWu/132/orig 2025-04-25T04:11:47.2735121Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-04-25T04:11:47.2735630Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-04-25T04:11:47.2736152Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-04-25T04:11:47.2736662Z * [new branch] gh/XilunWu/134/base -> origin/gh/XilunWu/134/base 2025-04-25T04:11:47.2737180Z * [new branch] gh/XilunWu/134/head -> origin/gh/XilunWu/134/head 2025-04-25T04:11:47.2737684Z * [new branch] gh/XilunWu/134/orig -> origin/gh/XilunWu/134/orig 2025-04-25T04:11:47.2738205Z * [new branch] gh/XilunWu/135/base -> origin/gh/XilunWu/135/base 2025-04-25T04:11:47.2738713Z * [new branch] gh/XilunWu/135/head -> origin/gh/XilunWu/135/head 2025-04-25T04:11:47.2739227Z * [new branch] gh/XilunWu/135/orig -> origin/gh/XilunWu/135/orig 2025-04-25T04:11:47.2739745Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-04-25T04:11:47.2740249Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-04-25T04:11:47.2740764Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-04-25T04:11:47.2741396Z * [new branch] gh/XilunWu/137/base -> origin/gh/XilunWu/137/base 2025-04-25T04:11:47.2741911Z * [new branch] gh/XilunWu/137/head -> origin/gh/XilunWu/137/head 2025-04-25T04:11:47.2742422Z * [new branch] gh/XilunWu/137/orig -> origin/gh/XilunWu/137/orig 2025-04-25T04:11:47.2742927Z * [new branch] gh/XilunWu/138/base -> origin/gh/XilunWu/138/base 2025-04-25T04:11:47.2743438Z * [new branch] gh/XilunWu/138/head -> origin/gh/XilunWu/138/head 2025-04-25T04:11:47.2743947Z * [new branch] gh/XilunWu/138/orig -> origin/gh/XilunWu/138/orig 2025-04-25T04:11:47.2744462Z * [new branch] gh/XuehaiPan/1/base -> origin/gh/XuehaiPan/1/base 2025-04-25T04:11:47.2744991Z * [new branch] gh/XuehaiPan/1/head -> origin/gh/XuehaiPan/1/head 2025-04-25T04:11:47.2745508Z * [new branch] gh/XuehaiPan/1/orig -> origin/gh/XuehaiPan/1/orig 2025-04-25T04:11:47.2746045Z * [new branch] gh/XuehaiPan/105/base -> origin/gh/XuehaiPan/105/base 2025-04-25T04:11:47.2746590Z * [new branch] gh/XuehaiPan/105/head -> origin/gh/XuehaiPan/105/head 2025-04-25T04:11:47.2747134Z * [new branch] gh/XuehaiPan/105/orig -> origin/gh/XuehaiPan/105/orig 2025-04-25T04:11:47.2747676Z * [new branch] gh/XuehaiPan/109/base -> origin/gh/XuehaiPan/109/base 2025-04-25T04:11:47.2748208Z * [new branch] gh/XuehaiPan/109/head -> origin/gh/XuehaiPan/109/head 2025-04-25T04:11:47.2748746Z * [new branch] gh/XuehaiPan/109/orig -> origin/gh/XuehaiPan/109/orig 2025-04-25T04:11:47.2749280Z * [new branch] gh/XuehaiPan/13/base -> origin/gh/XuehaiPan/13/base 2025-04-25T04:11:47.2749821Z * [new branch] gh/XuehaiPan/13/head -> origin/gh/XuehaiPan/13/head 2025-04-25T04:11:47.3186086Z * [new branch] gh/XuehaiPan/13/orig -> origin/gh/XuehaiPan/13/orig 2025-04-25T04:11:47.3186943Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-04-25T04:11:47.3187494Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-04-25T04:11:47.3188039Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-04-25T04:11:47.3188684Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-04-25T04:11:47.3189304Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-04-25T04:11:47.3189847Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-04-25T04:11:47.3190380Z * [new branch] gh/XuehaiPan/182/base -> origin/gh/XuehaiPan/182/base 2025-04-25T04:11:47.3190923Z * [new branch] gh/XuehaiPan/182/head -> origin/gh/XuehaiPan/182/head 2025-04-25T04:11:47.3191463Z * [new branch] gh/XuehaiPan/182/orig -> origin/gh/XuehaiPan/182/orig 2025-04-25T04:11:47.3192012Z * [new branch] gh/XuehaiPan/183/base -> origin/gh/XuehaiPan/183/base 2025-04-25T04:11:47.3192557Z * [new branch] gh/XuehaiPan/183/head -> origin/gh/XuehaiPan/183/head 2025-04-25T04:11:47.3193091Z * [new branch] gh/XuehaiPan/183/orig -> origin/gh/XuehaiPan/183/orig 2025-04-25T04:11:47.3193618Z * [new branch] gh/XuehaiPan/185/base -> origin/gh/XuehaiPan/185/base 2025-04-25T04:11:47.3194155Z * [new branch] gh/XuehaiPan/185/head -> origin/gh/XuehaiPan/185/head 2025-04-25T04:11:47.3194740Z * [new branch] gh/XuehaiPan/185/orig -> origin/gh/XuehaiPan/185/orig 2025-04-25T04:11:47.3195334Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-04-25T04:11:47.3195862Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-04-25T04:11:47.3196540Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-04-25T04:11:47.3197079Z * [new branch] gh/XuehaiPan/210/base -> origin/gh/XuehaiPan/210/base 2025-04-25T04:11:47.3197609Z * [new branch] gh/XuehaiPan/210/head -> origin/gh/XuehaiPan/210/head 2025-04-25T04:11:47.3198142Z * [new branch] gh/XuehaiPan/210/orig -> origin/gh/XuehaiPan/210/orig 2025-04-25T04:11:47.3198668Z * [new branch] gh/XuehaiPan/211/base -> origin/gh/XuehaiPan/211/base 2025-04-25T04:11:47.3199203Z * [new branch] gh/XuehaiPan/211/head -> origin/gh/XuehaiPan/211/head 2025-04-25T04:11:47.3199748Z * [new branch] gh/XuehaiPan/211/orig -> origin/gh/XuehaiPan/211/orig 2025-04-25T04:11:47.3200343Z * [new branch] gh/XuehaiPan/217/base -> origin/gh/XuehaiPan/217/base 2025-04-25T04:11:47.3200934Z * [new branch] gh/XuehaiPan/217/head -> origin/gh/XuehaiPan/217/head 2025-04-25T04:11:47.3201464Z * [new branch] gh/XuehaiPan/217/orig -> origin/gh/XuehaiPan/217/orig 2025-04-25T04:11:47.3201996Z * [new branch] gh/XuehaiPan/218/base -> origin/gh/XuehaiPan/218/base 2025-04-25T04:11:47.3202529Z * [new branch] gh/XuehaiPan/218/head -> origin/gh/XuehaiPan/218/head 2025-04-25T04:11:47.3203050Z * [new branch] gh/XuehaiPan/218/orig -> origin/gh/XuehaiPan/218/orig 2025-04-25T04:11:47.3203580Z * [new branch] gh/XuehaiPan/219/base -> origin/gh/XuehaiPan/219/base 2025-04-25T04:11:47.3204105Z * [new branch] gh/XuehaiPan/219/head -> origin/gh/XuehaiPan/219/head 2025-04-25T04:11:47.3204734Z * [new branch] gh/XuehaiPan/219/orig -> origin/gh/XuehaiPan/219/orig 2025-04-25T04:11:47.3205258Z * [new branch] gh/XuehaiPan/223/base -> origin/gh/XuehaiPan/223/base 2025-04-25T04:11:47.3205803Z * [new branch] gh/XuehaiPan/223/head -> origin/gh/XuehaiPan/223/head 2025-04-25T04:11:47.3206521Z * [new branch] gh/XuehaiPan/223/orig -> origin/gh/XuehaiPan/223/orig 2025-04-25T04:11:47.3207105Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-04-25T04:11:47.3207647Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-04-25T04:11:47.3208176Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-04-25T04:11:47.3208717Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-04-25T04:11:47.3209251Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-04-25T04:11:47.3209777Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-04-25T04:11:47.3210319Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-04-25T04:11:47.3210848Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-04-25T04:11:47.3211384Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-04-25T04:11:47.3626302Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-04-25T04:11:47.3626892Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-04-25T04:11:47.3627472Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-04-25T04:11:47.3628086Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-04-25T04:11:47.3628685Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-04-25T04:11:47.3629224Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-04-25T04:11:47.3629967Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-04-25T04:11:47.3630532Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-04-25T04:11:47.3631064Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-04-25T04:11:47.3631609Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-04-25T04:11:47.3632149Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-04-25T04:11:47.3632677Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-04-25T04:11:47.3633214Z * [new branch] gh/XuehaiPan/236/base -> origin/gh/XuehaiPan/236/base 2025-04-25T04:11:47.3633798Z * [new branch] gh/XuehaiPan/236/head -> origin/gh/XuehaiPan/236/head 2025-04-25T04:11:47.3634391Z * [new branch] gh/XuehaiPan/236/orig -> origin/gh/XuehaiPan/236/orig 2025-04-25T04:11:47.3634943Z * [new branch] gh/XuehaiPan/239/base -> origin/gh/XuehaiPan/239/base 2025-04-25T04:11:47.3635476Z * [new branch] gh/XuehaiPan/239/head -> origin/gh/XuehaiPan/239/head 2025-04-25T04:11:47.3636012Z * [new branch] gh/XuehaiPan/239/orig -> origin/gh/XuehaiPan/239/orig 2025-04-25T04:11:47.3636534Z * [new branch] gh/XuehaiPan/241/base -> origin/gh/XuehaiPan/241/base 2025-04-25T04:11:47.3637070Z * [new branch] gh/XuehaiPan/241/head -> origin/gh/XuehaiPan/241/head 2025-04-25T04:11:47.3637606Z * [new branch] gh/XuehaiPan/241/orig -> origin/gh/XuehaiPan/241/orig 2025-04-25T04:11:47.3638136Z * [new branch] gh/XuehaiPan/242/base -> origin/gh/XuehaiPan/242/base 2025-04-25T04:11:47.3638673Z * [new branch] gh/XuehaiPan/242/head -> origin/gh/XuehaiPan/242/head 2025-04-25T04:11:47.3639211Z * [new branch] gh/XuehaiPan/242/orig -> origin/gh/XuehaiPan/242/orig 2025-04-25T04:11:47.3639928Z * [new branch] gh/XuehaiPan/247/base -> origin/gh/XuehaiPan/247/base 2025-04-25T04:11:47.3640534Z * [new branch] gh/XuehaiPan/247/head -> origin/gh/XuehaiPan/247/head 2025-04-25T04:11:47.3641067Z * [new branch] gh/XuehaiPan/247/orig -> origin/gh/XuehaiPan/247/orig 2025-04-25T04:11:47.3641608Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-04-25T04:11:47.3642146Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-04-25T04:11:47.3642690Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-04-25T04:11:47.3643220Z * [new branch] gh/XuehaiPan/250/base -> origin/gh/XuehaiPan/250/base 2025-04-25T04:11:47.3643764Z * [new branch] gh/XuehaiPan/250/head -> origin/gh/XuehaiPan/250/head 2025-04-25T04:11:47.3644408Z * [new branch] gh/XuehaiPan/250/orig -> origin/gh/XuehaiPan/250/orig 2025-04-25T04:11:47.3644947Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-04-25T04:11:47.3645562Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-04-25T04:11:47.3646154Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-04-25T04:11:47.3646701Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-04-25T04:11:47.3647248Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-04-25T04:11:47.3647771Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-04-25T04:11:47.3648303Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-04-25T04:11:47.3648940Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-04-25T04:11:47.3649476Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-04-25T04:11:47.3650016Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-04-25T04:11:47.3650550Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-04-25T04:11:47.3651092Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-04-25T04:11:47.3651684Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-04-25T04:11:47.4088914Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-04-25T04:11:47.4089918Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-04-25T04:11:47.4090889Z * [new branch] gh/XuehaiPan/261/base -> origin/gh/XuehaiPan/261/base 2025-04-25T04:11:47.4091872Z * [new branch] gh/XuehaiPan/261/head -> origin/gh/XuehaiPan/261/head 2025-04-25T04:11:47.4092828Z * [new branch] gh/XuehaiPan/261/orig -> origin/gh/XuehaiPan/261/orig 2025-04-25T04:11:47.4093771Z * [new branch] gh/XuehaiPan/262/base -> origin/gh/XuehaiPan/262/base 2025-04-25T04:11:47.4094703Z * [new branch] gh/XuehaiPan/262/head -> origin/gh/XuehaiPan/262/head 2025-04-25T04:11:47.4095648Z * [new branch] gh/XuehaiPan/262/orig -> origin/gh/XuehaiPan/262/orig 2025-04-25T04:11:47.4096590Z * [new branch] gh/XuehaiPan/263/base -> origin/gh/XuehaiPan/263/base 2025-04-25T04:11:47.4097523Z * [new branch] gh/XuehaiPan/263/head -> origin/gh/XuehaiPan/263/head 2025-04-25T04:11:47.4098466Z * [new branch] gh/XuehaiPan/263/orig -> origin/gh/XuehaiPan/263/orig 2025-04-25T04:11:47.4099405Z * [new branch] gh/XuehaiPan/264/base -> origin/gh/XuehaiPan/264/base 2025-04-25T04:11:47.4100579Z * [new branch] gh/XuehaiPan/264/head -> origin/gh/XuehaiPan/264/head 2025-04-25T04:11:47.4101535Z * [new branch] gh/XuehaiPan/264/orig -> origin/gh/XuehaiPan/264/orig 2025-04-25T04:11:47.4102472Z * [new branch] gh/XuehaiPan/265/base -> origin/gh/XuehaiPan/265/base 2025-04-25T04:11:47.4103420Z * [new branch] gh/XuehaiPan/265/head -> origin/gh/XuehaiPan/265/head 2025-04-25T04:11:47.4104361Z * [new branch] gh/XuehaiPan/265/orig -> origin/gh/XuehaiPan/265/orig 2025-04-25T04:11:47.4105304Z * [new branch] gh/XuehaiPan/266/base -> origin/gh/XuehaiPan/266/base 2025-04-25T04:11:47.4106250Z * [new branch] gh/XuehaiPan/266/head -> origin/gh/XuehaiPan/266/head 2025-04-25T04:11:47.4107189Z * [new branch] gh/XuehaiPan/266/orig -> origin/gh/XuehaiPan/266/orig 2025-04-25T04:11:47.4108139Z * [new branch] gh/XuehaiPan/267/base -> origin/gh/XuehaiPan/267/base 2025-04-25T04:11:47.4109088Z * [new branch] gh/XuehaiPan/267/head -> origin/gh/XuehaiPan/267/head 2025-04-25T04:11:47.4110044Z * [new branch] gh/XuehaiPan/267/orig -> origin/gh/XuehaiPan/267/orig 2025-04-25T04:11:47.4110979Z * [new branch] gh/XuehaiPan/268/base -> origin/gh/XuehaiPan/268/base 2025-04-25T04:11:47.4111929Z * [new branch] gh/XuehaiPan/268/head -> origin/gh/XuehaiPan/268/head 2025-04-25T04:11:47.4112867Z * [new branch] gh/XuehaiPan/268/orig -> origin/gh/XuehaiPan/268/orig 2025-04-25T04:11:47.4113834Z * [new branch] gh/XuehaiPan/269/base -> origin/gh/XuehaiPan/269/base 2025-04-25T04:11:47.4114782Z * [new branch] gh/XuehaiPan/269/head -> origin/gh/XuehaiPan/269/head 2025-04-25T04:11:47.4115726Z * [new branch] gh/XuehaiPan/269/orig -> origin/gh/XuehaiPan/269/orig 2025-04-25T04:11:47.4116810Z * [new branch] gh/XuehaiPan/270/base -> origin/gh/XuehaiPan/270/base 2025-04-25T04:11:47.4117772Z * [new branch] gh/XuehaiPan/270/head -> origin/gh/XuehaiPan/270/head 2025-04-25T04:11:47.4118723Z * [new branch] gh/XuehaiPan/270/orig -> origin/gh/XuehaiPan/270/orig 2025-04-25T04:11:47.4119663Z * [new branch] gh/XuehaiPan/72/base -> origin/gh/XuehaiPan/72/base 2025-04-25T04:11:47.4120592Z * [new branch] gh/XuehaiPan/72/head -> origin/gh/XuehaiPan/72/head 2025-04-25T04:11:47.4121537Z * [new branch] gh/XuehaiPan/72/orig -> origin/gh/XuehaiPan/72/orig 2025-04-25T04:11:47.4122462Z * [new branch] gh/XuehaiPan/9/base -> origin/gh/XuehaiPan/9/base 2025-04-25T04:11:47.4123377Z * [new branch] gh/XuehaiPan/9/orig -> origin/gh/XuehaiPan/9/orig 2025-04-25T04:11:47.4124413Z * [new branch] gh/XuehaiPan/97/base -> origin/gh/XuehaiPan/97/base 2025-04-25T04:11:47.4125340Z * [new branch] gh/XuehaiPan/97/head -> origin/gh/XuehaiPan/97/head 2025-04-25T04:11:47.4126272Z * [new branch] gh/XuehaiPan/97/orig -> origin/gh/XuehaiPan/97/orig 2025-04-25T04:11:47.4127213Z * [new branch] gh/XuehaiPan/98/base -> origin/gh/XuehaiPan/98/base 2025-04-25T04:11:47.4128131Z * [new branch] gh/XuehaiPan/98/head -> origin/gh/XuehaiPan/98/head 2025-04-25T04:11:47.4129061Z * [new branch] gh/XuehaiPan/98/orig -> origin/gh/XuehaiPan/98/orig 2025-04-25T04:11:47.4129976Z * [new branch] gh/XuehaiPan/99/head -> origin/gh/XuehaiPan/99/head 2025-04-25T04:11:47.4130900Z * [new branch] gh/ZainRizvi/1/base -> origin/gh/ZainRizvi/1/base 2025-04-25T04:11:47.4131810Z * [new branch] gh/ZainRizvi/1/head -> origin/gh/ZainRizvi/1/head 2025-04-25T04:11:47.4561039Z * [new branch] gh/ZainRizvi/1/orig -> origin/gh/ZainRizvi/1/orig 2025-04-25T04:11:47.4562227Z * [new branch] gh/ZainRizvi/2/base -> origin/gh/ZainRizvi/2/base 2025-04-25T04:11:47.4563127Z * [new branch] gh/ZainRizvi/2/head -> origin/gh/ZainRizvi/2/head 2025-04-25T04:11:47.4564042Z * [new branch] gh/ZainRizvi/2/orig -> origin/gh/ZainRizvi/2/orig 2025-04-25T04:11:47.4565077Z * [new branch] gh/ZainRizvi/3/base -> origin/gh/ZainRizvi/3/base 2025-04-25T04:11:47.4565985Z * [new branch] gh/ZainRizvi/3/head -> origin/gh/ZainRizvi/3/head 2025-04-25T04:11:47.4566898Z * [new branch] gh/ZainRizvi/3/orig -> origin/gh/ZainRizvi/3/orig 2025-04-25T04:11:47.4567806Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-04-25T04:11:47.4568722Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-04-25T04:11:47.4569636Z * [new branch] gh/ZainRizvi/4/orig -> origin/gh/ZainRizvi/4/orig 2025-04-25T04:11:47.4570572Z * [new branch] gh/ZhiweiYan-96/32/base -> origin/gh/ZhiweiYan-96/32/base 2025-04-25T04:11:47.4571549Z * [new branch] gh/ZhiweiYan-96/32/head -> origin/gh/ZhiweiYan-96/32/head 2025-04-25T04:11:47.4572507Z * [new branch] gh/ZhiweiYan-96/32/orig -> origin/gh/ZhiweiYan-96/32/orig 2025-04-25T04:11:47.4573475Z * [new branch] gh/ZhiweiYan-96/38/base -> origin/gh/ZhiweiYan-96/38/base 2025-04-25T04:11:47.4574449Z * [new branch] gh/ZhiweiYan-96/38/head -> origin/gh/ZhiweiYan-96/38/head 2025-04-25T04:11:47.4575410Z * [new branch] gh/ZhiweiYan-96/38/orig -> origin/gh/ZhiweiYan-96/38/orig 2025-04-25T04:11:47.4576379Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-04-25T04:11:47.4577481Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-04-25T04:11:47.4578454Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-04-25T04:11:47.4579435Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-04-25T04:11:47.4580399Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-04-25T04:11:47.4581369Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-04-25T04:11:47.4582328Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-04-25T04:11:47.4584647Z * [new branch] gh/ZhiweiYan-96/47/base -> origin/gh/ZhiweiYan-96/47/base 2025-04-25T04:11:47.4585629Z * [new branch] gh/ZhiweiYan-96/47/head -> origin/gh/ZhiweiYan-96/47/head 2025-04-25T04:11:47.4586590Z * [new branch] gh/ZhiweiYan-96/47/orig -> origin/gh/ZhiweiYan-96/47/orig 2025-04-25T04:11:47.4587561Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-04-25T04:11:47.4588523Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-04-25T04:11:47.4590518Z * [new branch] gh/ZhiweiYan-96/56/base -> origin/gh/ZhiweiYan-96/56/base 2025-04-25T04:11:47.4591509Z * [new branch] gh/ZhiweiYan-96/56/head -> origin/gh/ZhiweiYan-96/56/head 2025-04-25T04:11:47.4592476Z * [new branch] gh/ZhiweiYan-96/56/orig -> origin/gh/ZhiweiYan-96/56/orig 2025-04-25T04:11:47.4593446Z * [new branch] gh/ZhiweiYan-96/57/base -> origin/gh/ZhiweiYan-96/57/base 2025-04-25T04:11:47.4594406Z * [new branch] gh/ZhiweiYan-96/57/head -> origin/gh/ZhiweiYan-96/57/head 2025-04-25T04:11:47.4596388Z * [new branch] gh/ZhiweiYan-96/57/orig -> origin/gh/ZhiweiYan-96/57/orig 2025-04-25T04:11:47.4597374Z * [new branch] gh/ZhiweiYan-96/58/base -> origin/gh/ZhiweiYan-96/58/base 2025-04-25T04:11:47.4598491Z * [new branch] gh/ZhiweiYan-96/58/head -> origin/gh/ZhiweiYan-96/58/head 2025-04-25T04:11:47.4599472Z * [new branch] gh/ZhiweiYan-96/58/orig -> origin/gh/ZhiweiYan-96/58/orig 2025-04-25T04:11:47.4600434Z * [new branch] gh/ZhiweiYan-96/59/base -> origin/gh/ZhiweiYan-96/59/base 2025-04-25T04:11:47.4602431Z * [new branch] gh/ZhiweiYan-96/59/head -> origin/gh/ZhiweiYan-96/59/head 2025-04-25T04:11:47.4603398Z * [new branch] gh/ZhiweiYan-96/59/orig -> origin/gh/ZhiweiYan-96/59/orig 2025-04-25T04:11:47.4604458Z * [new branch] gh/ZhiweiYan-96/60/base -> origin/gh/ZhiweiYan-96/60/base 2025-04-25T04:11:47.4605433Z * [new branch] gh/ZhiweiYan-96/60/head -> origin/gh/ZhiweiYan-96/60/head 2025-04-25T04:11:47.4606403Z * [new branch] gh/ZhiweiYan-96/60/orig -> origin/gh/ZhiweiYan-96/60/orig 2025-04-25T04:11:47.4608390Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-04-25T04:11:47.4609304Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-04-25T04:11:47.4610221Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-04-25T04:11:47.5045418Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-04-25T04:11:47.5046417Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-04-25T04:11:47.5047346Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-04-25T04:11:47.5048248Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-04-25T04:11:47.5049125Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-04-25T04:11:47.5049981Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-04-25T04:11:47.5051016Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-04-25T04:11:47.5052398Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-04-25T04:11:47.5054072Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-04-25T04:11:47.5055675Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-04-25T04:11:47.5057007Z * [new branch] gh/alexsamardzic/1/base -> origin/gh/alexsamardzic/1/base 2025-04-25T04:11:47.5058026Z * [new branch] gh/alexsamardzic/1/head -> origin/gh/alexsamardzic/1/head 2025-04-25T04:11:47.5059046Z * [new branch] gh/alexsamardzic/1/orig -> origin/gh/alexsamardzic/1/orig 2025-04-25T04:11:47.5060003Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-04-25T04:11:47.5060880Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-04-25T04:11:47.5061832Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-04-25T04:11:47.5063853Z * [new branch] gh/amjames/20/base -> origin/gh/amjames/20/base 2025-04-25T04:11:47.5064739Z * [new branch] gh/amjames/20/head -> origin/gh/amjames/20/head 2025-04-25T04:11:47.5065605Z * [new branch] gh/amjames/20/orig -> origin/gh/amjames/20/orig 2025-04-25T04:11:47.5066494Z * [new branch] gh/amjames/21/base -> origin/gh/amjames/21/base 2025-04-25T04:11:47.5067370Z * [new branch] gh/amjames/21/head -> origin/gh/amjames/21/head 2025-04-25T04:11:47.5069259Z * [new branch] gh/amjames/21/orig -> origin/gh/amjames/21/orig 2025-04-25T04:11:47.5070156Z * [new branch] gh/amjames/22/base -> origin/gh/amjames/22/base 2025-04-25T04:11:47.5071188Z * [new branch] gh/amjames/22/head -> origin/gh/amjames/22/head 2025-04-25T04:11:47.5072080Z * [new branch] gh/amjames/22/orig -> origin/gh/amjames/22/orig 2025-04-25T04:11:47.5073030Z * [new branch] gh/andrewlee302/1/base -> origin/gh/andrewlee302/1/base 2025-04-25T04:11:47.5075021Z * [new branch] gh/andrewlee302/1/head -> origin/gh/andrewlee302/1/head 2025-04-25T04:11:47.5075999Z * [new branch] gh/andrewlee302/3/base -> origin/gh/andrewlee302/3/base 2025-04-25T04:11:47.5076957Z * [new branch] gh/andrewlee302/3/head -> origin/gh/andrewlee302/3/head 2025-04-25T04:11:47.5077929Z * [new branch] gh/andrewlee302/3/orig -> origin/gh/andrewlee302/3/orig 2025-04-25T04:11:47.5078892Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-04-25T04:11:47.5080827Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-04-25T04:11:47.5081781Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-04-25T04:11:47.5082713Z * [new branch] gh/andrewor14/36/base -> origin/gh/andrewor14/36/base 2025-04-25T04:11:47.5083663Z * [new branch] gh/andrewor14/36/head -> origin/gh/andrewor14/36/head 2025-04-25T04:11:47.5085124Z * [new branch] gh/andrewor14/36/orig -> origin/gh/andrewor14/36/orig 2025-04-25T04:11:47.5087116Z * [new branch] gh/andrewor14/37/base -> origin/gh/andrewor14/37/base 2025-04-25T04:11:47.5088050Z * [new branch] gh/andrewor14/37/head -> origin/gh/andrewor14/37/head 2025-04-25T04:11:47.5088986Z * [new branch] gh/andrewor14/37/orig -> origin/gh/andrewor14/37/orig 2025-04-25T04:11:47.5090069Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-04-25T04:11:47.5091012Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-04-25T04:11:47.5092983Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-04-25T04:11:47.5093912Z * [new branch] gh/angelayi/78/base -> origin/gh/angelayi/78/base 2025-04-25T04:11:47.5094820Z * [new branch] gh/angelayi/78/head -> origin/gh/angelayi/78/head 2025-04-25T04:11:47.5095728Z * [new branch] gh/angelayi/78/orig -> origin/gh/angelayi/78/orig 2025-04-25T04:11:47.5534016Z * [new branch] gh/angelayi/79/base -> origin/gh/angelayi/79/base 2025-04-25T04:11:47.5534604Z * [new branch] gh/angelayi/79/head -> origin/gh/angelayi/79/head 2025-04-25T04:11:47.5535135Z * [new branch] gh/angelayi/79/orig -> origin/gh/angelayi/79/orig 2025-04-25T04:11:47.5535671Z * [new branch] gh/angelayi/80/base -> origin/gh/angelayi/80/base 2025-04-25T04:11:47.5536206Z * [new branch] gh/angelayi/80/head -> origin/gh/angelayi/80/head 2025-04-25T04:11:47.5536725Z * [new branch] gh/angelayi/80/orig -> origin/gh/angelayi/80/orig 2025-04-25T04:11:47.5537235Z * [new branch] gh/angelayi/81/base -> origin/gh/angelayi/81/base 2025-04-25T04:11:47.5537862Z * [new branch] gh/angelayi/81/head -> origin/gh/angelayi/81/head 2025-04-25T04:11:47.5538369Z * [new branch] gh/angelayi/81/orig -> origin/gh/angelayi/81/orig 2025-04-25T04:11:47.5538884Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-04-25T04:11:47.5539387Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-04-25T04:11:47.5539900Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-04-25T04:11:47.5540430Z * [new branch] gh/angelayi/83/base -> origin/gh/angelayi/83/base 2025-04-25T04:11:47.5541156Z * [new branch] gh/angelayi/83/head -> origin/gh/angelayi/83/head 2025-04-25T04:11:47.5541680Z * [new branch] gh/angelayi/83/orig -> origin/gh/angelayi/83/orig 2025-04-25T04:11:47.5542190Z * [new branch] gh/angelayi/84/base -> origin/gh/angelayi/84/base 2025-04-25T04:11:47.5542714Z * [new branch] gh/angelayi/84/head -> origin/gh/angelayi/84/head 2025-04-25T04:11:47.5543227Z * [new branch] gh/angelayi/84/orig -> origin/gh/angelayi/84/orig 2025-04-25T04:11:47.5543734Z * [new branch] gh/angelayi/85/base -> origin/gh/angelayi/85/base 2025-04-25T04:11:47.5544250Z * [new branch] gh/angelayi/85/head -> origin/gh/angelayi/85/head 2025-04-25T04:11:47.5544760Z * [new branch] gh/angelayi/85/orig -> origin/gh/angelayi/85/orig 2025-04-25T04:11:47.5545280Z * [new branch] gh/angelayi/86/base -> origin/gh/angelayi/86/base 2025-04-25T04:11:47.5545792Z * [new branch] gh/angelayi/86/head -> origin/gh/angelayi/86/head 2025-04-25T04:11:47.5546299Z * [new branch] gh/angelayi/86/orig -> origin/gh/angelayi/86/orig 2025-04-25T04:11:47.5546812Z * [new branch] gh/angelayi/87/base -> origin/gh/angelayi/87/base 2025-04-25T04:11:47.5547320Z * [new branch] gh/angelayi/87/head -> origin/gh/angelayi/87/head 2025-04-25T04:11:47.5547847Z * [new branch] gh/angelayi/87/orig -> origin/gh/angelayi/87/orig 2025-04-25T04:11:47.5548358Z * [new branch] gh/angelayi/88/base -> origin/gh/angelayi/88/base 2025-04-25T04:11:47.5548865Z * [new branch] gh/angelayi/88/head -> origin/gh/angelayi/88/head 2025-04-25T04:11:47.5549500Z * [new branch] gh/angelayi/88/orig -> origin/gh/angelayi/88/orig 2025-04-25T04:11:47.5550012Z * [new branch] gh/angelayi/89/base -> origin/gh/angelayi/89/base 2025-04-25T04:11:47.5550534Z * [new branch] gh/angelayi/89/head -> origin/gh/angelayi/89/head 2025-04-25T04:11:47.5551046Z * [new branch] gh/angelayi/89/orig -> origin/gh/angelayi/89/orig 2025-04-25T04:11:47.5551553Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-04-25T04:11:47.5552045Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-04-25T04:11:47.5552528Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-04-25T04:11:47.5553054Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-04-25T04:11:47.5553606Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-04-25T04:11:47.5554164Z * [new branch] gh/anijain2305/566/base -> origin/gh/anijain2305/566/base 2025-04-25T04:11:47.5554731Z * [new branch] gh/anijain2305/566/head -> origin/gh/anijain2305/566/head 2025-04-25T04:11:47.5555271Z * [new branch] gh/anijain2305/566/orig -> origin/gh/anijain2305/566/orig 2025-04-25T04:11:47.5555825Z * [new branch] gh/anijain2305/580/base -> origin/gh/anijain2305/580/base 2025-04-25T04:11:47.5556363Z * [new branch] gh/anijain2305/580/head -> origin/gh/anijain2305/580/head 2025-04-25T04:11:47.5556910Z * [new branch] gh/anijain2305/580/orig -> origin/gh/anijain2305/580/orig 2025-04-25T04:11:47.5557464Z * [new branch] gh/anijain2305/634/base -> origin/gh/anijain2305/634/base 2025-04-25T04:11:47.5558012Z * [new branch] gh/anijain2305/634/head -> origin/gh/anijain2305/634/head 2025-04-25T04:11:47.5558559Z * [new branch] gh/anijain2305/634/orig -> origin/gh/anijain2305/634/orig 2025-04-25T04:11:47.5993652Z * [new branch] gh/anijain2305/668/base -> origin/gh/anijain2305/668/base 2025-04-25T04:11:47.5994487Z * [new branch] gh/anijain2305/668/head -> origin/gh/anijain2305/668/head 2025-04-25T04:11:47.5995045Z * [new branch] gh/anijain2305/668/orig -> origin/gh/anijain2305/668/orig 2025-04-25T04:11:47.5995587Z * [new branch] gh/anijain2305/675/base -> origin/gh/anijain2305/675/base 2025-04-25T04:11:47.5996130Z * [new branch] gh/anijain2305/675/head -> origin/gh/anijain2305/675/head 2025-04-25T04:11:47.5996670Z * [new branch] gh/anijain2305/675/orig -> origin/gh/anijain2305/675/orig 2025-04-25T04:11:47.5997218Z * [new branch] gh/anijain2305/682/base -> origin/gh/anijain2305/682/base 2025-04-25T04:11:47.5997756Z * [new branch] gh/anijain2305/682/head -> origin/gh/anijain2305/682/head 2025-04-25T04:11:47.5998295Z * [new branch] gh/anijain2305/682/orig -> origin/gh/anijain2305/682/orig 2025-04-25T04:11:47.5998840Z * [new branch] gh/anijain2305/684/base -> origin/gh/anijain2305/684/base 2025-04-25T04:11:47.5999367Z * [new branch] gh/anijain2305/684/head -> origin/gh/anijain2305/684/head 2025-04-25T04:11:47.5999909Z * [new branch] gh/anijain2305/684/orig -> origin/gh/anijain2305/684/orig 2025-04-25T04:11:47.6000452Z * [new branch] gh/anijain2305/697/base -> origin/gh/anijain2305/697/base 2025-04-25T04:11:47.6000991Z * [new branch] gh/anijain2305/697/head -> origin/gh/anijain2305/697/head 2025-04-25T04:11:47.6001530Z * [new branch] gh/anijain2305/697/orig -> origin/gh/anijain2305/697/orig 2025-04-25T04:11:47.6002066Z * [new branch] gh/anijain2305/700/base -> origin/gh/anijain2305/700/base 2025-04-25T04:11:47.6002606Z * [new branch] gh/anijain2305/700/head -> origin/gh/anijain2305/700/head 2025-04-25T04:11:47.6003285Z * [new branch] gh/anijain2305/700/orig -> origin/gh/anijain2305/700/orig 2025-04-25T04:11:47.6003827Z * [new branch] gh/anijain2305/704/base -> origin/gh/anijain2305/704/base 2025-04-25T04:11:47.6004455Z * [new branch] gh/anijain2305/704/head -> origin/gh/anijain2305/704/head 2025-04-25T04:11:47.6004996Z * [new branch] gh/anijain2305/704/orig -> origin/gh/anijain2305/704/orig 2025-04-25T04:11:47.6005555Z * [new branch] gh/anijain2305/706/base -> origin/gh/anijain2305/706/base 2025-04-25T04:11:47.6006105Z * [new branch] gh/anijain2305/706/head -> origin/gh/anijain2305/706/head 2025-04-25T04:11:47.6006638Z * [new branch] gh/anijain2305/706/orig -> origin/gh/anijain2305/706/orig 2025-04-25T04:11:47.6007181Z * [new branch] gh/anijain2305/707/base -> origin/gh/anijain2305/707/base 2025-04-25T04:11:47.6007723Z * [new branch] gh/anijain2305/707/head -> origin/gh/anijain2305/707/head 2025-04-25T04:11:47.6008278Z * [new branch] gh/anijain2305/707/orig -> origin/gh/anijain2305/707/orig 2025-04-25T04:11:47.6008844Z * [new branch] gh/anijain2305/708/base -> origin/gh/anijain2305/708/base 2025-04-25T04:11:47.6009379Z * [new branch] gh/anijain2305/708/head -> origin/gh/anijain2305/708/head 2025-04-25T04:11:47.6009920Z * [new branch] gh/anijain2305/708/orig -> origin/gh/anijain2305/708/orig 2025-04-25T04:11:47.6010453Z * [new branch] gh/anijain2305/709/base -> origin/gh/anijain2305/709/base 2025-04-25T04:11:47.6010995Z * [new branch] gh/anijain2305/709/head -> origin/gh/anijain2305/709/head 2025-04-25T04:11:47.6011545Z * [new branch] gh/anijain2305/709/orig -> origin/gh/anijain2305/709/orig 2025-04-25T04:11:47.6012084Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-04-25T04:11:47.6012740Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-04-25T04:11:47.6013279Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-04-25T04:11:47.6013824Z * [new branch] gh/anijain2305/711/base -> origin/gh/anijain2305/711/base 2025-04-25T04:11:47.6014378Z * [new branch] gh/anijain2305/711/head -> origin/gh/anijain2305/711/head 2025-04-25T04:11:47.6014918Z * [new branch] gh/anijain2305/711/orig -> origin/gh/anijain2305/711/orig 2025-04-25T04:11:47.6015464Z * [new branch] gh/anijain2305/712/base -> origin/gh/anijain2305/712/base 2025-04-25T04:11:47.6016004Z * [new branch] gh/anijain2305/712/head -> origin/gh/anijain2305/712/head 2025-04-25T04:11:47.6016549Z * [new branch] gh/anijain2305/712/orig -> origin/gh/anijain2305/712/orig 2025-04-25T04:11:47.6017086Z * [new branch] gh/anijain2305/713/base -> origin/gh/anijain2305/713/base 2025-04-25T04:11:47.6017636Z * [new branch] gh/anijain2305/713/head -> origin/gh/anijain2305/713/head 2025-04-25T04:11:47.6018177Z * [new branch] gh/anijain2305/713/orig -> origin/gh/anijain2305/713/orig 2025-04-25T04:11:47.6432473Z * [new branch] gh/anijain2305/714/base -> origin/gh/anijain2305/714/base 2025-04-25T04:11:47.6433522Z * [new branch] gh/anijain2305/714/head -> origin/gh/anijain2305/714/head 2025-04-25T04:11:47.6434504Z * [new branch] gh/anijain2305/714/orig -> origin/gh/anijain2305/714/orig 2025-04-25T04:11:47.6435469Z * [new branch] gh/anijain2305/715/base -> origin/gh/anijain2305/715/base 2025-04-25T04:11:47.6436436Z * [new branch] gh/anijain2305/715/head -> origin/gh/anijain2305/715/head 2025-04-25T04:11:47.6437619Z * [new branch] gh/anijain2305/715/orig -> origin/gh/anijain2305/715/orig 2025-04-25T04:11:47.6438601Z * [new branch] gh/anijain2305/716/base -> origin/gh/anijain2305/716/base 2025-04-25T04:11:47.6439580Z * [new branch] gh/anijain2305/716/head -> origin/gh/anijain2305/716/head 2025-04-25T04:11:47.6441742Z * [new branch] gh/anijain2305/716/orig -> origin/gh/anijain2305/716/orig 2025-04-25T04:11:47.6442713Z * [new branch] gh/anijain2305/717/base -> origin/gh/anijain2305/717/base 2025-04-25T04:11:47.6443669Z * [new branch] gh/anijain2305/717/head -> origin/gh/anijain2305/717/head 2025-04-25T04:11:47.6444724Z * [new branch] gh/anijain2305/717/orig -> origin/gh/anijain2305/717/orig 2025-04-25T04:11:47.6445690Z * [new branch] gh/anijain2305/718/base -> origin/gh/anijain2305/718/base 2025-04-25T04:11:47.6446649Z * [new branch] gh/anijain2305/718/head -> origin/gh/anijain2305/718/head 2025-04-25T04:11:47.6447621Z * [new branch] gh/anijain2305/718/orig -> origin/gh/anijain2305/718/orig 2025-04-25T04:11:47.6448577Z * [new branch] gh/anijain2305/719/base -> origin/gh/anijain2305/719/base 2025-04-25T04:11:47.6449543Z * [new branch] gh/anijain2305/719/head -> origin/gh/anijain2305/719/head 2025-04-25T04:11:47.6450510Z * [new branch] gh/anijain2305/719/orig -> origin/gh/anijain2305/719/orig 2025-04-25T04:11:47.6452060Z * [new branch] gh/anijain2305/720/base -> origin/gh/anijain2305/720/base 2025-04-25T04:11:47.6453034Z * [new branch] gh/anijain2305/720/head -> origin/gh/anijain2305/720/head 2025-04-25T04:11:47.6453992Z * [new branch] gh/anijain2305/720/orig -> origin/gh/anijain2305/720/orig 2025-04-25T04:11:47.6454968Z * [new branch] gh/anijain2305/721/base -> origin/gh/anijain2305/721/base 2025-04-25T04:11:47.6455931Z * [new branch] gh/anijain2305/721/head -> origin/gh/anijain2305/721/head 2025-04-25T04:11:47.6457714Z * [new branch] gh/anijain2305/721/orig -> origin/gh/anijain2305/721/orig 2025-04-25T04:11:47.6458686Z * [new branch] gh/anijain2305/722/base -> origin/gh/anijain2305/722/base 2025-04-25T04:11:47.6459647Z * [new branch] gh/anijain2305/722/head -> origin/gh/anijain2305/722/head 2025-04-25T04:11:47.6460613Z * [new branch] gh/anijain2305/722/orig -> origin/gh/anijain2305/722/orig 2025-04-25T04:11:47.6461572Z * [new branch] gh/anijain2305/723/base -> origin/gh/anijain2305/723/base 2025-04-25T04:11:47.6462547Z * [new branch] gh/anijain2305/723/head -> origin/gh/anijain2305/723/head 2025-04-25T04:11:47.6463508Z * [new branch] gh/anijain2305/723/orig -> origin/gh/anijain2305/723/orig 2025-04-25T04:11:47.6464464Z * [new branch] gh/anijain2305/724/base -> origin/gh/anijain2305/724/base 2025-04-25T04:11:47.6465446Z * [new branch] gh/anijain2305/724/head -> origin/gh/anijain2305/724/head 2025-04-25T04:11:47.6466410Z * [new branch] gh/anijain2305/724/orig -> origin/gh/anijain2305/724/orig 2025-04-25T04:11:47.6467380Z * [new branch] gh/anijain2305/725/base -> origin/gh/anijain2305/725/base 2025-04-25T04:11:47.6468352Z * [new branch] gh/anijain2305/725/head -> origin/gh/anijain2305/725/head 2025-04-25T04:11:47.6469309Z * [new branch] gh/anijain2305/725/orig -> origin/gh/anijain2305/725/orig 2025-04-25T04:11:47.6470281Z * [new branch] gh/anijain2305/726/base -> origin/gh/anijain2305/726/base 2025-04-25T04:11:47.6471249Z * [new branch] gh/anijain2305/726/head -> origin/gh/anijain2305/726/head 2025-04-25T04:11:47.6472217Z * [new branch] gh/anijain2305/726/orig -> origin/gh/anijain2305/726/orig 2025-04-25T04:11:47.6473316Z * [new branch] gh/anijain2305/727/base -> origin/gh/anijain2305/727/base 2025-04-25T04:11:47.6474289Z * [new branch] gh/anijain2305/727/head -> origin/gh/anijain2305/727/head 2025-04-25T04:11:47.6475264Z * [new branch] gh/anijain2305/727/orig -> origin/gh/anijain2305/727/orig 2025-04-25T04:11:47.6476227Z * [new branch] gh/anijain2305/728/base -> origin/gh/anijain2305/728/base 2025-04-25T04:11:47.6477203Z * [new branch] gh/anijain2305/728/head -> origin/gh/anijain2305/728/head 2025-04-25T04:11:47.6478169Z * [new branch] gh/anijain2305/728/orig -> origin/gh/anijain2305/728/orig 2025-04-25T04:11:47.6896953Z * [new branch] gh/anijain2305/729/base -> origin/gh/anijain2305/729/base 2025-04-25T04:11:47.6897570Z * [new branch] gh/anijain2305/729/head -> origin/gh/anijain2305/729/head 2025-04-25T04:11:47.6898122Z * [new branch] gh/anijain2305/729/orig -> origin/gh/anijain2305/729/orig 2025-04-25T04:11:47.6898714Z * [new branch] gh/anijain2305/730/base -> origin/gh/anijain2305/730/base 2025-04-25T04:11:47.6899404Z * [new branch] gh/anijain2305/730/head -> origin/gh/anijain2305/730/head 2025-04-25T04:11:47.6900021Z * [new branch] gh/anijain2305/730/orig -> origin/gh/anijain2305/730/orig 2025-04-25T04:11:47.6900567Z * [new branch] gh/anijain2305/731/base -> origin/gh/anijain2305/731/base 2025-04-25T04:11:47.6901102Z * [new branch] gh/anijain2305/731/head -> origin/gh/anijain2305/731/head 2025-04-25T04:11:47.6901652Z * [new branch] gh/anijain2305/731/orig -> origin/gh/anijain2305/731/orig 2025-04-25T04:11:47.6902193Z * [new branch] gh/anijain2305/732/base -> origin/gh/anijain2305/732/base 2025-04-25T04:11:47.6902725Z * [new branch] gh/anijain2305/732/head -> origin/gh/anijain2305/732/head 2025-04-25T04:11:47.6903277Z * [new branch] gh/anijain2305/732/orig -> origin/gh/anijain2305/732/orig 2025-04-25T04:11:47.6904028Z * [new branch] gh/anijain2305/733/base -> origin/gh/anijain2305/733/base 2025-04-25T04:11:47.6904576Z * [new branch] gh/anijain2305/733/head -> origin/gh/anijain2305/733/head 2025-04-25T04:11:47.6905116Z * [new branch] gh/anijain2305/733/orig -> origin/gh/anijain2305/733/orig 2025-04-25T04:11:47.6905654Z * [new branch] gh/anijain2305/734/base -> origin/gh/anijain2305/734/base 2025-04-25T04:11:47.6906200Z * [new branch] gh/anijain2305/734/head -> origin/gh/anijain2305/734/head 2025-04-25T04:11:47.6906732Z * [new branch] gh/anijain2305/734/orig -> origin/gh/anijain2305/734/orig 2025-04-25T04:11:47.6907274Z * [new branch] gh/anijain2305/735/base -> origin/gh/anijain2305/735/base 2025-04-25T04:11:47.6907820Z * [new branch] gh/anijain2305/735/head -> origin/gh/anijain2305/735/head 2025-04-25T04:11:47.6908364Z * [new branch] gh/anijain2305/735/orig -> origin/gh/anijain2305/735/orig 2025-04-25T04:11:47.6908917Z * [new branch] gh/anijain2305/736/base -> origin/gh/anijain2305/736/base 2025-04-25T04:11:47.6909450Z * [new branch] gh/anijain2305/736/head -> origin/gh/anijain2305/736/head 2025-04-25T04:11:47.6909994Z * [new branch] gh/anijain2305/736/orig -> origin/gh/anijain2305/736/orig 2025-04-25T04:11:47.6910532Z * [new branch] gh/anijain2305/737/base -> origin/gh/anijain2305/737/base 2025-04-25T04:11:47.6911105Z * [new branch] gh/anijain2305/737/head -> origin/gh/anijain2305/737/head 2025-04-25T04:11:47.6911643Z * [new branch] gh/anijain2305/737/orig -> origin/gh/anijain2305/737/orig 2025-04-25T04:11:47.6912174Z * [new branch] gh/anijain2305/738/base -> origin/gh/anijain2305/738/base 2025-04-25T04:11:47.6913925Z * [new branch] gh/anijain2305/738/head -> origin/gh/anijain2305/738/head 2025-04-25T04:11:47.6914537Z * [new branch] gh/anijain2305/738/orig -> origin/gh/anijain2305/738/orig 2025-04-25T04:11:47.6915194Z * [new branch] gh/anijain2305/739/base -> origin/gh/anijain2305/739/base 2025-04-25T04:11:47.6915835Z * [new branch] gh/anijain2305/739/head -> origin/gh/anijain2305/739/head 2025-04-25T04:11:47.6916408Z * [new branch] gh/anijain2305/739/orig -> origin/gh/anijain2305/739/orig 2025-04-25T04:11:47.6916950Z * [new branch] gh/anijain2305/740/base -> origin/gh/anijain2305/740/base 2025-04-25T04:11:47.6917496Z * [new branch] gh/anijain2305/740/head -> origin/gh/anijain2305/740/head 2025-04-25T04:11:47.6918032Z * [new branch] gh/anijain2305/740/orig -> origin/gh/anijain2305/740/orig 2025-04-25T04:11:47.6918563Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-04-25T04:11:47.6919105Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-04-25T04:11:47.6919632Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-04-25T04:11:47.6920154Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-04-25T04:11:47.6920680Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-04-25T04:11:47.6921207Z * [new branch] gh/aorenste/222/base -> origin/gh/aorenste/222/base 2025-04-25T04:11:47.6921721Z * [new branch] gh/aorenste/222/head -> origin/gh/aorenste/222/head 2025-04-25T04:11:47.6922236Z * [new branch] gh/aorenste/222/orig -> origin/gh/aorenste/222/orig 2025-04-25T04:11:47.6922749Z * [new branch] gh/aorenste/223/base -> origin/gh/aorenste/223/base 2025-04-25T04:11:47.7385497Z * [new branch] gh/aorenste/223/head -> origin/gh/aorenste/223/head 2025-04-25T04:11:47.7386717Z * [new branch] gh/aorenste/223/orig -> origin/gh/aorenste/223/orig 2025-04-25T04:11:47.7387636Z * [new branch] gh/aorenste/224/base -> origin/gh/aorenste/224/base 2025-04-25T04:11:47.7388566Z * [new branch] gh/aorenste/224/head -> origin/gh/aorenste/224/head 2025-04-25T04:11:47.7389471Z * [new branch] gh/aorenste/224/orig -> origin/gh/aorenste/224/orig 2025-04-25T04:11:47.7390444Z * [new branch] gh/avikchaudhuri/59/base -> origin/gh/avikchaudhuri/59/base 2025-04-25T04:11:47.7391480Z * [new branch] gh/avikchaudhuri/59/head -> origin/gh/avikchaudhuri/59/head 2025-04-25T04:11:47.7392499Z * [new branch] gh/avikchaudhuri/59/orig -> origin/gh/avikchaudhuri/59/orig 2025-04-25T04:11:47.7393469Z * [new branch] gh/bdhirsh/604/base -> origin/gh/bdhirsh/604/base 2025-04-25T04:11:47.7394405Z * [new branch] gh/bdhirsh/604/head -> origin/gh/bdhirsh/604/head 2025-04-25T04:11:47.7395298Z * [new branch] gh/bdhirsh/604/orig -> origin/gh/bdhirsh/604/orig 2025-04-25T04:11:47.7396196Z * [new branch] gh/bdhirsh/636/base -> origin/gh/bdhirsh/636/base 2025-04-25T04:11:47.7397089Z * [new branch] gh/bdhirsh/636/head -> origin/gh/bdhirsh/636/head 2025-04-25T04:11:47.7397987Z * [new branch] gh/bdhirsh/636/orig -> origin/gh/bdhirsh/636/orig 2025-04-25T04:11:47.7398899Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-04-25T04:11:47.7399785Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-04-25T04:11:47.7400677Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-04-25T04:11:47.7401552Z * [new branch] gh/bdhirsh/648/base -> origin/gh/bdhirsh/648/base 2025-04-25T04:11:47.7402591Z * [new branch] gh/bdhirsh/648/head -> origin/gh/bdhirsh/648/head 2025-04-25T04:11:47.7403484Z * [new branch] gh/bdhirsh/648/orig -> origin/gh/bdhirsh/648/orig 2025-04-25T04:11:47.7404506Z * [new branch] gh/bdhirsh/649/base -> origin/gh/bdhirsh/649/base 2025-04-25T04:11:47.7405400Z * [new branch] gh/bdhirsh/649/head -> origin/gh/bdhirsh/649/head 2025-04-25T04:11:47.7406290Z * [new branch] gh/bdhirsh/649/orig -> origin/gh/bdhirsh/649/orig 2025-04-25T04:11:47.7407184Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-04-25T04:11:47.7408073Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-04-25T04:11:47.7408964Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-04-25T04:11:47.7409858Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-04-25T04:11:47.7411976Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-04-25T04:11:47.7412886Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-04-25T04:11:47.7413778Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-04-25T04:11:47.7414674Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-04-25T04:11:47.7415567Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-04-25T04:11:47.7416450Z * [new branch] gh/bdhirsh/653/base -> origin/gh/bdhirsh/653/base 2025-04-25T04:11:47.7417338Z * [new branch] gh/bdhirsh/653/head -> origin/gh/bdhirsh/653/head 2025-04-25T04:11:47.7418225Z * [new branch] gh/bdhirsh/653/orig -> origin/gh/bdhirsh/653/orig 2025-04-25T04:11:47.7419136Z * [new branch] gh/bdhirsh/654/base -> origin/gh/bdhirsh/654/base 2025-04-25T04:11:47.7420203Z * [new branch] gh/bdhirsh/654/head -> origin/gh/bdhirsh/654/head 2025-04-25T04:11:47.7421094Z * [new branch] gh/bdhirsh/654/orig -> origin/gh/bdhirsh/654/orig 2025-04-25T04:11:47.7421994Z * [new branch] gh/bdhirsh/655/base -> origin/gh/bdhirsh/655/base 2025-04-25T04:11:47.7422890Z * [new branch] gh/bdhirsh/655/head -> origin/gh/bdhirsh/655/head 2025-04-25T04:11:47.7423793Z * [new branch] gh/bdhirsh/655/orig -> origin/gh/bdhirsh/655/orig 2025-04-25T04:11:47.7424764Z * [new branch] gh/benjaminglass1/51/base -> origin/gh/benjaminglass1/51/base 2025-04-25T04:11:47.7425817Z * [new branch] gh/benjaminglass1/51/head -> origin/gh/benjaminglass1/51/head 2025-04-25T04:11:47.7426927Z * [new branch] gh/benjaminglass1/51/orig -> origin/gh/benjaminglass1/51/orig 2025-04-25T04:11:47.7427982Z * [new branch] gh/benjaminglass1/67/base -> origin/gh/benjaminglass1/67/base 2025-04-25T04:11:47.7429035Z * [new branch] gh/benjaminglass1/67/head -> origin/gh/benjaminglass1/67/head 2025-04-25T04:11:47.7430075Z * [new branch] gh/benjaminglass1/67/orig -> origin/gh/benjaminglass1/67/orig 2025-04-25T04:11:47.8345519Z * [new branch] gh/benjaminglass1/72/base -> origin/gh/benjaminglass1/72/base 2025-04-25T04:11:47.8346208Z * [new branch] gh/benjaminglass1/72/head -> origin/gh/benjaminglass1/72/head 2025-04-25T04:11:47.8346801Z * [new branch] gh/benjaminglass1/72/orig -> origin/gh/benjaminglass1/72/orig 2025-04-25T04:11:47.8347404Z * [new branch] gh/benjaminglass1/77/base -> origin/gh/benjaminglass1/77/base 2025-04-25T04:11:47.8347990Z * [new branch] gh/benjaminglass1/77/head -> origin/gh/benjaminglass1/77/head 2025-04-25T04:11:47.8348792Z * [new branch] gh/benjaminglass1/77/orig -> origin/gh/benjaminglass1/77/orig 2025-04-25T04:11:47.8349405Z * [new branch] gh/benjaminglass1/78/base -> origin/gh/benjaminglass1/78/base 2025-04-25T04:11:47.8349985Z * [new branch] gh/benjaminglass1/78/head -> origin/gh/benjaminglass1/78/head 2025-04-25T04:11:47.8350579Z * [new branch] gh/benjaminglass1/78/orig -> origin/gh/benjaminglass1/78/orig 2025-04-25T04:11:47.8351164Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-04-25T04:11:47.8351738Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-04-25T04:11:47.8352319Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-04-25T04:11:47.8352912Z * [new branch] gh/benjaminglass1/80/base -> origin/gh/benjaminglass1/80/base 2025-04-25T04:11:47.8353508Z * [new branch] gh/benjaminglass1/80/head -> origin/gh/benjaminglass1/80/head 2025-04-25T04:11:47.8354091Z * [new branch] gh/benjaminglass1/80/orig -> origin/gh/benjaminglass1/80/orig 2025-04-25T04:11:47.8354665Z * [new branch] gh/benjaminglass1/81/base -> origin/gh/benjaminglass1/81/base 2025-04-25T04:11:47.8355319Z * [new branch] gh/benjaminglass1/81/head -> origin/gh/benjaminglass1/81/head 2025-04-25T04:11:47.8355946Z * [new branch] gh/benjaminglass1/81/orig -> origin/gh/benjaminglass1/81/orig 2025-04-25T04:11:47.8356577Z * [new branch] gh/benjaminglass1/82/base -> origin/gh/benjaminglass1/82/base 2025-04-25T04:11:47.8357266Z * [new branch] gh/benjaminglass1/82/head -> origin/gh/benjaminglass1/82/head 2025-04-25T04:11:47.8357886Z * [new branch] gh/benjaminglass1/82/orig -> origin/gh/benjaminglass1/82/orig 2025-04-25T04:11:47.8358519Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-04-25T04:11:47.8359095Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-04-25T04:11:47.8359815Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-04-25T04:11:47.8360374Z * [new branch] gh/bertmaher/1/base -> origin/gh/bertmaher/1/base 2025-04-25T04:11:47.8360902Z * [new branch] gh/bertmaher/1/head -> origin/gh/bertmaher/1/head 2025-04-25T04:11:47.8361424Z * [new branch] gh/bertmaher/1/orig -> origin/gh/bertmaher/1/orig 2025-04-25T04:11:47.8361935Z * [new branch] gh/bertmaher/2/base -> origin/gh/bertmaher/2/base 2025-04-25T04:11:47.8362453Z * [new branch] gh/bertmaher/2/head -> origin/gh/bertmaher/2/head 2025-04-25T04:11:47.8362956Z * [new branch] gh/bertmaher/2/orig -> origin/gh/bertmaher/2/orig 2025-04-25T04:11:47.8363554Z * [new branch] gh/bobrenjc93/207/base -> origin/gh/bobrenjc93/207/base 2025-04-25T04:11:47.8364156Z * [new branch] gh/bobrenjc93/207/head -> origin/gh/bobrenjc93/207/head 2025-04-25T04:11:47.8364840Z * [new branch] gh/bobrenjc93/207/orig -> origin/gh/bobrenjc93/207/orig 2025-04-25T04:11:47.8365479Z * [new branch] gh/bobrenjc93/270/base -> origin/gh/bobrenjc93/270/base 2025-04-25T04:11:47.8366058Z * [new branch] gh/bobrenjc93/270/head -> origin/gh/bobrenjc93/270/head 2025-04-25T04:11:47.8366657Z * [new branch] gh/bobrenjc93/270/orig -> origin/gh/bobrenjc93/270/orig 2025-04-25T04:11:47.8367293Z * [new branch] gh/bobrenjc93/273/base -> origin/gh/bobrenjc93/273/base 2025-04-25T04:11:47.8367895Z * [new branch] gh/bobrenjc93/273/head -> origin/gh/bobrenjc93/273/head 2025-04-25T04:11:47.8368486Z * [new branch] gh/bobrenjc93/273/orig -> origin/gh/bobrenjc93/273/orig 2025-04-25T04:11:47.8386521Z * [new branch] gh/bobrenjc93/276/base -> origin/gh/bobrenjc93/276/base 2025-04-25T04:11:47.8387400Z * [new branch] gh/bobrenjc93/276/head -> origin/gh/bobrenjc93/276/head 2025-04-25T04:11:47.8388073Z * [new branch] gh/bobrenjc93/276/orig -> origin/gh/bobrenjc93/276/orig 2025-04-25T04:11:47.8388684Z * [new branch] gh/bobrenjc93/300/base -> origin/gh/bobrenjc93/300/base 2025-04-25T04:11:47.8389273Z * [new branch] gh/bobrenjc93/300/head -> origin/gh/bobrenjc93/300/head 2025-04-25T04:11:47.8389934Z * [new branch] gh/bobrenjc93/300/orig -> origin/gh/bobrenjc93/300/orig 2025-04-25T04:11:47.9096622Z * [new branch] gh/bobrenjc93/301/base -> origin/gh/bobrenjc93/301/base 2025-04-25T04:11:47.9097218Z * [new branch] gh/bobrenjc93/301/head -> origin/gh/bobrenjc93/301/head 2025-04-25T04:11:47.9097816Z * [new branch] gh/bobrenjc93/301/orig -> origin/gh/bobrenjc93/301/orig 2025-04-25T04:11:47.9098390Z * [new branch] gh/bobrenjc93/302/base -> origin/gh/bobrenjc93/302/base 2025-04-25T04:11:47.9098951Z * [new branch] gh/bobrenjc93/302/head -> origin/gh/bobrenjc93/302/head 2025-04-25T04:11:47.9099508Z * [new branch] gh/bobrenjc93/302/orig -> origin/gh/bobrenjc93/302/orig 2025-04-25T04:11:47.9100054Z * [new branch] gh/bobrenjc93/303/base -> origin/gh/bobrenjc93/303/base 2025-04-25T04:11:47.9100619Z * [new branch] gh/bobrenjc93/303/head -> origin/gh/bobrenjc93/303/head 2025-04-25T04:11:47.9101158Z * [new branch] gh/bobrenjc93/303/orig -> origin/gh/bobrenjc93/303/orig 2025-04-25T04:11:47.9101720Z * [new branch] gh/bobrenjc93/304/base -> origin/gh/bobrenjc93/304/base 2025-04-25T04:11:47.9102288Z * [new branch] gh/bobrenjc93/304/head -> origin/gh/bobrenjc93/304/head 2025-04-25T04:11:47.9102836Z * [new branch] gh/bobrenjc93/304/orig -> origin/gh/bobrenjc93/304/orig 2025-04-25T04:11:47.9103588Z * [new branch] gh/bobrenjc93/305/base -> origin/gh/bobrenjc93/305/base 2025-04-25T04:11:47.9104134Z * [new branch] gh/bobrenjc93/305/head -> origin/gh/bobrenjc93/305/head 2025-04-25T04:11:47.9104703Z * [new branch] gh/bobrenjc93/305/orig -> origin/gh/bobrenjc93/305/orig 2025-04-25T04:11:47.9105248Z * [new branch] gh/bobrenjc93/306/base -> origin/gh/bobrenjc93/306/base 2025-04-25T04:11:47.9105822Z * [new branch] gh/bobrenjc93/306/head -> origin/gh/bobrenjc93/306/head 2025-04-25T04:11:47.9106384Z * [new branch] gh/bobrenjc93/306/orig -> origin/gh/bobrenjc93/306/orig 2025-04-25T04:11:47.9106927Z * [new branch] gh/bobrenjc93/307/base -> origin/gh/bobrenjc93/307/base 2025-04-25T04:11:47.9107492Z * [new branch] gh/bobrenjc93/307/head -> origin/gh/bobrenjc93/307/head 2025-04-25T04:11:47.9108040Z * [new branch] gh/bobrenjc93/307/orig -> origin/gh/bobrenjc93/307/orig 2025-04-25T04:11:47.9108610Z * [new branch] gh/bobrenjc93/308/base -> origin/gh/bobrenjc93/308/base 2025-04-25T04:11:47.9109165Z * [new branch] gh/bobrenjc93/308/head -> origin/gh/bobrenjc93/308/head 2025-04-25T04:11:47.9109708Z * [new branch] gh/bobrenjc93/308/orig -> origin/gh/bobrenjc93/308/orig 2025-04-25T04:11:47.9110271Z * [new branch] gh/bobrenjc93/309/base -> origin/gh/bobrenjc93/309/base 2025-04-25T04:11:47.9110814Z * [new branch] gh/bobrenjc93/309/head -> origin/gh/bobrenjc93/309/head 2025-04-25T04:11:47.9111367Z * [new branch] gh/bobrenjc93/309/orig -> origin/gh/bobrenjc93/309/orig 2025-04-25T04:11:47.9111927Z * [new branch] gh/bobrenjc93/310/base -> origin/gh/bobrenjc93/310/base 2025-04-25T04:11:47.9112592Z * [new branch] gh/bobrenjc93/310/head -> origin/gh/bobrenjc93/310/head 2025-04-25T04:11:47.9113169Z * [new branch] gh/bobrenjc93/310/orig -> origin/gh/bobrenjc93/310/orig 2025-04-25T04:11:47.9113705Z * [new branch] gh/bobrenjc93/311/base -> origin/gh/bobrenjc93/311/base 2025-04-25T04:11:47.9114257Z * [new branch] gh/bobrenjc93/311/head -> origin/gh/bobrenjc93/311/head 2025-04-25T04:11:47.9114820Z * [new branch] gh/bobrenjc93/311/orig -> origin/gh/bobrenjc93/311/orig 2025-04-25T04:11:47.9115361Z * [new branch] gh/bobrenjc93/312/base -> origin/gh/bobrenjc93/312/base 2025-04-25T04:11:47.9115926Z * [new branch] gh/bobrenjc93/312/head -> origin/gh/bobrenjc93/312/head 2025-04-25T04:11:47.9116468Z * [new branch] gh/bobrenjc93/312/orig -> origin/gh/bobrenjc93/312/orig 2025-04-25T04:11:47.9117024Z * [new branch] gh/bobrenjc93/313/base -> origin/gh/bobrenjc93/313/base 2025-04-25T04:11:47.9117582Z * [new branch] gh/bobrenjc93/313/head -> origin/gh/bobrenjc93/313/head 2025-04-25T04:11:47.9118131Z * [new branch] gh/bobrenjc93/313/orig -> origin/gh/bobrenjc93/313/orig 2025-04-25T04:11:47.9118692Z * [new branch] gh/bobrenjc93/314/base -> origin/gh/bobrenjc93/314/base 2025-04-25T04:11:47.9119240Z * [new branch] gh/bobrenjc93/314/head -> origin/gh/bobrenjc93/314/head 2025-04-25T04:11:47.9119803Z * [new branch] gh/bobrenjc93/314/orig -> origin/gh/bobrenjc93/314/orig 2025-04-25T04:11:47.9120359Z * [new branch] gh/bobrenjc93/315/base -> origin/gh/bobrenjc93/315/base 2025-04-25T04:11:47.9120895Z * [new branch] gh/bobrenjc93/315/head -> origin/gh/bobrenjc93/315/head 2025-04-25T04:11:47.9121449Z * [new branch] gh/bobrenjc93/315/orig -> origin/gh/bobrenjc93/315/orig 2025-04-25T04:11:47.9567353Z * [new branch] gh/bobrenjc93/316/base -> origin/gh/bobrenjc93/316/base 2025-04-25T04:11:47.9568624Z * [new branch] gh/bobrenjc93/316/head -> origin/gh/bobrenjc93/316/head 2025-04-25T04:11:47.9569610Z * [new branch] gh/bobrenjc93/316/orig -> origin/gh/bobrenjc93/316/orig 2025-04-25T04:11:47.9571756Z * [new branch] gh/bobrenjc93/317/base -> origin/gh/bobrenjc93/317/base 2025-04-25T04:11:47.9572751Z * [new branch] gh/bobrenjc93/317/head -> origin/gh/bobrenjc93/317/head 2025-04-25T04:11:47.9573714Z * [new branch] gh/bobrenjc93/317/orig -> origin/gh/bobrenjc93/317/orig 2025-04-25T04:11:47.9574696Z * [new branch] gh/bobrenjc93/318/base -> origin/gh/bobrenjc93/318/base 2025-04-25T04:11:47.9575681Z * [new branch] gh/bobrenjc93/318/head -> origin/gh/bobrenjc93/318/head 2025-04-25T04:11:47.9577652Z * [new branch] gh/bobrenjc93/318/orig -> origin/gh/bobrenjc93/318/orig 2025-04-25T04:11:47.9578651Z * [new branch] gh/bobrenjc93/319/base -> origin/gh/bobrenjc93/319/base 2025-04-25T04:11:47.9579615Z * [new branch] gh/bobrenjc93/319/head -> origin/gh/bobrenjc93/319/head 2025-04-25T04:11:47.9580599Z * [new branch] gh/bobrenjc93/319/orig -> origin/gh/bobrenjc93/319/orig 2025-04-25T04:11:47.9581569Z * [new branch] gh/bobrenjc93/320/base -> origin/gh/bobrenjc93/320/base 2025-04-25T04:11:47.9583545Z * [new branch] gh/bobrenjc93/320/head -> origin/gh/bobrenjc93/320/head 2025-04-25T04:11:47.9584529Z * [new branch] gh/bobrenjc93/320/orig -> origin/gh/bobrenjc93/320/orig 2025-04-25T04:11:47.9585491Z * [new branch] gh/bobrenjc93/321/base -> origin/gh/bobrenjc93/321/base 2025-04-25T04:11:47.9586474Z * [new branch] gh/bobrenjc93/321/head -> origin/gh/bobrenjc93/321/head 2025-04-25T04:11:47.9587615Z * [new branch] gh/bobrenjc93/321/orig -> origin/gh/bobrenjc93/321/orig 2025-04-25T04:11:47.9589614Z * [new branch] gh/bobrenjc93/322/base -> origin/gh/bobrenjc93/322/base 2025-04-25T04:11:47.9590604Z * [new branch] gh/bobrenjc93/322/head -> origin/gh/bobrenjc93/322/head 2025-04-25T04:11:47.9591557Z * [new branch] gh/bobrenjc93/322/orig -> origin/gh/bobrenjc93/322/orig 2025-04-25T04:11:47.9592529Z * [new branch] gh/bobrenjc93/323/base -> origin/gh/bobrenjc93/323/base 2025-04-25T04:11:47.9593496Z * [new branch] gh/bobrenjc93/323/head -> origin/gh/bobrenjc93/323/head 2025-04-25T04:11:47.9595464Z * [new branch] gh/bobrenjc93/323/orig -> origin/gh/bobrenjc93/323/orig 2025-04-25T04:11:47.9596446Z * [new branch] gh/bobrenjc93/324/base -> origin/gh/bobrenjc93/324/base 2025-04-25T04:11:47.9597413Z * [new branch] gh/bobrenjc93/324/head -> origin/gh/bobrenjc93/324/head 2025-04-25T04:11:47.9598386Z * [new branch] gh/bobrenjc93/324/orig -> origin/gh/bobrenjc93/324/orig 2025-04-25T04:11:47.9599342Z * [new branch] gh/bobrenjc93/325/base -> origin/gh/bobrenjc93/325/base 2025-04-25T04:11:47.9601327Z * [new branch] gh/bobrenjc93/325/head -> origin/gh/bobrenjc93/325/head 2025-04-25T04:11:47.9602295Z * [new branch] gh/bobrenjc93/325/orig -> origin/gh/bobrenjc93/325/orig 2025-04-25T04:11:47.9603288Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-04-25T04:11:47.9604413Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-04-25T04:11:47.9605335Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-04-25T04:11:47.9607210Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-04-25T04:11:47.9608038Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-04-25T04:11:47.9608982Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-04-25T04:11:47.9609798Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-04-25T04:11:47.9610592Z * [new branch] gh/c00w/43/base -> origin/gh/c00w/43/base 2025-04-25T04:11:47.9611975Z * [new branch] gh/c00w/43/head -> origin/gh/c00w/43/head 2025-04-25T04:11:47.9613224Z * [new branch] gh/c00w/43/orig -> origin/gh/c00w/43/orig 2025-04-25T04:11:47.9614027Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-04-25T04:11:47.9614846Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-04-25T04:11:47.9615639Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-04-25T04:11:47.9616518Z * [new branch] gh/chenyang78/1/base -> origin/gh/chenyang78/1/base 2025-04-25T04:11:47.9618488Z * [new branch] gh/chenyang78/1/head -> origin/gh/chenyang78/1/head 2025-04-25T04:11:47.9619427Z * [new branch] gh/chenyang78/1/orig -> origin/gh/chenyang78/1/orig 2025-04-25T04:11:47.9620352Z * [new branch] gh/chillee/376/base -> origin/gh/chillee/376/base 2025-04-25T04:11:48.0038995Z * [new branch] gh/chillee/376/head -> origin/gh/chillee/376/head 2025-04-25T04:11:48.0039940Z * [new branch] gh/chillee/376/orig -> origin/gh/chillee/376/orig 2025-04-25T04:11:48.0040861Z * [new branch] gh/chillee/377/base -> origin/gh/chillee/377/base 2025-04-25T04:11:48.0041756Z * [new branch] gh/chillee/377/head -> origin/gh/chillee/377/head 2025-04-25T04:11:48.0042639Z * [new branch] gh/chillee/377/orig -> origin/gh/chillee/377/orig 2025-04-25T04:11:48.0043797Z * [new branch] gh/chunyuan-w/1/base -> origin/gh/chunyuan-w/1/base 2025-04-25T04:11:48.0044849Z * [new branch] gh/chunyuan-w/1/head -> origin/gh/chunyuan-w/1/head 2025-04-25T04:11:48.0045758Z * [new branch] gh/chunyuan-w/1/orig -> origin/gh/chunyuan-w/1/orig 2025-04-25T04:11:48.0046659Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-04-25T04:11:48.0047515Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-04-25T04:11:48.0048375Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-04-25T04:11:48.0049236Z * [new branch] gh/clee2000/4/base -> origin/gh/clee2000/4/base 2025-04-25T04:11:48.0050093Z * [new branch] gh/clee2000/4/head -> origin/gh/clee2000/4/head 2025-04-25T04:11:48.0050949Z * [new branch] gh/clee2000/4/orig -> origin/gh/clee2000/4/orig 2025-04-25T04:11:48.0051811Z * [new branch] gh/clee2000/5/base -> origin/gh/clee2000/5/base 2025-04-25T04:11:48.0052668Z * [new branch] gh/clee2000/5/head -> origin/gh/clee2000/5/head 2025-04-25T04:11:48.0053519Z * [new branch] gh/clee2000/5/orig -> origin/gh/clee2000/5/orig 2025-04-25T04:11:48.0054381Z * [new branch] gh/clee2000/6/base -> origin/gh/clee2000/6/base 2025-04-25T04:11:48.0055238Z * [new branch] gh/clee2000/6/head -> origin/gh/clee2000/6/head 2025-04-25T04:11:48.0056085Z * [new branch] gh/clee2000/6/orig -> origin/gh/clee2000/6/orig 2025-04-25T04:11:48.0056936Z * [new branch] gh/clee2000/7/base -> origin/gh/clee2000/7/base 2025-04-25T04:11:48.0057783Z * [new branch] gh/clee2000/7/head -> origin/gh/clee2000/7/head 2025-04-25T04:11:48.0058639Z * [new branch] gh/clee2000/7/orig -> origin/gh/clee2000/7/orig 2025-04-25T04:11:48.0059509Z * [new branch] gh/clee2000/8/base -> origin/gh/clee2000/8/base 2025-04-25T04:11:48.0060515Z * [new branch] gh/clee2000/8/head -> origin/gh/clee2000/8/head 2025-04-25T04:11:48.0061377Z * [new branch] gh/clee2000/8/orig -> origin/gh/clee2000/8/orig 2025-04-25T04:11:48.0062324Z * [new branch] gh/davidberard98/230/base -> origin/gh/davidberard98/230/base 2025-04-25T04:11:48.0063371Z * [new branch] gh/davidberard98/230/head -> origin/gh/davidberard98/230/head 2025-04-25T04:11:48.0064409Z * [new branch] gh/davidberard98/230/orig -> origin/gh/davidberard98/230/orig 2025-04-25T04:11:48.0065454Z * [new branch] gh/davidberard98/335/base -> origin/gh/davidberard98/335/base 2025-04-25T04:11:48.0066494Z * [new branch] gh/davidberard98/335/head -> origin/gh/davidberard98/335/head 2025-04-25T04:11:48.0067524Z * [new branch] gh/davidberard98/335/orig -> origin/gh/davidberard98/335/orig 2025-04-25T04:11:48.0068572Z * [new branch] gh/davidberard98/343/base -> origin/gh/davidberard98/343/base 2025-04-25T04:11:48.0069604Z * [new branch] gh/davidberard98/343/head -> origin/gh/davidberard98/343/head 2025-04-25T04:11:48.0070640Z * [new branch] gh/davidberard98/343/orig -> origin/gh/davidberard98/343/orig 2025-04-25T04:11:48.0071679Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-04-25T04:11:48.0072713Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-04-25T04:11:48.0073755Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-04-25T04:11:48.0075161Z * [new branch] gh/davidberard98/348/base -> origin/gh/davidberard98/348/base 2025-04-25T04:11:48.0076606Z * [new branch] gh/davidberard98/348/head -> origin/gh/davidberard98/348/head 2025-04-25T04:11:48.0077660Z * [new branch] gh/davidberard98/348/orig -> origin/gh/davidberard98/348/orig 2025-04-25T04:11:48.0078692Z * [new branch] gh/davidberard98/349/base -> origin/gh/davidberard98/349/base 2025-04-25T04:11:48.0079732Z * [new branch] gh/davidberard98/349/head -> origin/gh/davidberard98/349/head 2025-04-25T04:11:48.0081044Z * [new branch] gh/davidberard98/349/orig -> origin/gh/davidberard98/349/orig 2025-04-25T04:11:48.0082354Z * [new branch] gh/davidberard98/350/base -> origin/gh/davidberard98/350/base 2025-04-25T04:11:48.0885446Z * [new branch] gh/davidberard98/350/head -> origin/gh/davidberard98/350/head 2025-04-25T04:11:48.0886103Z * [new branch] gh/davidberard98/350/orig -> origin/gh/davidberard98/350/orig 2025-04-25T04:11:48.0886693Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-04-25T04:11:48.0887307Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-04-25T04:11:48.0887887Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-04-25T04:11:48.0888472Z * [new branch] gh/davidberard98/352/base -> origin/gh/davidberard98/352/base 2025-04-25T04:11:48.0889100Z * [new branch] gh/davidberard98/352/head -> origin/gh/davidberard98/352/head 2025-04-25T04:11:48.0889799Z * [new branch] gh/davidberard98/352/orig -> origin/gh/davidberard98/352/orig 2025-04-25T04:11:48.0890374Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-04-25T04:11:48.0890945Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-04-25T04:11:48.0891531Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-04-25T04:11:48.0892096Z * [new branch] gh/desertfire/535/base -> origin/gh/desertfire/535/base 2025-04-25T04:11:48.0892849Z * [new branch] gh/desertfire/535/head -> origin/gh/desertfire/535/head 2025-04-25T04:11:48.0893392Z * [new branch] gh/desertfire/535/orig -> origin/gh/desertfire/535/orig 2025-04-25T04:11:48.0893944Z * [new branch] gh/desertfire/542/base -> origin/gh/desertfire/542/base 2025-04-25T04:11:48.0894492Z * [new branch] gh/desertfire/542/head -> origin/gh/desertfire/542/head 2025-04-25T04:11:48.0895027Z * [new branch] gh/desertfire/542/orig -> origin/gh/desertfire/542/orig 2025-04-25T04:11:48.0895565Z * [new branch] gh/desertfire/547/base -> origin/gh/desertfire/547/base 2025-04-25T04:11:48.0896097Z * [new branch] gh/desertfire/547/head -> origin/gh/desertfire/547/head 2025-04-25T04:11:48.0896645Z * [new branch] gh/desertfire/547/orig -> origin/gh/desertfire/547/orig 2025-04-25T04:11:48.0897193Z * [new branch] gh/desertfire/551/base -> origin/gh/desertfire/551/base 2025-04-25T04:11:48.0897754Z * [new branch] gh/desertfire/551/head -> origin/gh/desertfire/551/head 2025-04-25T04:11:48.0898286Z * [new branch] gh/desertfire/551/orig -> origin/gh/desertfire/551/orig 2025-04-25T04:11:48.0898897Z * [new branch] gh/desertfire/559/base -> origin/gh/desertfire/559/base 2025-04-25T04:11:48.0899432Z * [new branch] gh/desertfire/559/head -> origin/gh/desertfire/559/head 2025-04-25T04:11:48.0899972Z * [new branch] gh/desertfire/559/orig -> origin/gh/desertfire/559/orig 2025-04-25T04:11:48.0900506Z * [new branch] gh/desertfire/560/base -> origin/gh/desertfire/560/base 2025-04-25T04:11:48.0901034Z * [new branch] gh/desertfire/560/head -> origin/gh/desertfire/560/head 2025-04-25T04:11:48.0901703Z * [new branch] gh/desertfire/560/orig -> origin/gh/desertfire/560/orig 2025-04-25T04:11:48.0902243Z * [new branch] gh/desertfire/561/base -> origin/gh/desertfire/561/base 2025-04-25T04:11:48.0902785Z * [new branch] gh/desertfire/561/head -> origin/gh/desertfire/561/head 2025-04-25T04:11:48.0903313Z * [new branch] gh/desertfire/561/orig -> origin/gh/desertfire/561/orig 2025-04-25T04:11:48.0903862Z * [new branch] gh/desertfire/562/base -> origin/gh/desertfire/562/base 2025-04-25T04:11:48.0904410Z * [new branch] gh/desertfire/562/head -> origin/gh/desertfire/562/head 2025-04-25T04:11:48.0904944Z * [new branch] gh/desertfire/562/orig -> origin/gh/desertfire/562/orig 2025-04-25T04:11:48.0905488Z * [new branch] gh/desertfire/563/base -> origin/gh/desertfire/563/base 2025-04-25T04:11:48.0906021Z * [new branch] gh/desertfire/563/head -> origin/gh/desertfire/563/head 2025-04-25T04:11:48.0906574Z * [new branch] gh/desertfire/563/orig -> origin/gh/desertfire/563/orig 2025-04-25T04:11:48.0907124Z * [new branch] gh/desertfire/564/base -> origin/gh/desertfire/564/base 2025-04-25T04:11:48.0907656Z * [new branch] gh/desertfire/564/head -> origin/gh/desertfire/564/head 2025-04-25T04:11:48.0908200Z * [new branch] gh/desertfire/564/orig -> origin/gh/desertfire/564/orig 2025-04-25T04:11:48.0908728Z * [new branch] gh/desertfire/565/base -> origin/gh/desertfire/565/base 2025-04-25T04:11:48.0909265Z * [new branch] gh/desertfire/565/head -> origin/gh/desertfire/565/head 2025-04-25T04:11:48.0909810Z * [new branch] gh/desertfire/565/orig -> origin/gh/desertfire/565/orig 2025-04-25T04:11:48.0910345Z * [new branch] gh/desertfire/566/base -> origin/gh/desertfire/566/base 2025-04-25T04:11:48.0910894Z * [new branch] gh/desertfire/566/head -> origin/gh/desertfire/566/head 2025-04-25T04:11:48.1391271Z * [new branch] gh/desertfire/566/orig -> origin/gh/desertfire/566/orig 2025-04-25T04:11:48.1391884Z * [new branch] gh/desertfire/567/base -> origin/gh/desertfire/567/base 2025-04-25T04:11:48.1392450Z * [new branch] gh/desertfire/567/head -> origin/gh/desertfire/567/head 2025-04-25T04:11:48.1393000Z * [new branch] gh/desertfire/567/orig -> origin/gh/desertfire/567/orig 2025-04-25T04:11:48.1393541Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-04-25T04:11:48.1394047Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-04-25T04:11:48.1394548Z * [new branch] gh/dharakk/2/base -> origin/gh/dharakk/2/base 2025-04-25T04:11:48.1395052Z * [new branch] gh/dharakk/2/head -> origin/gh/dharakk/2/head 2025-04-25T04:11:48.1395574Z * [new branch] gh/dharakk/2/orig -> origin/gh/dharakk/2/orig 2025-04-25T04:11:48.1396082Z * [new branch] gh/dharakk/3/base -> origin/gh/dharakk/3/base 2025-04-25T04:11:48.1396569Z * [new branch] gh/dharakk/3/head -> origin/gh/dharakk/3/head 2025-04-25T04:11:48.1397124Z * [new branch] gh/dharakk/3/orig -> origin/gh/dharakk/3/orig 2025-04-25T04:11:48.1397695Z * [new branch] gh/drisspg/103/base -> origin/gh/drisspg/103/base 2025-04-25T04:11:48.1398269Z * [new branch] gh/drisspg/103/head -> origin/gh/drisspg/103/head 2025-04-25T04:11:48.1398798Z * [new branch] gh/drisspg/103/orig -> origin/gh/drisspg/103/orig 2025-04-25T04:11:48.1399307Z * [new branch] gh/drisspg/104/base -> origin/gh/drisspg/104/base 2025-04-25T04:11:48.1399829Z * [new branch] gh/drisspg/104/head -> origin/gh/drisspg/104/head 2025-04-25T04:11:48.1400529Z * [new branch] gh/drisspg/104/orig -> origin/gh/drisspg/104/orig 2025-04-25T04:11:48.1401064Z * [new branch] gh/drisspg/111/base -> origin/gh/drisspg/111/base 2025-04-25T04:11:48.1401585Z * [new branch] gh/drisspg/111/head -> origin/gh/drisspg/111/head 2025-04-25T04:11:48.1402102Z * [new branch] gh/drisspg/111/orig -> origin/gh/drisspg/111/orig 2025-04-25T04:11:48.1402617Z * [new branch] gh/drisspg/119/base -> origin/gh/drisspg/119/base 2025-04-25T04:11:48.1403123Z * [new branch] gh/drisspg/119/head -> origin/gh/drisspg/119/head 2025-04-25T04:11:48.1403648Z * [new branch] gh/drisspg/119/orig -> origin/gh/drisspg/119/orig 2025-04-25T04:11:48.1404179Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-04-25T04:11:48.1404817Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-04-25T04:11:48.1405357Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-04-25T04:11:48.1405868Z * [new branch] gh/drisspg/137/base -> origin/gh/drisspg/137/base 2025-04-25T04:11:48.1406389Z * [new branch] gh/drisspg/137/head -> origin/gh/drisspg/137/head 2025-04-25T04:11:48.1406903Z * [new branch] gh/drisspg/137/orig -> origin/gh/drisspg/137/orig 2025-04-25T04:11:48.1407410Z * [new branch] gh/drisspg/138/base -> origin/gh/drisspg/138/base 2025-04-25T04:11:48.1407917Z * [new branch] gh/drisspg/138/head -> origin/gh/drisspg/138/head 2025-04-25T04:11:48.1408419Z * [new branch] gh/drisspg/138/orig -> origin/gh/drisspg/138/orig 2025-04-25T04:11:48.1408939Z * [new branch] gh/drisspg/139/base -> origin/gh/drisspg/139/base 2025-04-25T04:11:48.1409467Z * [new branch] gh/drisspg/139/head -> origin/gh/drisspg/139/head 2025-04-25T04:11:48.1410115Z * [new branch] gh/drisspg/139/orig -> origin/gh/drisspg/139/orig 2025-04-25T04:11:48.1410635Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-04-25T04:11:48.1411137Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-04-25T04:11:48.1411658Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-04-25T04:11:48.1412180Z * [new branch] gh/drisspg/141/base -> origin/gh/drisspg/141/base 2025-04-25T04:11:48.1412694Z * [new branch] gh/drisspg/141/head -> origin/gh/drisspg/141/head 2025-04-25T04:11:48.1413212Z * [new branch] gh/drisspg/141/orig -> origin/gh/drisspg/141/orig 2025-04-25T04:11:48.1413725Z * [new branch] gh/drisspg/142/base -> origin/gh/drisspg/142/base 2025-04-25T04:11:48.1414257Z * [new branch] gh/drisspg/142/head -> origin/gh/drisspg/142/head 2025-04-25T04:11:48.1414777Z * [new branch] gh/drisspg/142/orig -> origin/gh/drisspg/142/orig 2025-04-25T04:11:48.1415288Z * [new branch] gh/drisspg/143/base -> origin/gh/drisspg/143/base 2025-04-25T04:11:48.1415798Z * [new branch] gh/drisspg/143/head -> origin/gh/drisspg/143/head 2025-04-25T04:11:48.1880854Z * [new branch] gh/drisspg/143/orig -> origin/gh/drisspg/143/orig 2025-04-25T04:11:48.1881453Z * [new branch] gh/drisspg/144/base -> origin/gh/drisspg/144/base 2025-04-25T04:11:48.1881987Z * [new branch] gh/drisspg/144/head -> origin/gh/drisspg/144/head 2025-04-25T04:11:48.1882501Z * [new branch] gh/drisspg/144/orig -> origin/gh/drisspg/144/orig 2025-04-25T04:11:48.1883018Z * [new branch] gh/drisspg/145/base -> origin/gh/drisspg/145/base 2025-04-25T04:11:48.1883750Z * [new branch] gh/drisspg/145/head -> origin/gh/drisspg/145/head 2025-04-25T04:11:48.1884395Z * [new branch] gh/drisspg/145/orig -> origin/gh/drisspg/145/orig 2025-04-25T04:11:48.1884926Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-04-25T04:11:48.1885434Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-04-25T04:11:48.1885940Z * [new branch] gh/dsjohns2/2/base -> origin/gh/dsjohns2/2/base 2025-04-25T04:11:48.1886448Z * [new branch] gh/dsjohns2/2/head -> origin/gh/dsjohns2/2/head 2025-04-25T04:11:48.1886961Z * [new branch] gh/dsjohns2/2/orig -> origin/gh/dsjohns2/2/orig 2025-04-25T04:11:48.1887487Z * [new branch] gh/eellison/555/base -> origin/gh/eellison/555/base 2025-04-25T04:11:48.1888008Z * [new branch] gh/eellison/555/head -> origin/gh/eellison/555/head 2025-04-25T04:11:48.1888537Z * [new branch] gh/eellison/555/orig -> origin/gh/eellison/555/orig 2025-04-25T04:11:48.1889064Z * [new branch] gh/eellison/691/base -> origin/gh/eellison/691/base 2025-04-25T04:11:48.1889593Z * [new branch] gh/eellison/691/head -> origin/gh/eellison/691/head 2025-04-25T04:11:48.1890117Z * [new branch] gh/eellison/691/orig -> origin/gh/eellison/691/orig 2025-04-25T04:11:48.1890630Z * [new branch] gh/eellison/761/base -> origin/gh/eellison/761/base 2025-04-25T04:11:48.1891152Z * [new branch] gh/eellison/761/head -> origin/gh/eellison/761/head 2025-04-25T04:11:48.1891661Z * [new branch] gh/eellison/761/orig -> origin/gh/eellison/761/orig 2025-04-25T04:11:48.1892179Z * [new branch] gh/eellison/764/base -> origin/gh/eellison/764/base 2025-04-25T04:11:48.1892694Z * [new branch] gh/eellison/764/head -> origin/gh/eellison/764/head 2025-04-25T04:11:48.1893363Z * [new branch] gh/eellison/764/orig -> origin/gh/eellison/764/orig 2025-04-25T04:11:48.1893894Z * [new branch] gh/eellison/767/base -> origin/gh/eellison/767/base 2025-04-25T04:11:48.1894482Z * [new branch] gh/eellison/767/head -> origin/gh/eellison/767/head 2025-04-25T04:11:48.1895070Z * [new branch] gh/eellison/767/orig -> origin/gh/eellison/767/orig 2025-04-25T04:11:48.1895647Z * [new branch] gh/eellison/773/base -> origin/gh/eellison/773/base 2025-04-25T04:11:48.1896174Z * [new branch] gh/eellison/773/head -> origin/gh/eellison/773/head 2025-04-25T04:11:48.1896692Z * [new branch] gh/eellison/773/orig -> origin/gh/eellison/773/orig 2025-04-25T04:11:48.1897201Z * [new branch] gh/eellison/774/base -> origin/gh/eellison/774/base 2025-04-25T04:11:48.1897727Z * [new branch] gh/eellison/774/head -> origin/gh/eellison/774/head 2025-04-25T04:11:48.1898241Z * [new branch] gh/eellison/775/base -> origin/gh/eellison/775/base 2025-04-25T04:11:48.1898758Z * [new branch] gh/eellison/775/head -> origin/gh/eellison/775/head 2025-04-25T04:11:48.1899281Z * [new branch] gh/eellison/775/orig -> origin/gh/eellison/775/orig 2025-04-25T04:11:48.1899790Z * [new branch] gh/eellison/776/base -> origin/gh/eellison/776/base 2025-04-25T04:11:48.1900312Z * [new branch] gh/eellison/776/head -> origin/gh/eellison/776/head 2025-04-25T04:11:48.1900818Z * [new branch] gh/eellison/776/orig -> origin/gh/eellison/776/orig 2025-04-25T04:11:48.1901333Z * [new branch] gh/eellison/777/base -> origin/gh/eellison/777/base 2025-04-25T04:11:48.1901853Z * [new branch] gh/eellison/777/head -> origin/gh/eellison/777/head 2025-04-25T04:11:48.1902470Z * [new branch] gh/eellison/777/orig -> origin/gh/eellison/777/orig 2025-04-25T04:11:48.1903002Z * [new branch] gh/eellison/778/base -> origin/gh/eellison/778/base 2025-04-25T04:11:48.1903517Z * [new branch] gh/eellison/778/head -> origin/gh/eellison/778/head 2025-04-25T04:11:48.1904039Z * [new branch] gh/eellison/778/orig -> origin/gh/eellison/778/orig 2025-04-25T04:11:48.1904552Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-04-25T04:11:48.1905069Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-04-25T04:11:48.2384938Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-04-25T04:11:48.2385573Z * [new branch] gh/eellison/780/base -> origin/gh/eellison/780/base 2025-04-25T04:11:48.2386139Z * [new branch] gh/eellison/780/head -> origin/gh/eellison/780/head 2025-04-25T04:11:48.2386691Z * [new branch] gh/eellison/780/orig -> origin/gh/eellison/780/orig 2025-04-25T04:11:48.2387201Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-04-25T04:11:48.2387717Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-04-25T04:11:48.2388225Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-04-25T04:11:48.2388741Z * [new branch] gh/eellison/782/base -> origin/gh/eellison/782/base 2025-04-25T04:11:48.2389246Z * [new branch] gh/eellison/782/head -> origin/gh/eellison/782/head 2025-04-25T04:11:48.2389768Z * [new branch] gh/eellison/782/orig -> origin/gh/eellison/782/orig 2025-04-25T04:11:48.2390280Z * [new branch] gh/eellison/783/base -> origin/gh/eellison/783/base 2025-04-25T04:11:48.2390847Z * [new branch] gh/eellison/783/head -> origin/gh/eellison/783/head 2025-04-25T04:11:48.2391682Z * [new branch] gh/eellison/783/orig -> origin/gh/eellison/783/orig 2025-04-25T04:11:48.2392207Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-04-25T04:11:48.2392736Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-04-25T04:11:48.2393260Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-04-25T04:11:48.2393783Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-04-25T04:11:48.2394304Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-04-25T04:11:48.2394815Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-04-25T04:11:48.2395326Z * [new branch] gh/etaf/112/base -> origin/gh/etaf/112/base 2025-04-25T04:11:48.2395844Z * [new branch] gh/etaf/112/head -> origin/gh/etaf/112/head 2025-04-25T04:11:48.2396323Z * [new branch] gh/etaf/112/orig -> origin/gh/etaf/112/orig 2025-04-25T04:11:48.2396852Z * [new branch] gh/etaf/113/base -> origin/gh/etaf/113/base 2025-04-25T04:11:48.2397376Z * [new branch] gh/etaf/113/head -> origin/gh/etaf/113/head 2025-04-25T04:11:48.2397920Z * [new branch] gh/etaf/113/orig -> origin/gh/etaf/113/orig 2025-04-25T04:11:48.2398394Z * [new branch] gh/etaf/114/base -> origin/gh/etaf/114/base 2025-04-25T04:11:48.2398869Z * [new branch] gh/etaf/114/head -> origin/gh/etaf/114/head 2025-04-25T04:11:48.2399345Z * [new branch] gh/etaf/115/base -> origin/gh/etaf/115/base 2025-04-25T04:11:48.2399812Z * [new branch] gh/etaf/116/base -> origin/gh/etaf/116/base 2025-04-25T04:11:48.2400405Z * [new branch] gh/etaf/116/head -> origin/gh/etaf/116/head 2025-04-25T04:11:48.2400897Z * [new branch] gh/etaf/116/orig -> origin/gh/etaf/116/orig 2025-04-25T04:11:48.2401416Z * [new branch] gh/etaf/117/base -> origin/gh/etaf/117/base 2025-04-25T04:11:48.2401894Z * [new branch] gh/etaf/117/head -> origin/gh/etaf/117/head 2025-04-25T04:11:48.2402368Z * [new branch] gh/etaf/117/orig -> origin/gh/etaf/117/orig 2025-04-25T04:11:48.2402847Z * [new branch] gh/etaf/118/base -> origin/gh/etaf/118/base 2025-04-25T04:11:48.2403318Z * [new branch] gh/etaf/118/head -> origin/gh/etaf/118/head 2025-04-25T04:11:48.2403800Z * [new branch] gh/etaf/118/orig -> origin/gh/etaf/118/orig 2025-04-25T04:11:48.2404389Z * [new branch] gh/etaf/119/base -> origin/gh/etaf/119/base 2025-04-25T04:11:48.2404873Z * [new branch] gh/etaf/119/head -> origin/gh/etaf/119/head 2025-04-25T04:11:48.2405360Z * [new branch] gh/etaf/119/orig -> origin/gh/etaf/119/orig 2025-04-25T04:11:48.2405832Z * [new branch] gh/etaf/68/base -> origin/gh/etaf/68/base 2025-04-25T04:11:48.2406320Z * [new branch] gh/etaf/68/head -> origin/gh/etaf/68/head 2025-04-25T04:11:48.2406798Z * [new branch] gh/etaf/68/orig -> origin/gh/etaf/68/orig 2025-04-25T04:11:48.2407258Z * [new branch] gh/etaf/69/base -> origin/gh/etaf/69/base 2025-04-25T04:11:48.2407737Z * [new branch] gh/etaf/69/head -> origin/gh/etaf/69/head 2025-04-25T04:11:48.2408297Z * [new branch] gh/etaf/69/orig -> origin/gh/etaf/69/orig 2025-04-25T04:11:48.2408834Z * [new branch] gh/etaf/84/base -> origin/gh/etaf/84/base 2025-04-25T04:11:48.2409312Z * [new branch] gh/etaf/84/head -> origin/gh/etaf/84/head 2025-04-25T04:11:48.4526691Z * [new branch] gh/etaf/84/orig -> origin/gh/etaf/84/orig 2025-04-25T04:11:48.4527275Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-04-25T04:11:48.4527813Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-04-25T04:11:48.4528330Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-04-25T04:11:48.4528839Z * [new branch] gh/ezyang/2449/orig -> origin/gh/ezyang/2449/orig 2025-04-25T04:11:48.4529347Z * [new branch] gh/ezyang/2479/next -> origin/gh/ezyang/2479/next 2025-04-25T04:11:48.4529870Z * [new branch] gh/ezyang/2480/next -> origin/gh/ezyang/2480/next 2025-04-25T04:11:48.4530374Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-04-25T04:11:48.4530926Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-04-25T04:11:48.4531438Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-04-25T04:11:48.4531937Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-04-25T04:11:48.4532443Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-04-25T04:11:48.4532942Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-04-25T04:11:48.4533441Z * [new branch] gh/ezyang/3031/base -> origin/gh/ezyang/3031/base 2025-04-25T04:11:48.4533937Z * [new branch] gh/ezyang/3031/head -> origin/gh/ezyang/3031/head 2025-04-25T04:11:48.4534443Z * [new branch] gh/ezyang/3031/orig -> origin/gh/ezyang/3031/orig 2025-04-25T04:11:48.4535200Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-04-25T04:11:48.4535708Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-04-25T04:11:48.4536215Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-04-25T04:11:48.4536715Z * [new branch] gh/fduwjj/116/base -> origin/gh/fduwjj/116/base 2025-04-25T04:11:48.4537228Z * [new branch] gh/fduwjj/116/head -> origin/gh/fduwjj/116/head 2025-04-25T04:11:48.4537725Z * [new branch] gh/fduwjj/116/orig -> origin/gh/fduwjj/116/orig 2025-04-25T04:11:48.4538237Z * [new branch] gh/fduwjj/117/base -> origin/gh/fduwjj/117/base 2025-04-25T04:11:48.4538738Z * [new branch] gh/fduwjj/117/head -> origin/gh/fduwjj/117/head 2025-04-25T04:11:48.4539226Z * [new branch] gh/fduwjj/117/orig -> origin/gh/fduwjj/117/orig 2025-04-25T04:11:48.4539726Z * [new branch] gh/fduwjj/118/base -> origin/gh/fduwjj/118/base 2025-04-25T04:11:48.4540222Z * [new branch] gh/fduwjj/118/head -> origin/gh/fduwjj/118/head 2025-04-25T04:11:48.4540719Z * [new branch] gh/fduwjj/118/orig -> origin/gh/fduwjj/118/orig 2025-04-25T04:11:48.4541210Z * [new branch] gh/fduwjj/119/base -> origin/gh/fduwjj/119/base 2025-04-25T04:11:48.4541702Z * [new branch] gh/fduwjj/119/head -> origin/gh/fduwjj/119/head 2025-04-25T04:11:48.4542208Z * [new branch] gh/fduwjj/119/orig -> origin/gh/fduwjj/119/orig 2025-04-25T04:11:48.4542702Z * [new branch] gh/fduwjj/120/base -> origin/gh/fduwjj/120/base 2025-04-25T04:11:48.4543203Z * [new branch] gh/fduwjj/120/head -> origin/gh/fduwjj/120/head 2025-04-25T04:11:48.4543692Z * [new branch] gh/fduwjj/120/orig -> origin/gh/fduwjj/120/orig 2025-04-25T04:11:48.4544186Z * [new branch] gh/fduwjj/121/base -> origin/gh/fduwjj/121/base 2025-04-25T04:11:48.4544822Z * [new branch] gh/fduwjj/121/head -> origin/gh/fduwjj/121/head 2025-04-25T04:11:48.4545310Z * [new branch] gh/fduwjj/121/orig -> origin/gh/fduwjj/121/orig 2025-04-25T04:11:48.4545818Z * [new branch] gh/fduwjj/122/base -> origin/gh/fduwjj/122/base 2025-04-25T04:11:48.4546315Z * [new branch] gh/fduwjj/122/head -> origin/gh/fduwjj/122/head 2025-04-25T04:11:48.4546818Z * [new branch] gh/fduwjj/122/orig -> origin/gh/fduwjj/122/orig 2025-04-25T04:11:48.4547321Z * [new branch] gh/fduwjj/123/base -> origin/gh/fduwjj/123/base 2025-04-25T04:11:48.4547815Z * [new branch] gh/fduwjj/123/head -> origin/gh/fduwjj/123/head 2025-04-25T04:11:48.4548314Z * [new branch] gh/fduwjj/123/orig -> origin/gh/fduwjj/123/orig 2025-04-25T04:11:48.4548812Z * [new branch] gh/fduwjj/124/base -> origin/gh/fduwjj/124/base 2025-04-25T04:11:48.4549698Z * [new branch] gh/fduwjj/124/head -> origin/gh/fduwjj/124/head 2025-04-25T04:11:48.4550270Z * [new branch] gh/fduwjj/124/orig -> origin/gh/fduwjj/124/orig 2025-04-25T04:11:48.4550762Z * [new branch] gh/fduwjj/125/base -> origin/gh/fduwjj/125/base 2025-04-25T04:11:48.4551269Z * [new branch] gh/fduwjj/125/head -> origin/gh/fduwjj/125/head 2025-04-25T04:11:48.5006014Z * [new branch] gh/fduwjj/125/orig -> origin/gh/fduwjj/125/orig 2025-04-25T04:11:48.5006960Z * [new branch] gh/fduwjj/126/base -> origin/gh/fduwjj/126/base 2025-04-25T04:11:48.5007845Z * [new branch] gh/fduwjj/126/head -> origin/gh/fduwjj/126/head 2025-04-25T04:11:48.5008712Z * [new branch] gh/fduwjj/126/orig -> origin/gh/fduwjj/126/orig 2025-04-25T04:11:48.5009830Z * [new branch] gh/fduwjj/127/base -> origin/gh/fduwjj/127/base 2025-04-25T04:11:48.5010701Z * [new branch] gh/fduwjj/127/head -> origin/gh/fduwjj/127/head 2025-04-25T04:11:48.5011588Z * [new branch] gh/fduwjj/127/orig -> origin/gh/fduwjj/127/orig 2025-04-25T04:11:48.5012457Z * [new branch] gh/fduwjj/128/base -> origin/gh/fduwjj/128/base 2025-04-25T04:11:48.5013320Z * [new branch] gh/fduwjj/128/head -> origin/gh/fduwjj/128/head 2025-04-25T04:11:48.5014191Z * [new branch] gh/fduwjj/128/orig -> origin/gh/fduwjj/128/orig 2025-04-25T04:11:48.5015049Z * [new branch] gh/fduwjj/129/base -> origin/gh/fduwjj/129/base 2025-04-25T04:11:48.5017123Z * [new branch] gh/fduwjj/129/head -> origin/gh/fduwjj/129/head 2025-04-25T04:11:48.5018011Z * [new branch] gh/fduwjj/129/orig -> origin/gh/fduwjj/129/orig 2025-04-25T04:11:48.5018883Z * [new branch] gh/fduwjj/130/base -> origin/gh/fduwjj/130/base 2025-04-25T04:11:48.5019756Z * [new branch] gh/fduwjj/130/head -> origin/gh/fduwjj/130/head 2025-04-25T04:11:48.5020624Z * [new branch] gh/fduwjj/130/orig -> origin/gh/fduwjj/130/orig 2025-04-25T04:11:48.5021503Z * [new branch] gh/fduwjj/131/base -> origin/gh/fduwjj/131/base 2025-04-25T04:11:48.5022367Z * [new branch] gh/fduwjj/131/head -> origin/gh/fduwjj/131/head 2025-04-25T04:11:48.5023229Z * [new branch] gh/fduwjj/131/orig -> origin/gh/fduwjj/131/orig 2025-04-25T04:11:48.5024090Z * [new branch] gh/fduwjj/132/base -> origin/gh/fduwjj/132/base 2025-04-25T04:11:48.5024950Z * [new branch] gh/fduwjj/132/head -> origin/gh/fduwjj/132/head 2025-04-25T04:11:48.5025815Z * [new branch] gh/fduwjj/132/orig -> origin/gh/fduwjj/132/orig 2025-04-25T04:11:48.5027577Z * [new branch] gh/fduwjj/133/base -> origin/gh/fduwjj/133/base 2025-04-25T04:11:48.5028449Z * [new branch] gh/fduwjj/133/head -> origin/gh/fduwjj/133/head 2025-04-25T04:11:48.5029316Z * [new branch] gh/fduwjj/133/orig -> origin/gh/fduwjj/133/orig 2025-04-25T04:11:48.5030171Z * [new branch] gh/fegin/169/base -> origin/gh/fegin/169/base 2025-04-25T04:11:48.5031024Z * [new branch] gh/fegin/169/head -> origin/gh/fegin/169/head 2025-04-25T04:11:48.5031876Z * [new branch] gh/fegin/169/orig -> origin/gh/fegin/169/orig 2025-04-25T04:11:48.5032711Z * [new branch] gh/fegin/171/base -> origin/gh/fegin/171/base 2025-04-25T04:11:48.5033551Z * [new branch] gh/fegin/171/head -> origin/gh/fegin/171/head 2025-04-25T04:11:48.5034398Z * [new branch] gh/fegin/171/orig -> origin/gh/fegin/171/orig 2025-04-25T04:11:48.5035250Z * [new branch] gh/fegin/172/base -> origin/gh/fegin/172/base 2025-04-25T04:11:48.5036087Z * [new branch] gh/fegin/172/head -> origin/gh/fegin/172/head 2025-04-25T04:11:48.5036933Z * [new branch] gh/fegin/172/orig -> origin/gh/fegin/172/orig 2025-04-25T04:11:48.5037778Z * [new branch] gh/fegin/294/base -> origin/gh/fegin/294/base 2025-04-25T04:11:48.5038619Z * [new branch] gh/fegin/294/head -> origin/gh/fegin/294/head 2025-04-25T04:11:48.5039458Z * [new branch] gh/fegin/294/orig -> origin/gh/fegin/294/orig 2025-04-25T04:11:48.5040291Z * [new branch] gh/fegin/297/base -> origin/gh/fegin/297/base 2025-04-25T04:11:48.5041142Z * [new branch] gh/fegin/297/head -> origin/gh/fegin/297/head 2025-04-25T04:11:48.5042119Z * [new branch] gh/fegin/297/orig -> origin/gh/fegin/297/orig 2025-04-25T04:11:48.5042975Z * [new branch] gh/fegin/298/base -> origin/gh/fegin/298/base 2025-04-25T04:11:48.5043820Z * [new branch] gh/fegin/298/head -> origin/gh/fegin/298/head 2025-04-25T04:11:48.5044774Z * [new branch] gh/fegin/298/orig -> origin/gh/fegin/298/orig 2025-04-25T04:11:48.5045635Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-04-25T04:11:48.5046488Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-04-25T04:11:48.5047344Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-04-25T04:11:48.5048205Z * [new branch] gh/fffrog/44/base -> origin/gh/fffrog/44/base 2025-04-25T04:11:48.5049054Z * [new branch] gh/fffrog/44/head -> origin/gh/fffrog/44/head 2025-04-25T04:11:48.7971602Z * [new branch] gh/fffrog/44/orig -> origin/gh/fffrog/44/orig 2025-04-25T04:11:48.7972188Z * [new branch] gh/fffrog/47/base -> origin/gh/fffrog/47/base 2025-04-25T04:11:48.7972688Z * [new branch] gh/fffrog/47/head -> origin/gh/fffrog/47/head 2025-04-25T04:11:48.7973201Z * [new branch] gh/fffrog/47/orig -> origin/gh/fffrog/47/orig 2025-04-25T04:11:48.7973688Z * [new branch] gh/fffrog/48/base -> origin/gh/fffrog/48/base 2025-04-25T04:11:48.7974237Z * [new branch] gh/fffrog/48/head -> origin/gh/fffrog/48/head 2025-04-25T04:11:48.7974786Z * [new branch] gh/fffrog/48/orig -> origin/gh/fffrog/48/orig 2025-04-25T04:11:48.7975332Z * [new branch] gh/fffrog/49/base -> origin/gh/fffrog/49/base 2025-04-25T04:11:48.7975821Z * [new branch] gh/fffrog/49/head -> origin/gh/fffrog/49/head 2025-04-25T04:11:48.7976312Z * [new branch] gh/fffrog/49/orig -> origin/gh/fffrog/49/orig 2025-04-25T04:11:48.7977024Z * [new branch] gh/fffrog/53/base -> origin/gh/fffrog/53/base 2025-04-25T04:11:48.7977515Z * [new branch] gh/fffrog/53/head -> origin/gh/fffrog/53/head 2025-04-25T04:11:48.7978014Z * [new branch] gh/fffrog/53/orig -> origin/gh/fffrog/53/orig 2025-04-25T04:11:48.7978510Z * [new branch] gh/fffrog/54/base -> origin/gh/fffrog/54/base 2025-04-25T04:11:48.7979008Z * [new branch] gh/fffrog/54/head -> origin/gh/fffrog/54/head 2025-04-25T04:11:48.7979510Z * [new branch] gh/fffrog/54/orig -> origin/gh/fffrog/54/orig 2025-04-25T04:11:48.7979993Z * [new branch] gh/fffrog/55/base -> origin/gh/fffrog/55/base 2025-04-25T04:11:48.7980489Z * [new branch] gh/fffrog/55/head -> origin/gh/fffrog/55/head 2025-04-25T04:11:48.7981004Z * [new branch] gh/fffrog/55/orig -> origin/gh/fffrog/55/orig 2025-04-25T04:11:48.7981492Z * [new branch] gh/fffrog/56/base -> origin/gh/fffrog/56/base 2025-04-25T04:11:48.7981979Z * [new branch] gh/fffrog/56/head -> origin/gh/fffrog/56/head 2025-04-25T04:11:48.7982459Z * [new branch] gh/fffrog/56/orig -> origin/gh/fffrog/56/orig 2025-04-25T04:11:48.7982953Z * [new branch] gh/fffrog/57/base -> origin/gh/fffrog/57/base 2025-04-25T04:11:48.7983435Z * [new branch] gh/fffrog/57/head -> origin/gh/fffrog/57/head 2025-04-25T04:11:48.7983919Z * [new branch] gh/fffrog/57/orig -> origin/gh/fffrog/57/orig 2025-04-25T04:11:48.7984411Z * [new branch] gh/fffrog/58/base -> origin/gh/fffrog/58/base 2025-04-25T04:11:48.7984897Z * [new branch] gh/fffrog/58/head -> origin/gh/fffrog/58/head 2025-04-25T04:11:48.7986167Z * [new branch] gh/fffrog/58/orig -> origin/gh/fffrog/58/orig 2025-04-25T04:11:48.7986689Z * [new branch] gh/fffrog/59/base -> origin/gh/fffrog/59/base 2025-04-25T04:11:48.7987178Z * [new branch] gh/fffrog/59/head -> origin/gh/fffrog/59/head 2025-04-25T04:11:48.7987668Z * [new branch] gh/fffrog/59/orig -> origin/gh/fffrog/59/orig 2025-04-25T04:11:48.7988148Z * [new branch] gh/fffrog/60/base -> origin/gh/fffrog/60/base 2025-04-25T04:11:48.7988639Z * [new branch] gh/fffrog/60/head -> origin/gh/fffrog/60/head 2025-04-25T04:11:48.7989127Z * [new branch] gh/fffrog/60/orig -> origin/gh/fffrog/60/orig 2025-04-25T04:11:48.7989618Z * [new branch] gh/fffrog/61/base -> origin/gh/fffrog/61/base 2025-04-25T04:11:48.7990105Z * [new branch] gh/fffrog/61/head -> origin/gh/fffrog/61/head 2025-04-25T04:11:48.7990599Z * [new branch] gh/fffrog/61/orig -> origin/gh/fffrog/61/orig 2025-04-25T04:11:48.7991084Z * [new branch] gh/fffrog/62/base -> origin/gh/fffrog/62/base 2025-04-25T04:11:48.7991564Z * [new branch] gh/fffrog/62/head -> origin/gh/fffrog/62/head 2025-04-25T04:11:48.7992057Z * [new branch] gh/fffrog/62/orig -> origin/gh/fffrog/62/orig 2025-04-25T04:11:48.7992549Z * [new branch] gh/fffrog/63/base -> origin/gh/fffrog/63/base 2025-04-25T04:11:48.7993043Z * [new branch] gh/fffrog/63/head -> origin/gh/fffrog/63/head 2025-04-25T04:11:48.7993538Z * [new branch] gh/fffrog/63/orig -> origin/gh/fffrog/63/orig 2025-04-25T04:11:48.7994022Z * [new branch] gh/fffrog/64/base -> origin/gh/fffrog/64/base 2025-04-25T04:11:48.7994517Z * [new branch] gh/fffrog/64/head -> origin/gh/fffrog/64/head 2025-04-25T04:11:48.7995130Z * [new branch] gh/fffrog/64/orig -> origin/gh/fffrog/64/orig 2025-04-25T04:11:48.7995620Z * [new branch] gh/fffrog/65/base -> origin/gh/fffrog/65/base 2025-04-25T04:11:48.7996114Z * [new branch] gh/fffrog/65/head -> origin/gh/fffrog/65/head 2025-04-25T04:11:48.8452305Z * [new branch] gh/fffrog/65/orig -> origin/gh/fffrog/65/orig 2025-04-25T04:11:48.8452816Z * [new branch] gh/fffrog/66/base -> origin/gh/fffrog/66/base 2025-04-25T04:11:48.8453338Z * [new branch] gh/fffrog/66/head -> origin/gh/fffrog/66/head 2025-04-25T04:11:48.8453820Z * [new branch] gh/fffrog/66/orig -> origin/gh/fffrog/66/orig 2025-04-25T04:11:48.8454317Z * [new branch] gh/fffrog/67/base -> origin/gh/fffrog/67/base 2025-04-25T04:11:48.8454816Z * [new branch] gh/fffrog/67/head -> origin/gh/fffrog/67/head 2025-04-25T04:11:48.8455325Z * [new branch] gh/fffrog/67/orig -> origin/gh/fffrog/67/orig 2025-04-25T04:11:48.8455813Z * [new branch] gh/fffrog/68/base -> origin/gh/fffrog/68/base 2025-04-25T04:11:48.8456297Z * [new branch] gh/fffrog/68/head -> origin/gh/fffrog/68/head 2025-04-25T04:11:48.8456793Z * [new branch] gh/fffrog/68/orig -> origin/gh/fffrog/68/orig 2025-04-25T04:11:48.8457278Z * [new branch] gh/fffrog/69/base -> origin/gh/fffrog/69/base 2025-04-25T04:11:48.8457771Z * [new branch] gh/fffrog/69/head -> origin/gh/fffrog/69/head 2025-04-25T04:11:48.8458260Z * [new branch] gh/fffrog/69/orig -> origin/gh/fffrog/69/orig 2025-04-25T04:11:48.8458745Z * [new branch] gh/fffrog/70/base -> origin/gh/fffrog/70/base 2025-04-25T04:11:48.8459414Z * [new branch] gh/fffrog/70/head -> origin/gh/fffrog/70/head 2025-04-25T04:11:48.8459914Z * [new branch] gh/fffrog/70/orig -> origin/gh/fffrog/70/orig 2025-04-25T04:11:48.8460415Z * [new branch] gh/fffrog/71/base -> origin/gh/fffrog/71/base 2025-04-25T04:11:48.8460909Z * [new branch] gh/fffrog/71/head -> origin/gh/fffrog/71/head 2025-04-25T04:11:48.8461401Z * [new branch] gh/fffrog/71/orig -> origin/gh/fffrog/71/orig 2025-04-25T04:11:48.8461895Z * [new branch] gh/fffrog/72/base -> origin/gh/fffrog/72/base 2025-04-25T04:11:48.8462379Z * [new branch] gh/fffrog/72/head -> origin/gh/fffrog/72/head 2025-04-25T04:11:48.8462876Z * [new branch] gh/fffrog/72/orig -> origin/gh/fffrog/72/orig 2025-04-25T04:11:48.8463358Z * [new branch] gh/fffrog/73/base -> origin/gh/fffrog/73/base 2025-04-25T04:11:48.8463854Z * [new branch] gh/fffrog/73/head -> origin/gh/fffrog/73/head 2025-04-25T04:11:48.8464353Z * [new branch] gh/fffrog/73/orig -> origin/gh/fffrog/73/orig 2025-04-25T04:11:48.8464832Z * [new branch] gh/fffrog/74/base -> origin/gh/fffrog/74/base 2025-04-25T04:11:48.8465320Z * [new branch] gh/fffrog/74/head -> origin/gh/fffrog/74/head 2025-04-25T04:11:48.8465816Z * [new branch] gh/fffrog/74/orig -> origin/gh/fffrog/74/orig 2025-04-25T04:11:48.8466310Z * [new branch] gh/fffrog/75/base -> origin/gh/fffrog/75/base 2025-04-25T04:11:48.8466796Z * [new branch] gh/fffrog/75/head -> origin/gh/fffrog/75/head 2025-04-25T04:11:48.8467282Z * [new branch] gh/fffrog/75/orig -> origin/gh/fffrog/75/orig 2025-04-25T04:11:48.8467774Z * [new branch] gh/fffrog/76/base -> origin/gh/fffrog/76/base 2025-04-25T04:11:48.8468258Z * [new branch] gh/fffrog/76/head -> origin/gh/fffrog/76/head 2025-04-25T04:11:48.8468862Z * [new branch] gh/fffrog/76/orig -> origin/gh/fffrog/76/orig 2025-04-25T04:11:48.8469352Z * [new branch] gh/fffrog/77/base -> origin/gh/fffrog/77/base 2025-04-25T04:11:48.8469858Z * [new branch] gh/fffrog/77/head -> origin/gh/fffrog/77/head 2025-04-25T04:11:48.8470360Z * [new branch] gh/fffrog/77/orig -> origin/gh/fffrog/77/orig 2025-04-25T04:11:48.8470853Z * [new branch] gh/fffrog/78/base -> origin/gh/fffrog/78/base 2025-04-25T04:11:48.8471350Z * [new branch] gh/fffrog/78/head -> origin/gh/fffrog/78/head 2025-04-25T04:11:48.8471835Z * [new branch] gh/fffrog/78/orig -> origin/gh/fffrog/78/orig 2025-04-25T04:11:48.8472329Z * [new branch] gh/fffrog/79/base -> origin/gh/fffrog/79/base 2025-04-25T04:11:48.8472826Z * [new branch] gh/fffrog/79/head -> origin/gh/fffrog/79/head 2025-04-25T04:11:48.8473317Z * [new branch] gh/fffrog/79/orig -> origin/gh/fffrog/79/orig 2025-04-25T04:11:48.8473813Z * [new branch] gh/fffrog/80/base -> origin/gh/fffrog/80/base 2025-04-25T04:11:48.8474298Z * [new branch] gh/fffrog/80/head -> origin/gh/fffrog/80/head 2025-04-25T04:11:48.8474794Z * [new branch] gh/fffrog/80/orig -> origin/gh/fffrog/80/orig 2025-04-25T04:11:48.8475274Z * [new branch] gh/fffrog/81/base -> origin/gh/fffrog/81/base 2025-04-25T04:11:48.8475766Z * [new branch] gh/fffrog/81/head -> origin/gh/fffrog/81/head 2025-04-25T04:11:48.8951819Z * [new branch] gh/fffrog/81/orig -> origin/gh/fffrog/81/orig 2025-04-25T04:11:48.8952384Z * [new branch] gh/fffrog/82/base -> origin/gh/fffrog/82/base 2025-04-25T04:11:48.8953066Z * [new branch] gh/fffrog/82/head -> origin/gh/fffrog/82/head 2025-04-25T04:11:48.8953582Z * [new branch] gh/fffrog/82/orig -> origin/gh/fffrog/82/orig 2025-04-25T04:11:48.8954083Z * [new branch] gh/fffrog/83/base -> origin/gh/fffrog/83/base 2025-04-25T04:11:48.8954680Z * [new branch] gh/fffrog/83/head -> origin/gh/fffrog/83/head 2025-04-25T04:11:48.8955221Z * [new branch] gh/fffrog/83/orig -> origin/gh/fffrog/83/orig 2025-04-25T04:11:48.8955762Z * [new branch] gh/fffrog/84/base -> origin/gh/fffrog/84/base 2025-04-25T04:11:48.8956262Z * [new branch] gh/fffrog/84/head -> origin/gh/fffrog/84/head 2025-04-25T04:11:48.8956770Z * [new branch] gh/fffrog/84/orig -> origin/gh/fffrog/84/orig 2025-04-25T04:11:48.8957263Z * [new branch] gh/fffrog/85/base -> origin/gh/fffrog/85/base 2025-04-25T04:11:48.8957795Z * [new branch] gh/fffrog/85/head -> origin/gh/fffrog/85/head 2025-04-25T04:11:48.8958309Z * [new branch] gh/fffrog/85/orig -> origin/gh/fffrog/85/orig 2025-04-25T04:11:48.8958796Z * [new branch] gh/fffrog/86/base -> origin/gh/fffrog/86/base 2025-04-25T04:11:48.8959310Z * [new branch] gh/fffrog/86/head -> origin/gh/fffrog/86/head 2025-04-25T04:11:48.8959828Z * [new branch] gh/fffrog/86/orig -> origin/gh/fffrog/86/orig 2025-04-25T04:11:48.8960322Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-04-25T04:11:48.8960829Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-04-25T04:11:48.8961319Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-04-25T04:11:48.8961841Z * [new branch] gh/guangyey/118/base -> origin/gh/guangyey/118/base 2025-04-25T04:11:48.8962393Z * [new branch] gh/guangyey/118/head -> origin/gh/guangyey/118/head 2025-04-25T04:11:48.8963056Z * [new branch] gh/guangyey/118/orig -> origin/gh/guangyey/118/orig 2025-04-25T04:11:48.8963592Z * [new branch] gh/guangyey/125/base -> origin/gh/guangyey/125/base 2025-04-25T04:11:48.8964116Z * [new branch] gh/guangyey/125/head -> origin/gh/guangyey/125/head 2025-04-25T04:11:48.8964731Z * [new branch] gh/guangyey/125/orig -> origin/gh/guangyey/125/orig 2025-04-25T04:11:48.8965253Z * [new branch] gh/guangyey/126/base -> origin/gh/guangyey/126/base 2025-04-25T04:11:48.8965788Z * [new branch] gh/guangyey/126/head -> origin/gh/guangyey/126/head 2025-04-25T04:11:48.8966325Z * [new branch] gh/guangyey/126/orig -> origin/gh/guangyey/126/orig 2025-04-25T04:11:48.8966856Z * [new branch] gh/guangyey/127/base -> origin/gh/guangyey/127/base 2025-04-25T04:11:48.8967394Z * [new branch] gh/guangyey/127/head -> origin/gh/guangyey/127/head 2025-04-25T04:11:48.8967919Z * [new branch] gh/guangyey/127/orig -> origin/gh/guangyey/127/orig 2025-04-25T04:11:48.8968460Z * [new branch] gh/guangyey/128/base -> origin/gh/guangyey/128/base 2025-04-25T04:11:48.8968996Z * [new branch] gh/guangyey/128/head -> origin/gh/guangyey/128/head 2025-04-25T04:11:48.8969517Z * [new branch] gh/guangyey/128/orig -> origin/gh/guangyey/128/orig 2025-04-25T04:11:48.8970064Z * [new branch] gh/guangyey/129/base -> origin/gh/guangyey/129/base 2025-04-25T04:11:48.8970588Z * [new branch] gh/guangyey/129/head -> origin/gh/guangyey/129/head 2025-04-25T04:11:48.8971126Z * [new branch] gh/guangyey/129/orig -> origin/gh/guangyey/129/orig 2025-04-25T04:11:48.8971788Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-04-25T04:11:48.8972324Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-04-25T04:11:48.8972859Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-04-25T04:11:48.8973386Z * [new branch] gh/guangyey/131/base -> origin/gh/guangyey/131/base 2025-04-25T04:11:48.8973924Z * [new branch] gh/guangyey/131/head -> origin/gh/guangyey/131/head 2025-04-25T04:11:48.8974451Z * [new branch] gh/guangyey/131/orig -> origin/gh/guangyey/131/orig 2025-04-25T04:11:48.8988628Z * [new branch] gh/guangyey/132/base -> origin/gh/guangyey/132/base 2025-04-25T04:11:48.8989191Z * [new branch] gh/guangyey/132/head -> origin/gh/guangyey/132/head 2025-04-25T04:11:48.8989715Z * [new branch] gh/guangyey/132/orig -> origin/gh/guangyey/132/orig 2025-04-25T04:11:48.8990271Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-04-25T04:11:48.9431218Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-04-25T04:11:48.9431990Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-04-25T04:11:48.9432662Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-04-25T04:11:48.9433271Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-04-25T04:11:48.9433804Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-04-25T04:11:48.9434350Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-04-25T04:11:48.9434879Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-04-25T04:11:48.9435436Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-04-25T04:11:48.9436161Z * [new branch] gh/guangyey/136/base -> origin/gh/guangyey/136/base 2025-04-25T04:11:48.9436696Z * [new branch] gh/guangyey/136/head -> origin/gh/guangyey/136/head 2025-04-25T04:11:48.9437319Z * [new branch] gh/guangyey/136/orig -> origin/gh/guangyey/136/orig 2025-04-25T04:11:48.9437902Z * [new branch] gh/guangyey/137/base -> origin/gh/guangyey/137/base 2025-04-25T04:11:48.9438427Z * [new branch] gh/guangyey/137/head -> origin/gh/guangyey/137/head 2025-04-25T04:11:48.9438943Z * [new branch] gh/guangyey/137/orig -> origin/gh/guangyey/137/orig 2025-04-25T04:11:48.9439473Z * [new branch] gh/guangyey/138/base -> origin/gh/guangyey/138/base 2025-04-25T04:11:48.9439986Z * [new branch] gh/guangyey/138/head -> origin/gh/guangyey/138/head 2025-04-25T04:11:48.9440515Z * [new branch] gh/guangyey/138/orig -> origin/gh/guangyey/138/orig 2025-04-25T04:11:48.9441035Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-04-25T04:11:48.9441546Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-04-25T04:11:48.9442075Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-04-25T04:11:48.9442600Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-04-25T04:11:48.9443183Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-04-25T04:11:48.9443764Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-04-25T04:11:48.9444449Z * [new branch] gh/guangyey/141/base -> origin/gh/guangyey/141/base 2025-04-25T04:11:48.9444989Z * [new branch] gh/guangyey/141/head -> origin/gh/guangyey/141/head 2025-04-25T04:11:48.9445645Z * [new branch] gh/guangyey/141/orig -> origin/gh/guangyey/141/orig 2025-04-25T04:11:48.9446183Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-04-25T04:11:48.9446709Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-04-25T04:11:48.9447228Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-04-25T04:11:48.9447752Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-04-25T04:11:48.9448269Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-04-25T04:11:48.9448788Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-04-25T04:11:48.9449294Z * [new branch] gh/guangyey/87/base -> origin/gh/guangyey/87/base 2025-04-25T04:11:48.9449820Z * [new branch] gh/guangyey/87/head -> origin/gh/guangyey/87/head 2025-04-25T04:11:48.9450347Z * [new branch] gh/guangyey/87/orig -> origin/gh/guangyey/87/orig 2025-04-25T04:11:48.9450859Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-04-25T04:11:48.9451386Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-04-25T04:11:48.9451897Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-04-25T04:11:48.9452482Z * [new branch] gh/guilhermeleobas/101/base -> origin/gh/guilhermeleobas/101/base 2025-04-25T04:11:48.9453101Z * [new branch] gh/guilhermeleobas/101/head -> origin/gh/guilhermeleobas/101/head 2025-04-25T04:11:48.9453713Z * [new branch] gh/guilhermeleobas/101/orig -> origin/gh/guilhermeleobas/101/orig 2025-04-25T04:11:48.9454379Z * [new branch] gh/guilhermeleobas/102/base -> origin/gh/guilhermeleobas/102/base 2025-04-25T04:11:48.9455036Z * [new branch] gh/guilhermeleobas/102/head -> origin/gh/guilhermeleobas/102/head 2025-04-25T04:11:48.9455772Z * [new branch] gh/guilhermeleobas/102/orig -> origin/gh/guilhermeleobas/102/orig 2025-04-25T04:11:48.9456389Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-04-25T04:11:48.9456998Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-04-25T04:11:48.9927787Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-04-25T04:11:48.9928463Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-04-25T04:11:48.9929101Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-04-25T04:11:48.9929711Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-04-25T04:11:48.9930339Z * [new branch] gh/guilhermeleobas/109/base -> origin/gh/guilhermeleobas/109/base 2025-04-25T04:11:48.9930958Z * [new branch] gh/guilhermeleobas/109/head -> origin/gh/guilhermeleobas/109/head 2025-04-25T04:11:48.9931565Z * [new branch] gh/guilhermeleobas/109/orig -> origin/gh/guilhermeleobas/109/orig 2025-04-25T04:11:48.9932181Z * [new branch] gh/guilhermeleobas/11/base -> origin/gh/guilhermeleobas/11/base 2025-04-25T04:11:48.9932804Z * [new branch] gh/guilhermeleobas/11/head -> origin/gh/guilhermeleobas/11/head 2025-04-25T04:11:48.9933399Z * [new branch] gh/guilhermeleobas/11/orig -> origin/gh/guilhermeleobas/11/orig 2025-04-25T04:11:48.9934005Z * [new branch] gh/guilhermeleobas/111/base -> origin/gh/guilhermeleobas/111/base 2025-04-25T04:11:48.9934612Z * [new branch] gh/guilhermeleobas/111/head -> origin/gh/guilhermeleobas/111/head 2025-04-25T04:11:48.9935453Z * [new branch] gh/guilhermeleobas/111/orig -> origin/gh/guilhermeleobas/111/orig 2025-04-25T04:11:48.9936080Z * [new branch] gh/guilhermeleobas/113/base -> origin/gh/guilhermeleobas/113/base 2025-04-25T04:11:48.9936683Z * [new branch] gh/guilhermeleobas/113/head -> origin/gh/guilhermeleobas/113/head 2025-04-25T04:11:48.9937292Z * [new branch] gh/guilhermeleobas/113/orig -> origin/gh/guilhermeleobas/113/orig 2025-04-25T04:11:48.9937899Z * [new branch] gh/guilhermeleobas/114/base -> origin/gh/guilhermeleobas/114/base 2025-04-25T04:11:48.9938511Z * [new branch] gh/guilhermeleobas/114/head -> origin/gh/guilhermeleobas/114/head 2025-04-25T04:11:48.9939126Z * [new branch] gh/guilhermeleobas/114/orig -> origin/gh/guilhermeleobas/114/orig 2025-04-25T04:11:48.9939725Z * [new branch] gh/guilhermeleobas/115/base -> origin/gh/guilhermeleobas/115/base 2025-04-25T04:11:48.9940342Z * [new branch] gh/guilhermeleobas/115/head -> origin/gh/guilhermeleobas/115/head 2025-04-25T04:11:48.9940945Z * [new branch] gh/guilhermeleobas/115/orig -> origin/gh/guilhermeleobas/115/orig 2025-04-25T04:11:48.9941552Z * [new branch] gh/guilhermeleobas/116/base -> origin/gh/guilhermeleobas/116/base 2025-04-25T04:11:48.9942163Z * [new branch] gh/guilhermeleobas/116/head -> origin/gh/guilhermeleobas/116/head 2025-04-25T04:11:48.9942758Z * [new branch] gh/guilhermeleobas/116/orig -> origin/gh/guilhermeleobas/116/orig 2025-04-25T04:11:48.9943360Z * [new branch] gh/guilhermeleobas/117/base -> origin/gh/guilhermeleobas/117/base 2025-04-25T04:11:48.9943953Z * [new branch] gh/guilhermeleobas/117/head -> origin/gh/guilhermeleobas/117/head 2025-04-25T04:11:48.9944557Z * [new branch] gh/guilhermeleobas/117/orig -> origin/gh/guilhermeleobas/117/orig 2025-04-25T04:11:48.9945165Z * [new branch] gh/guilhermeleobas/118/base -> origin/gh/guilhermeleobas/118/base 2025-04-25T04:11:48.9945772Z * [new branch] gh/guilhermeleobas/118/head -> origin/gh/guilhermeleobas/118/head 2025-04-25T04:11:48.9946538Z * [new branch] gh/guilhermeleobas/118/orig -> origin/gh/guilhermeleobas/118/orig 2025-04-25T04:11:48.9947140Z * [new branch] gh/guilhermeleobas/119/base -> origin/gh/guilhermeleobas/119/base 2025-04-25T04:11:48.9947755Z * [new branch] gh/guilhermeleobas/119/head -> origin/gh/guilhermeleobas/119/head 2025-04-25T04:11:48.9948385Z * [new branch] gh/guilhermeleobas/119/orig -> origin/gh/guilhermeleobas/119/orig 2025-04-25T04:11:48.9948992Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-04-25T04:11:48.9949606Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-04-25T04:11:48.9950225Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-04-25T04:11:48.9950847Z * [new branch] gh/guilhermeleobas/121/base -> origin/gh/guilhermeleobas/121/base 2025-04-25T04:11:48.9951467Z * [new branch] gh/guilhermeleobas/121/head -> origin/gh/guilhermeleobas/121/head 2025-04-25T04:11:48.9952086Z * [new branch] gh/guilhermeleobas/121/orig -> origin/gh/guilhermeleobas/121/orig 2025-04-25T04:11:48.9952799Z * [new branch] gh/guilhermeleobas/122/base -> origin/gh/guilhermeleobas/122/base 2025-04-25T04:11:48.9953510Z * [new branch] gh/guilhermeleobas/122/head -> origin/gh/guilhermeleobas/122/head 2025-04-25T04:11:48.9954129Z * [new branch] gh/guilhermeleobas/122/orig -> origin/gh/guilhermeleobas/122/orig 2025-04-25T04:11:49.0395273Z * [new branch] gh/guilhermeleobas/123/base -> origin/gh/guilhermeleobas/123/base 2025-04-25T04:11:49.0395916Z * [new branch] gh/guilhermeleobas/123/head -> origin/gh/guilhermeleobas/123/head 2025-04-25T04:11:49.0396815Z * [new branch] gh/guilhermeleobas/123/orig -> origin/gh/guilhermeleobas/123/orig 2025-04-25T04:11:49.0397508Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-04-25T04:11:49.0398119Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-04-25T04:11:49.0398722Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-04-25T04:11:49.0399339Z * [new branch] gh/guilhermeleobas/125/base -> origin/gh/guilhermeleobas/125/base 2025-04-25T04:11:49.0399936Z * [new branch] gh/guilhermeleobas/125/head -> origin/gh/guilhermeleobas/125/head 2025-04-25T04:11:49.0400539Z * [new branch] gh/guilhermeleobas/125/orig -> origin/gh/guilhermeleobas/125/orig 2025-04-25T04:11:49.0401146Z * [new branch] gh/guilhermeleobas/126/base -> origin/gh/guilhermeleobas/126/base 2025-04-25T04:11:49.0401762Z * [new branch] gh/guilhermeleobas/126/head -> origin/gh/guilhermeleobas/126/head 2025-04-25T04:11:49.0402399Z * [new branch] gh/guilhermeleobas/126/orig -> origin/gh/guilhermeleobas/126/orig 2025-04-25T04:11:49.0403065Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-04-25T04:11:49.0403722Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-04-25T04:11:49.0404455Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-04-25T04:11:49.0405116Z * [new branch] gh/guilhermeleobas/128/base -> origin/gh/guilhermeleobas/128/base 2025-04-25T04:11:49.0405791Z * [new branch] gh/guilhermeleobas/128/head -> origin/gh/guilhermeleobas/128/head 2025-04-25T04:11:49.0406447Z * [new branch] gh/guilhermeleobas/128/orig -> origin/gh/guilhermeleobas/128/orig 2025-04-25T04:11:49.0407161Z * [new branch] gh/guilhermeleobas/129/base -> origin/gh/guilhermeleobas/129/base 2025-04-25T04:11:49.0407951Z * [new branch] gh/guilhermeleobas/129/head -> origin/gh/guilhermeleobas/129/head 2025-04-25T04:11:49.0408620Z * [new branch] gh/guilhermeleobas/129/orig -> origin/gh/guilhermeleobas/129/orig 2025-04-25T04:11:49.0409320Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-04-25T04:11:49.0409976Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-04-25T04:11:49.0410641Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-04-25T04:11:49.0411262Z * [new branch] gh/henrylhtsang/13/base -> origin/gh/henrylhtsang/13/base 2025-04-25T04:11:49.0411872Z * [new branch] gh/henrylhtsang/13/head -> origin/gh/henrylhtsang/13/head 2025-04-25T04:11:49.0412484Z * [new branch] gh/henrylhtsang/13/orig -> origin/gh/henrylhtsang/13/orig 2025-04-25T04:11:49.0413091Z * [new branch] gh/henrylhtsang/31/base -> origin/gh/henrylhtsang/31/base 2025-04-25T04:11:49.0413719Z * [new branch] gh/henrylhtsang/31/head -> origin/gh/henrylhtsang/31/head 2025-04-25T04:11:49.0414330Z * [new branch] gh/henrylhtsang/31/orig -> origin/gh/henrylhtsang/31/orig 2025-04-25T04:11:49.0414992Z * [new branch] gh/henrylhtsang/32/base -> origin/gh/henrylhtsang/32/base 2025-04-25T04:11:49.0415625Z * [new branch] gh/henrylhtsang/32/head -> origin/gh/henrylhtsang/32/head 2025-04-25T04:11:49.0416238Z * [new branch] gh/henrylhtsang/32/orig -> origin/gh/henrylhtsang/32/orig 2025-04-25T04:11:49.0416863Z * [new branch] gh/henrylhtsang/35/base -> origin/gh/henrylhtsang/35/base 2025-04-25T04:11:49.0417475Z * [new branch] gh/henrylhtsang/35/head -> origin/gh/henrylhtsang/35/head 2025-04-25T04:11:49.0418196Z * [new branch] gh/henrylhtsang/35/orig -> origin/gh/henrylhtsang/35/orig 2025-04-25T04:11:49.0418838Z * [new branch] gh/henrylhtsang/36/base -> origin/gh/henrylhtsang/36/base 2025-04-25T04:11:49.0419502Z * [new branch] gh/henrylhtsang/36/head -> origin/gh/henrylhtsang/36/head 2025-04-25T04:11:49.0420132Z * [new branch] gh/henrylhtsang/36/orig -> origin/gh/henrylhtsang/36/orig 2025-04-25T04:11:49.0420747Z * [new branch] gh/henrylhtsang/37/base -> origin/gh/henrylhtsang/37/base 2025-04-25T04:11:49.0421380Z * [new branch] gh/henrylhtsang/37/head -> origin/gh/henrylhtsang/37/head 2025-04-25T04:11:49.0422011Z * [new branch] gh/henrylhtsang/37/orig -> origin/gh/henrylhtsang/37/orig 2025-04-25T04:11:49.0422576Z * [new branch] gh/henrylhtsang/43/base -> origin/gh/henrylhtsang/43/base 2025-04-25T04:11:49.0423150Z * [new branch] gh/henrylhtsang/43/head -> origin/gh/henrylhtsang/43/head 2025-04-25T04:11:49.0825953Z * [new branch] gh/henrylhtsang/43/orig -> origin/gh/henrylhtsang/43/orig 2025-04-25T04:11:49.0826573Z * [new branch] gh/henrylhtsang/44/base -> origin/gh/henrylhtsang/44/base 2025-04-25T04:11:49.0827157Z * [new branch] gh/henrylhtsang/44/head -> origin/gh/henrylhtsang/44/head 2025-04-25T04:11:49.0827729Z * [new branch] gh/henrylhtsang/44/orig -> origin/gh/henrylhtsang/44/orig 2025-04-25T04:11:49.0828307Z * [new branch] gh/henrylhtsang/45/base -> origin/gh/henrylhtsang/45/base 2025-04-25T04:11:49.0828872Z * [new branch] gh/henrylhtsang/45/head -> origin/gh/henrylhtsang/45/head 2025-04-25T04:11:49.0829446Z * [new branch] gh/henrylhtsang/45/orig -> origin/gh/henrylhtsang/45/orig 2025-04-25T04:11:49.0830074Z * [new branch] gh/henrylhtsang/46/base -> origin/gh/henrylhtsang/46/base 2025-04-25T04:11:49.0830696Z * [new branch] gh/henrylhtsang/46/head -> origin/gh/henrylhtsang/46/head 2025-04-25T04:11:49.0831474Z * [new branch] gh/henrylhtsang/46/orig -> origin/gh/henrylhtsang/46/orig 2025-04-25T04:11:49.0832056Z * [new branch] gh/henrylhtsang/47/base -> origin/gh/henrylhtsang/47/base 2025-04-25T04:11:49.0832632Z * [new branch] gh/henrylhtsang/47/head -> origin/gh/henrylhtsang/47/head 2025-04-25T04:11:49.0833205Z * [new branch] gh/henrylhtsang/47/orig -> origin/gh/henrylhtsang/47/orig 2025-04-25T04:11:49.0833772Z * [new branch] gh/henrylhtsang/48/base -> origin/gh/henrylhtsang/48/base 2025-04-25T04:11:49.0834349Z * [new branch] gh/henrylhtsang/48/head -> origin/gh/henrylhtsang/48/head 2025-04-25T04:11:49.0834912Z * [new branch] gh/henrylhtsang/48/orig -> origin/gh/henrylhtsang/48/orig 2025-04-25T04:11:49.0835495Z * [new branch] gh/henrylhtsang/49/base -> origin/gh/henrylhtsang/49/base 2025-04-25T04:11:49.0836134Z * [new branch] gh/henrylhtsang/49/head -> origin/gh/henrylhtsang/49/head 2025-04-25T04:11:49.0836757Z * [new branch] gh/henrylhtsang/49/orig -> origin/gh/henrylhtsang/49/orig 2025-04-25T04:11:49.0837333Z * [new branch] gh/henrylhtsang/50/base -> origin/gh/henrylhtsang/50/base 2025-04-25T04:11:49.0837896Z * [new branch] gh/henrylhtsang/50/head -> origin/gh/henrylhtsang/50/head 2025-04-25T04:11:49.0838475Z * [new branch] gh/henrylhtsang/50/orig -> origin/gh/henrylhtsang/50/orig 2025-04-25T04:11:49.0839049Z * [new branch] gh/henrylhtsang/51/base -> origin/gh/henrylhtsang/51/base 2025-04-25T04:11:49.0839604Z * [new branch] gh/henrylhtsang/51/head -> origin/gh/henrylhtsang/51/head 2025-04-25T04:11:49.0840176Z * [new branch] gh/henrylhtsang/52/base -> origin/gh/henrylhtsang/52/base 2025-04-25T04:11:49.0840859Z * [new branch] gh/henrylhtsang/52/head -> origin/gh/henrylhtsang/52/head 2025-04-25T04:11:49.0841449Z * [new branch] gh/henrylhtsang/52/orig -> origin/gh/henrylhtsang/52/orig 2025-04-25T04:11:49.0842072Z * [new branch] gh/henrylhtsang/53/base -> origin/gh/henrylhtsang/53/base 2025-04-25T04:11:49.0842686Z * [new branch] gh/henrylhtsang/53/head -> origin/gh/henrylhtsang/53/head 2025-04-25T04:11:49.0843256Z * [new branch] gh/henrylhtsang/53/orig -> origin/gh/henrylhtsang/53/orig 2025-04-25T04:11:49.0843815Z * [new branch] gh/henrylhtsang/54/base -> origin/gh/henrylhtsang/54/base 2025-04-25T04:11:49.0844488Z * [new branch] gh/henrylhtsang/54/head -> origin/gh/henrylhtsang/54/head 2025-04-25T04:11:49.0845069Z * [new branch] gh/henrylhtsang/54/orig -> origin/gh/henrylhtsang/54/orig 2025-04-25T04:11:49.0845638Z * [new branch] gh/henrylhtsang/55/base -> origin/gh/henrylhtsang/55/base 2025-04-25T04:11:49.0846228Z * [new branch] gh/henrylhtsang/55/head -> origin/gh/henrylhtsang/55/head 2025-04-25T04:11:49.0846792Z * [new branch] gh/henrylhtsang/55/orig -> origin/gh/henrylhtsang/55/orig 2025-04-25T04:11:49.0847364Z * [new branch] gh/henrylhtsang/56/base -> origin/gh/henrylhtsang/56/base 2025-04-25T04:11:49.0847980Z * [new branch] gh/henrylhtsang/56/head -> origin/gh/henrylhtsang/56/head 2025-04-25T04:11:49.0848605Z * [new branch] gh/henrylhtsang/56/orig -> origin/gh/henrylhtsang/56/orig 2025-04-25T04:11:49.0849182Z * [new branch] gh/henrylhtsang/57/base -> origin/gh/henrylhtsang/57/base 2025-04-25T04:11:49.0849743Z * [new branch] gh/henrylhtsang/57/head -> origin/gh/henrylhtsang/57/head 2025-04-25T04:11:49.0850317Z * [new branch] gh/henrylhtsang/57/orig -> origin/gh/henrylhtsang/57/orig 2025-04-25T04:11:49.0850885Z * [new branch] gh/henrylhtsang/58/base -> origin/gh/henrylhtsang/58/base 2025-04-25T04:11:49.0851578Z * [new branch] gh/henrylhtsang/58/head -> origin/gh/henrylhtsang/58/head 2025-04-25T04:11:49.0852161Z * [new branch] gh/henrylhtsang/58/orig -> origin/gh/henrylhtsang/58/orig 2025-04-25T04:11:49.1310492Z * [new branch] gh/henrylhtsang/59/base -> origin/gh/henrylhtsang/59/base 2025-04-25T04:11:49.1311104Z * [new branch] gh/henrylhtsang/59/head -> origin/gh/henrylhtsang/59/head 2025-04-25T04:11:49.1311799Z * [new branch] gh/henrylhtsang/60/base -> origin/gh/henrylhtsang/60/base 2025-04-25T04:11:49.1312362Z * [new branch] gh/henrylhtsang/60/head -> origin/gh/henrylhtsang/60/head 2025-04-25T04:11:49.1312936Z * [new branch] gh/henrylhtsang/60/orig -> origin/gh/henrylhtsang/60/orig 2025-04-25T04:11:49.1313527Z * [new branch] gh/henrylhtsang/61/base -> origin/gh/henrylhtsang/61/base 2025-04-25T04:11:49.1314090Z * [new branch] gh/henrylhtsang/61/head -> origin/gh/henrylhtsang/61/head 2025-04-25T04:11:49.1314646Z * [new branch] gh/henrylhtsang/61/orig -> origin/gh/henrylhtsang/61/orig 2025-04-25T04:11:49.1315198Z * [new branch] gh/henrylhtsang/62/base -> origin/gh/henrylhtsang/62/base 2025-04-25T04:11:49.1315752Z * [new branch] gh/henrylhtsang/62/head -> origin/gh/henrylhtsang/62/head 2025-04-25T04:11:49.1316305Z * [new branch] gh/henrylhtsang/62/orig -> origin/gh/henrylhtsang/62/orig 2025-04-25T04:11:49.1316816Z * [new branch] gh/int3/36/base -> origin/gh/int3/36/base 2025-04-25T04:11:49.1317355Z * [new branch] gh/int3/36/head -> origin/gh/int3/36/head 2025-04-25T04:11:49.1317926Z * [new branch] gh/int3/36/orig -> origin/gh/int3/36/orig 2025-04-25T04:11:49.1318621Z * [new branch] gh/int3/45/base -> origin/gh/int3/45/base 2025-04-25T04:11:49.1319166Z * [new branch] gh/int3/45/head -> origin/gh/int3/45/head 2025-04-25T04:11:49.1319727Z * [new branch] gh/int3/45/orig -> origin/gh/int3/45/orig 2025-04-25T04:11:49.1320247Z * [new branch] gh/int3/46/base -> origin/gh/int3/46/base 2025-04-25T04:11:49.1320781Z * [new branch] gh/int3/46/head -> origin/gh/int3/46/head 2025-04-25T04:11:49.1321313Z * [new branch] gh/int3/46/orig -> origin/gh/int3/46/orig 2025-04-25T04:11:49.1321832Z * [new branch] gh/int3/47/base -> origin/gh/int3/47/base 2025-04-25T04:11:49.1322390Z * [new branch] gh/int3/47/head -> origin/gh/int3/47/head 2025-04-25T04:11:49.1322913Z * [new branch] gh/int3/47/orig -> origin/gh/int3/47/orig 2025-04-25T04:11:49.1323429Z * [new branch] gh/int3/55/base -> origin/gh/int3/55/base 2025-04-25T04:11:49.1323962Z * [new branch] gh/int3/55/head -> origin/gh/int3/55/head 2025-04-25T04:11:49.1324535Z * [new branch] gh/int3/55/orig -> origin/gh/int3/55/orig 2025-04-25T04:11:49.1325067Z * [new branch] gh/int3/79/base -> origin/gh/int3/79/base 2025-04-25T04:11:49.1325634Z * [new branch] gh/int3/79/head -> origin/gh/int3/79/head 2025-04-25T04:11:49.1326145Z * [new branch] gh/int3/79/orig -> origin/gh/int3/79/orig 2025-04-25T04:11:49.1326664Z * [new branch] gh/int3/94/base -> origin/gh/int3/94/base 2025-04-25T04:11:49.1327171Z * [new branch] gh/int3/94/head -> origin/gh/int3/94/head 2025-04-25T04:11:49.1327689Z * [new branch] gh/int3/94/orig -> origin/gh/int3/94/orig 2025-04-25T04:11:49.1328248Z * [new branch] gh/int3/95/base -> origin/gh/int3/95/base 2025-04-25T04:11:49.1328906Z * [new branch] gh/int3/95/head -> origin/gh/int3/95/head 2025-04-25T04:11:49.1329421Z * [new branch] gh/int3/95/orig -> origin/gh/int3/95/orig 2025-04-25T04:11:49.1329929Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-04-25T04:11:49.1330481Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-04-25T04:11:49.1331039Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-04-25T04:11:49.1331670Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-04-25T04:11:49.1332176Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-04-25T04:11:49.1332666Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-04-25T04:11:49.1333171Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-04-25T04:11:49.1333680Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-04-25T04:11:49.1334190Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-04-25T04:11:49.1334697Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-04-25T04:11:49.1335188Z * [new branch] gh/isuruf/112/base -> origin/gh/isuruf/112/base 2025-04-25T04:11:49.1335683Z * [new branch] gh/isuruf/112/head -> origin/gh/isuruf/112/head 2025-04-25T04:11:49.1336174Z * [new branch] gh/isuruf/112/orig -> origin/gh/isuruf/112/orig 2025-04-25T04:11:49.1787660Z * [new branch] gh/isuruf/115/base -> origin/gh/isuruf/115/base 2025-04-25T04:11:49.1788181Z * [new branch] gh/isuruf/115/head -> origin/gh/isuruf/115/head 2025-04-25T04:11:49.1788875Z * [new branch] gh/isuruf/115/orig -> origin/gh/isuruf/115/orig 2025-04-25T04:11:49.1789408Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-04-25T04:11:49.1789920Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-04-25T04:11:49.1790416Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-04-25T04:11:49.1790930Z * [new branch] gh/isuruf/119/base -> origin/gh/isuruf/119/base 2025-04-25T04:11:49.1791422Z * [new branch] gh/isuruf/119/head -> origin/gh/isuruf/119/head 2025-04-25T04:11:49.1791918Z * [new branch] gh/isuruf/119/orig -> origin/gh/isuruf/119/orig 2025-04-25T04:11:49.1792411Z * [new branch] gh/isuruf/120/base -> origin/gh/isuruf/120/base 2025-04-25T04:11:49.1792900Z * [new branch] gh/isuruf/120/head -> origin/gh/isuruf/120/head 2025-04-25T04:11:49.1793403Z * [new branch] gh/isuruf/120/orig -> origin/gh/isuruf/120/orig 2025-04-25T04:11:49.1793898Z * [new branch] gh/isuruf/122/base -> origin/gh/isuruf/122/base 2025-04-25T04:11:49.1794391Z * [new branch] gh/isuruf/122/head -> origin/gh/isuruf/122/head 2025-04-25T04:11:49.1794884Z * [new branch] gh/isuruf/122/orig -> origin/gh/isuruf/122/orig 2025-04-25T04:11:49.1795379Z * [new branch] gh/isuruf/125/base -> origin/gh/isuruf/125/base 2025-04-25T04:11:49.1795876Z * [new branch] gh/isuruf/125/head -> origin/gh/isuruf/125/head 2025-04-25T04:11:49.1796365Z * [new branch] gh/isuruf/125/orig -> origin/gh/isuruf/125/orig 2025-04-25T04:11:49.1796864Z * [new branch] gh/isuruf/126/base -> origin/gh/isuruf/126/base 2025-04-25T04:11:49.1797353Z * [new branch] gh/isuruf/126/head -> origin/gh/isuruf/126/head 2025-04-25T04:11:49.1797853Z * [new branch] gh/isuruf/126/orig -> origin/gh/isuruf/126/orig 2025-04-25T04:11:49.1798490Z * [new branch] gh/isuruf/127/base -> origin/gh/isuruf/127/base 2025-04-25T04:11:49.1798993Z * [new branch] gh/isuruf/127/head -> origin/gh/isuruf/127/head 2025-04-25T04:11:49.1799493Z * [new branch] gh/isuruf/127/orig -> origin/gh/isuruf/127/orig 2025-04-25T04:11:49.1799989Z * [new branch] gh/isuruf/128/base -> origin/gh/isuruf/128/base 2025-04-25T04:11:49.1800495Z * [new branch] gh/isuruf/128/head -> origin/gh/isuruf/128/head 2025-04-25T04:11:49.1800992Z * [new branch] gh/isuruf/128/orig -> origin/gh/isuruf/128/orig 2025-04-25T04:11:49.1801490Z * [new branch] gh/isuruf/130/base -> origin/gh/isuruf/130/base 2025-04-25T04:11:49.1801986Z * [new branch] gh/isuruf/130/head -> origin/gh/isuruf/130/head 2025-04-25T04:11:49.1802490Z * [new branch] gh/isuruf/130/orig -> origin/gh/isuruf/130/orig 2025-04-25T04:11:49.1802989Z * [new branch] gh/isuruf/132/base -> origin/gh/isuruf/132/base 2025-04-25T04:11:49.1803479Z * [new branch] gh/isuruf/132/head -> origin/gh/isuruf/132/head 2025-04-25T04:11:49.1803980Z * [new branch] gh/isuruf/132/orig -> origin/gh/isuruf/132/orig 2025-04-25T04:11:49.1804596Z * [new branch] gh/isuruf/133/base -> origin/gh/isuruf/133/base 2025-04-25T04:11:49.1805094Z * [new branch] gh/isuruf/133/head -> origin/gh/isuruf/133/head 2025-04-25T04:11:49.1805681Z * [new branch] gh/isuruf/133/orig -> origin/gh/isuruf/133/orig 2025-04-25T04:11:49.1806230Z * [new branch] gh/isuruf/135/base -> origin/gh/isuruf/135/base 2025-04-25T04:11:49.1806854Z * [new branch] gh/isuruf/135/head -> origin/gh/isuruf/135/head 2025-04-25T04:11:49.1807369Z * [new branch] gh/isuruf/135/orig -> origin/gh/isuruf/135/orig 2025-04-25T04:11:49.1807864Z * [new branch] gh/isuruf/136/base -> origin/gh/isuruf/136/base 2025-04-25T04:11:49.1808368Z * [new branch] gh/isuruf/136/head -> origin/gh/isuruf/136/head 2025-04-25T04:11:49.1808868Z * [new branch] gh/isuruf/136/orig -> origin/gh/isuruf/136/orig 2025-04-25T04:11:49.1809369Z * [new branch] gh/isuruf/137/base -> origin/gh/isuruf/137/base 2025-04-25T04:11:49.1809873Z * [new branch] gh/isuruf/137/head -> origin/gh/isuruf/137/head 2025-04-25T04:11:49.1810366Z * [new branch] gh/isuruf/137/orig -> origin/gh/isuruf/137/orig 2025-04-25T04:11:49.1810868Z * [new branch] gh/isuruf/138/base -> origin/gh/isuruf/138/base 2025-04-25T04:11:49.1811366Z * [new branch] gh/isuruf/138/head -> origin/gh/isuruf/138/head 2025-04-25T04:11:49.1811871Z * [new branch] gh/isuruf/138/orig -> origin/gh/isuruf/138/orig 2025-04-25T04:11:49.2254561Z * [new branch] gh/isuruf/139/base -> origin/gh/isuruf/139/base 2025-04-25T04:11:49.2255107Z * [new branch] gh/isuruf/139/head -> origin/gh/isuruf/139/head 2025-04-25T04:11:49.2255619Z * [new branch] gh/isuruf/139/orig -> origin/gh/isuruf/139/orig 2025-04-25T04:11:49.2256120Z * [new branch] gh/isuruf/140/base -> origin/gh/isuruf/140/base 2025-04-25T04:11:49.2256631Z * [new branch] gh/isuruf/140/head -> origin/gh/isuruf/140/head 2025-04-25T04:11:49.2257195Z * [new branch] gh/isuruf/140/orig -> origin/gh/isuruf/140/orig 2025-04-25T04:11:49.2257798Z * [new branch] gh/isuruf/39/base -> origin/gh/isuruf/39/base 2025-04-25T04:11:49.2258377Z * [new branch] gh/isuruf/39/head -> origin/gh/isuruf/39/head 2025-04-25T04:11:49.2259189Z * [new branch] gh/isuruf/39/orig -> origin/gh/isuruf/39/orig 2025-04-25T04:11:49.2259770Z * [new branch] gh/jamesjwu/100/base -> origin/gh/jamesjwu/100/base 2025-04-25T04:11:49.2260407Z * [new branch] gh/jamesjwu/100/head -> origin/gh/jamesjwu/100/head 2025-04-25T04:11:49.2260974Z * [new branch] gh/jamesjwu/100/orig -> origin/gh/jamesjwu/100/orig 2025-04-25T04:11:49.2261544Z * [new branch] gh/jamesjwu/102/base -> origin/gh/jamesjwu/102/base 2025-04-25T04:11:49.2262152Z * [new branch] gh/jamesjwu/102/head -> origin/gh/jamesjwu/102/head 2025-04-25T04:11:49.2262729Z * [new branch] gh/jamesjwu/105/base -> origin/gh/jamesjwu/105/base 2025-04-25T04:11:49.2263285Z * [new branch] gh/jamesjwu/105/head -> origin/gh/jamesjwu/105/head 2025-04-25T04:11:49.2263872Z * [new branch] gh/jamesjwu/105/orig -> origin/gh/jamesjwu/105/orig 2025-04-25T04:11:49.2264493Z * [new branch] gh/jamesjwu/108/base -> origin/gh/jamesjwu/108/base 2025-04-25T04:11:49.2265061Z * [new branch] gh/jamesjwu/108/head -> origin/gh/jamesjwu/108/head 2025-04-25T04:11:49.2265631Z * [new branch] gh/jamesjwu/108/orig -> origin/gh/jamesjwu/108/orig 2025-04-25T04:11:49.2266242Z * [new branch] gh/jamesjwu/111/base -> origin/gh/jamesjwu/111/base 2025-04-25T04:11:49.2266819Z * [new branch] gh/jamesjwu/111/head -> origin/gh/jamesjwu/111/head 2025-04-25T04:11:49.2267388Z * [new branch] gh/jamesjwu/111/orig -> origin/gh/jamesjwu/111/orig 2025-04-25T04:11:49.2267995Z * [new branch] gh/jamesjwu/113/base -> origin/gh/jamesjwu/113/base 2025-04-25T04:11:49.2268696Z * [new branch] gh/jamesjwu/113/head -> origin/gh/jamesjwu/113/head 2025-04-25T04:11:49.2269267Z * [new branch] gh/jamesjwu/113/orig -> origin/gh/jamesjwu/113/orig 2025-04-25T04:11:49.2269906Z * [new branch] gh/jamesjwu/114/base -> origin/gh/jamesjwu/114/base 2025-04-25T04:11:49.2270471Z * [new branch] gh/jamesjwu/114/head -> origin/gh/jamesjwu/114/head 2025-04-25T04:11:49.2271032Z * [new branch] gh/jamesjwu/114/orig -> origin/gh/jamesjwu/114/orig 2025-04-25T04:11:49.2271655Z * [new branch] gh/jamesjwu/120/base -> origin/gh/jamesjwu/120/base 2025-04-25T04:11:49.2272218Z * [new branch] gh/jamesjwu/120/head -> origin/gh/jamesjwu/120/head 2025-04-25T04:11:49.2272784Z * [new branch] gh/jamesjwu/120/orig -> origin/gh/jamesjwu/120/orig 2025-04-25T04:11:49.2273403Z * [new branch] gh/jamesjwu/122/base -> origin/gh/jamesjwu/122/base 2025-04-25T04:11:49.2273969Z * [new branch] gh/jamesjwu/122/head -> origin/gh/jamesjwu/122/head 2025-04-25T04:11:49.2274545Z * [new branch] gh/jamesjwu/122/orig -> origin/gh/jamesjwu/122/orig 2025-04-25T04:11:49.2275163Z * [new branch] gh/jamesjwu/123/base -> origin/gh/jamesjwu/123/base 2025-04-25T04:11:49.2275731Z * [new branch] gh/jamesjwu/123/head -> origin/gh/jamesjwu/123/head 2025-04-25T04:11:49.2276301Z * [new branch] gh/jamesjwu/123/orig -> origin/gh/jamesjwu/123/orig 2025-04-25T04:11:49.2276862Z * [new branch] gh/jamesjwu/124/base -> origin/gh/jamesjwu/124/base 2025-04-25T04:11:49.2277491Z * [new branch] gh/jamesjwu/124/head -> origin/gh/jamesjwu/124/head 2025-04-25T04:11:49.2278056Z * [new branch] gh/jamesjwu/124/orig -> origin/gh/jamesjwu/124/orig 2025-04-25T04:11:49.2278623Z * [new branch] gh/jamesjwu/125/base -> origin/gh/jamesjwu/125/base 2025-04-25T04:11:49.2279245Z * [new branch] gh/jamesjwu/125/head -> origin/gh/jamesjwu/125/head 2025-04-25T04:11:49.2279926Z * [new branch] gh/jamesjwu/125/orig -> origin/gh/jamesjwu/125/orig 2025-04-25T04:11:49.2280541Z * [new branch] gh/jamesjwu/127/base -> origin/gh/jamesjwu/127/base 2025-04-25T04:11:49.2281111Z * [new branch] gh/jamesjwu/127/head -> origin/gh/jamesjwu/127/head 2025-04-25T04:11:49.2281692Z * [new branch] gh/jamesjwu/127/orig -> origin/gh/jamesjwu/127/orig 2025-04-25T04:11:49.2702602Z * [new branch] gh/jamesjwu/128/base -> origin/gh/jamesjwu/128/base 2025-04-25T04:11:49.2703176Z * [new branch] gh/jamesjwu/128/head -> origin/gh/jamesjwu/128/head 2025-04-25T04:11:49.2703702Z * [new branch] gh/jamesjwu/128/orig -> origin/gh/jamesjwu/128/orig 2025-04-25T04:11:49.2704244Z * [new branch] gh/jamesjwu/129/base -> origin/gh/jamesjwu/129/base 2025-04-25T04:11:49.2704771Z * [new branch] gh/jamesjwu/129/head -> origin/gh/jamesjwu/129/head 2025-04-25T04:11:49.2705291Z * [new branch] gh/jamesjwu/129/orig -> origin/gh/jamesjwu/129/orig 2025-04-25T04:11:49.2705807Z * [new branch] gh/jamesjwu/130/base -> origin/gh/jamesjwu/130/base 2025-04-25T04:11:49.2706326Z * [new branch] gh/jamesjwu/130/head -> origin/gh/jamesjwu/130/head 2025-04-25T04:11:49.2706837Z * [new branch] gh/jamesjwu/130/orig -> origin/gh/jamesjwu/130/orig 2025-04-25T04:11:49.2707362Z * [new branch] gh/jamesjwu/131/base -> origin/gh/jamesjwu/131/base 2025-04-25T04:11:49.2707877Z * [new branch] gh/jamesjwu/131/head -> origin/gh/jamesjwu/131/head 2025-04-25T04:11:49.2708386Z * [new branch] gh/jamesjwu/131/orig -> origin/gh/jamesjwu/131/orig 2025-04-25T04:11:49.2709088Z * [new branch] gh/jamesjwu/132/base -> origin/gh/jamesjwu/132/base 2025-04-25T04:11:49.2709611Z * [new branch] gh/jamesjwu/132/head -> origin/gh/jamesjwu/132/head 2025-04-25T04:11:49.2710136Z * [new branch] gh/jamesjwu/132/orig -> origin/gh/jamesjwu/132/orig 2025-04-25T04:11:49.2710658Z * [new branch] gh/jamesjwu/133/base -> origin/gh/jamesjwu/133/base 2025-04-25T04:11:49.2711174Z * [new branch] gh/jamesjwu/133/head -> origin/gh/jamesjwu/133/head 2025-04-25T04:11:49.2711692Z * [new branch] gh/jamesjwu/133/orig -> origin/gh/jamesjwu/133/orig 2025-04-25T04:11:49.2712212Z * [new branch] gh/jamesjwu/134/base -> origin/gh/jamesjwu/134/base 2025-04-25T04:11:49.2712731Z * [new branch] gh/jamesjwu/134/head -> origin/gh/jamesjwu/134/head 2025-04-25T04:11:49.2713242Z * [new branch] gh/jamesjwu/134/orig -> origin/gh/jamesjwu/134/orig 2025-04-25T04:11:49.2713759Z * [new branch] gh/jamesjwu/135/base -> origin/gh/jamesjwu/135/base 2025-04-25T04:11:49.2714281Z * [new branch] gh/jamesjwu/135/head -> origin/gh/jamesjwu/135/head 2025-04-25T04:11:49.2714791Z * [new branch] gh/jamesjwu/135/orig -> origin/gh/jamesjwu/135/orig 2025-04-25T04:11:49.2715312Z * [new branch] gh/jamesjwu/136/base -> origin/gh/jamesjwu/136/base 2025-04-25T04:11:49.2715834Z * [new branch] gh/jamesjwu/136/head -> origin/gh/jamesjwu/136/head 2025-04-25T04:11:49.2716356Z * [new branch] gh/jamesjwu/136/orig -> origin/gh/jamesjwu/136/orig 2025-04-25T04:11:49.2716867Z * [new branch] gh/jamesjwu/137/base -> origin/gh/jamesjwu/137/base 2025-04-25T04:11:49.2717383Z * [new branch] gh/jamesjwu/137/head -> origin/gh/jamesjwu/137/head 2025-04-25T04:11:49.2717914Z * [new branch] gh/jamesjwu/137/orig -> origin/gh/jamesjwu/137/orig 2025-04-25T04:11:49.2718551Z * [new branch] gh/jamesjwu/138/base -> origin/gh/jamesjwu/138/base 2025-04-25T04:11:49.2719083Z * [new branch] gh/jamesjwu/138/head -> origin/gh/jamesjwu/138/head 2025-04-25T04:11:49.2719607Z * [new branch] gh/jamesjwu/138/orig -> origin/gh/jamesjwu/138/orig 2025-04-25T04:11:49.2720118Z * [new branch] gh/jamesjwu/139/base -> origin/gh/jamesjwu/139/base 2025-04-25T04:11:49.2720641Z * [new branch] gh/jamesjwu/139/head -> origin/gh/jamesjwu/139/head 2025-04-25T04:11:49.2721156Z * [new branch] gh/jamesjwu/139/orig -> origin/gh/jamesjwu/139/orig 2025-04-25T04:11:49.2721675Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-04-25T04:11:49.2722196Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-04-25T04:11:49.2722704Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-04-25T04:11:49.2723217Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-04-25T04:11:49.2723719Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-04-25T04:11:49.2724346Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-04-25T04:11:49.2724854Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-04-25T04:11:49.2725382Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-04-25T04:11:49.2725908Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-04-25T04:11:49.2726416Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-04-25T04:11:49.2726928Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-04-25T04:11:49.3167909Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-04-25T04:11:49.3168503Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-04-25T04:11:49.3169029Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-04-25T04:11:49.3169547Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-04-25T04:11:49.3170076Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-04-25T04:11:49.3170597Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-04-25T04:11:49.3171105Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-04-25T04:11:49.3171627Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-04-25T04:11:49.3172130Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-04-25T04:11:49.3172659Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-04-25T04:11:49.3173175Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-04-25T04:11:49.3173677Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-04-25T04:11:49.3174184Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-04-25T04:11:49.3174685Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-04-25T04:11:49.3175196Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-04-25T04:11:49.3175697Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-04-25T04:11:49.3176204Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-04-25T04:11:49.3176716Z * [new branch] gh/jamesjwu/97/base -> origin/gh/jamesjwu/97/base 2025-04-25T04:11:49.3177985Z * [new branch] gh/jamesjwu/97/head -> origin/gh/jamesjwu/97/head 2025-04-25T04:11:49.3178500Z * [new branch] gh/jamesjwu/97/orig -> origin/gh/jamesjwu/97/orig 2025-04-25T04:11:49.3179017Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-04-25T04:11:49.3179537Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-04-25T04:11:49.3180053Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-04-25T04:11:49.3180561Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-04-25T04:11:49.3181076Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-04-25T04:11:49.3181584Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-04-25T04:11:49.3182104Z * [new branch] gh/janeyx99/221/base -> origin/gh/janeyx99/221/base 2025-04-25T04:11:49.3182622Z * [new branch] gh/janeyx99/221/head -> origin/gh/janeyx99/221/head 2025-04-25T04:11:49.3183128Z * [new branch] gh/janeyx99/221/orig -> origin/gh/janeyx99/221/orig 2025-04-25T04:11:49.3183733Z * [new branch] gh/janeyx99/222/base -> origin/gh/janeyx99/222/base 2025-04-25T04:11:49.3184304Z * [new branch] gh/janeyx99/222/head -> origin/gh/janeyx99/222/head 2025-04-25T04:11:49.3184827Z * [new branch] gh/janeyx99/222/orig -> origin/gh/janeyx99/222/orig 2025-04-25T04:11:49.3185342Z * [new branch] gh/janeyx99/223/base -> origin/gh/janeyx99/223/base 2025-04-25T04:11:49.3185846Z * [new branch] gh/janeyx99/223/head -> origin/gh/janeyx99/223/head 2025-04-25T04:11:49.3186360Z * [new branch] gh/janeyx99/223/orig -> origin/gh/janeyx99/223/orig 2025-04-25T04:11:49.3186988Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-04-25T04:11:49.3187517Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-04-25T04:11:49.3188026Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-04-25T04:11:49.3188545Z * [new branch] gh/janeyx99/228/base -> origin/gh/janeyx99/228/base 2025-04-25T04:11:49.3189075Z * [new branch] gh/janeyx99/228/head -> origin/gh/janeyx99/228/head 2025-04-25T04:11:49.3189668Z * [new branch] gh/janeyx99/228/orig -> origin/gh/janeyx99/228/orig 2025-04-25T04:11:49.3190200Z * [new branch] gh/janeyx99/235/base -> origin/gh/janeyx99/235/base 2025-04-25T04:11:49.3190707Z * [new branch] gh/janeyx99/235/head -> origin/gh/janeyx99/235/head 2025-04-25T04:11:49.3191230Z * [new branch] gh/janeyx99/235/orig -> origin/gh/janeyx99/235/orig 2025-04-25T04:11:49.3191750Z * [new branch] gh/janeyx99/236/base -> origin/gh/janeyx99/236/base 2025-04-25T04:11:49.3192254Z * [new branch] gh/janeyx99/236/head -> origin/gh/janeyx99/236/head 2025-04-25T04:11:49.3662154Z * [new branch] gh/janeyx99/236/orig -> origin/gh/janeyx99/236/orig 2025-04-25T04:11:49.3662684Z * [new branch] gh/janeyx99/237/base -> origin/gh/janeyx99/237/base 2025-04-25T04:11:49.3663207Z * [new branch] gh/janeyx99/237/head -> origin/gh/janeyx99/237/head 2025-04-25T04:11:49.3663728Z * [new branch] gh/janeyx99/237/orig -> origin/gh/janeyx99/237/orig 2025-04-25T04:11:49.3664245Z * [new branch] gh/janeyx99/238/base -> origin/gh/janeyx99/238/base 2025-04-25T04:11:49.3664756Z * [new branch] gh/janeyx99/238/head -> origin/gh/janeyx99/238/head 2025-04-25T04:11:49.3665283Z * [new branch] gh/janeyx99/238/orig -> origin/gh/janeyx99/238/orig 2025-04-25T04:11:49.3666323Z * [new branch] gh/janeyx99/239/base -> origin/gh/janeyx99/239/base 2025-04-25T04:11:49.3666843Z * [new branch] gh/janeyx99/239/head -> origin/gh/janeyx99/239/head 2025-04-25T04:11:49.3667352Z * [new branch] gh/janeyx99/239/orig -> origin/gh/janeyx99/239/orig 2025-04-25T04:11:49.3667874Z * [new branch] gh/janeyx99/240/base -> origin/gh/janeyx99/240/base 2025-04-25T04:11:49.3668379Z * [new branch] gh/janeyx99/240/head -> origin/gh/janeyx99/240/head 2025-04-25T04:11:49.3668899Z * [new branch] gh/janeyx99/240/orig -> origin/gh/janeyx99/240/orig 2025-04-25T04:11:49.3669414Z * [new branch] gh/janeyx99/241/base -> origin/gh/janeyx99/241/base 2025-04-25T04:11:49.3669920Z * [new branch] gh/janeyx99/241/head -> origin/gh/janeyx99/241/head 2025-04-25T04:11:49.3670444Z * [new branch] gh/janeyx99/241/orig -> origin/gh/janeyx99/241/orig 2025-04-25T04:11:49.3670956Z * [new branch] gh/janeyx99/242/base -> origin/gh/janeyx99/242/base 2025-04-25T04:11:49.3671472Z * [new branch] gh/janeyx99/242/head -> origin/gh/janeyx99/242/head 2025-04-25T04:11:49.3671999Z * [new branch] gh/janeyx99/242/orig -> origin/gh/janeyx99/242/orig 2025-04-25T04:11:49.3672502Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-04-25T04:11:49.3673015Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-04-25T04:11:49.3673518Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-04-25T04:11:49.3674037Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-04-25T04:11:49.3674545Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-04-25T04:11:49.3676040Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-04-25T04:11:49.3676844Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-04-25T04:11:49.3677360Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-04-25T04:11:49.3677880Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-04-25T04:11:49.3678386Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-04-25T04:11:49.3678877Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-04-25T04:11:49.3679385Z * [new branch] gh/jansel/473/base -> origin/gh/jansel/473/base 2025-04-25T04:11:49.3679879Z * [new branch] gh/jansel/473/head -> origin/gh/jansel/473/head 2025-04-25T04:11:49.3680385Z * [new branch] gh/jansel/473/orig -> origin/gh/jansel/473/orig 2025-04-25T04:11:49.3680885Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-04-25T04:11:49.3681383Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-04-25T04:11:49.3681889Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-04-25T04:11:49.3682383Z * [new branch] gh/jansel/514/base -> origin/gh/jansel/514/base 2025-04-25T04:11:49.3682885Z * [new branch] gh/jansel/514/head -> origin/gh/jansel/514/head 2025-04-25T04:11:49.3683379Z * [new branch] gh/jansel/514/orig -> origin/gh/jansel/514/orig 2025-04-25T04:11:49.3683875Z * [new branch] gh/jansel/515/base -> origin/gh/jansel/515/base 2025-04-25T04:11:49.3684475Z * [new branch] gh/jansel/515/head -> origin/gh/jansel/515/head 2025-04-25T04:11:49.3684982Z * [new branch] gh/jansel/515/orig -> origin/gh/jansel/515/orig 2025-04-25T04:11:49.3685899Z * [new branch] gh/jansel/516/base -> origin/gh/jansel/516/base 2025-04-25T04:11:49.3686397Z * [new branch] gh/jansel/516/head -> origin/gh/jansel/516/head 2025-04-25T04:11:49.3686904Z * [new branch] gh/jansel/516/orig -> origin/gh/jansel/516/orig 2025-04-25T04:11:49.3687417Z * [new branch] gh/jansel/517/base -> origin/gh/jansel/517/base 2025-04-25T04:11:49.3687915Z * [new branch] gh/jansel/517/head -> origin/gh/jansel/517/head 2025-04-25T04:11:49.4308073Z * [new branch] gh/jansel/517/orig -> origin/gh/jansel/517/orig 2025-04-25T04:11:49.4308644Z * [new branch] gh/jansel/518/base -> origin/gh/jansel/518/base 2025-04-25T04:11:49.4309162Z * [new branch] gh/jansel/518/head -> origin/gh/jansel/518/head 2025-04-25T04:11:49.4309695Z * [new branch] gh/jansel/518/orig -> origin/gh/jansel/518/orig 2025-04-25T04:11:49.4310211Z * [new branch] gh/jansel/522/base -> origin/gh/jansel/522/base 2025-04-25T04:11:49.4310716Z * [new branch] gh/jansel/522/head -> origin/gh/jansel/522/head 2025-04-25T04:11:49.4311210Z * [new branch] gh/jansel/522/orig -> origin/gh/jansel/522/orig 2025-04-25T04:11:49.4311743Z * [new branch] gh/jbschlosser/208/base -> origin/gh/jbschlosser/208/base 2025-04-25T04:11:49.4312487Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-04-25T04:11:49.4313126Z * [new branch] gh/jbschlosser/208/orig -> origin/gh/jbschlosser/208/orig 2025-04-25T04:11:49.4313680Z * [new branch] gh/jbschlosser/214/base -> origin/gh/jbschlosser/214/base 2025-04-25T04:11:49.4314260Z * [new branch] gh/jbschlosser/214/head -> origin/gh/jbschlosser/214/head 2025-04-25T04:11:49.4315033Z * [new branch] gh/jbschlosser/214/orig -> origin/gh/jbschlosser/214/orig 2025-04-25T04:11:49.4315593Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-04-25T04:11:49.4316144Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-04-25T04:11:49.4316704Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-04-25T04:11:49.4317248Z * [new branch] gh/jbschlosser/228/base -> origin/gh/jbschlosser/228/base 2025-04-25T04:11:49.4317799Z * [new branch] gh/jbschlosser/228/head -> origin/gh/jbschlosser/228/head 2025-04-25T04:11:49.4318563Z * [new branch] gh/jbschlosser/228/orig -> origin/gh/jbschlosser/228/orig 2025-04-25T04:11:49.4319180Z * [new branch] gh/jbschlosser/229/base -> origin/gh/jbschlosser/229/base 2025-04-25T04:11:49.4319743Z * [new branch] gh/jbschlosser/229/head -> origin/gh/jbschlosser/229/head 2025-04-25T04:11:49.4320294Z * [new branch] gh/jbschlosser/229/orig -> origin/gh/jbschlosser/229/orig 2025-04-25T04:11:49.4320844Z * [new branch] gh/jbschlosser/232/base -> origin/gh/jbschlosser/232/base 2025-04-25T04:11:49.4321390Z * [new branch] gh/jbschlosser/232/head -> origin/gh/jbschlosser/232/head 2025-04-25T04:11:49.4321936Z * [new branch] gh/jbschlosser/232/orig -> origin/gh/jbschlosser/232/orig 2025-04-25T04:11:49.4322487Z * [new branch] gh/jerryzh168/855/base -> origin/gh/jerryzh168/855/base 2025-04-25T04:11:49.4323019Z * [new branch] gh/jerryzh168/855/head -> origin/gh/jerryzh168/855/head 2025-04-25T04:11:49.4323554Z * [new branch] gh/jerryzh168/855/orig -> origin/gh/jerryzh168/855/orig 2025-04-25T04:11:49.4324320Z * [new branch] gh/jiayisunx/34/base -> origin/gh/jiayisunx/34/base 2025-04-25T04:11:49.4324920Z * [new branch] gh/jiayisunx/34/head -> origin/gh/jiayisunx/34/head 2025-04-25T04:11:49.4325986Z * [new branch] gh/jiayisunx/34/orig -> origin/gh/jiayisunx/34/orig 2025-04-25T04:11:49.4326507Z * [new branch] gh/jiayisunx/37/base -> origin/gh/jiayisunx/37/base 2025-04-25T04:11:49.4327031Z * [new branch] gh/jiayisunx/37/head -> origin/gh/jiayisunx/37/head 2025-04-25T04:11:49.4327546Z * [new branch] gh/jiayisunx/37/orig -> origin/gh/jiayisunx/37/orig 2025-04-25T04:11:49.4328067Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-04-25T04:11:49.4328582Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-04-25T04:11:49.4329105Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-04-25T04:11:49.4329636Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-04-25T04:11:49.4330395Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-04-25T04:11:49.4330978Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-04-25T04:11:49.4331493Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-04-25T04:11:49.4332015Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-04-25T04:11:49.4332537Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-04-25T04:11:49.4333050Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-04-25T04:11:49.4333579Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-04-25T04:11:49.4334090Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-04-25T04:11:49.4764477Z * [new branch] gh/jiayisunx/62/base -> origin/gh/jiayisunx/62/base 2025-04-25T04:11:49.4765067Z * [new branch] gh/jiayisunx/62/head -> origin/gh/jiayisunx/62/head 2025-04-25T04:11:49.4765594Z * [new branch] gh/jiayisunx/62/orig -> origin/gh/jiayisunx/62/orig 2025-04-25T04:11:49.4766130Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-04-25T04:11:49.4766652Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-04-25T04:11:49.4767174Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-04-25T04:11:49.4767712Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-04-25T04:11:49.4768247Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-04-25T04:11:49.4769012Z * [new branch] gh/justinchuby/103/base -> origin/gh/justinchuby/103/base 2025-04-25T04:11:49.4769633Z * [new branch] gh/justinchuby/103/head -> origin/gh/justinchuby/103/head 2025-04-25T04:11:49.4770203Z * [new branch] gh/justinchuby/103/orig -> origin/gh/justinchuby/103/orig 2025-04-25T04:11:49.4770763Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-04-25T04:11:49.4771311Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-04-25T04:11:49.4771865Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-04-25T04:11:49.4772412Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-04-25T04:11:49.4772968Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-04-25T04:11:49.4773523Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-04-25T04:11:49.4774077Z * [new branch] gh/justinchuby/116/base -> origin/gh/justinchuby/116/base 2025-04-25T04:11:49.4775426Z * [new branch] gh/justinchuby/116/head -> origin/gh/justinchuby/116/head 2025-04-25T04:11:49.4775978Z * [new branch] gh/justinchuby/116/orig -> origin/gh/justinchuby/116/orig 2025-04-25T04:11:49.4776540Z * [new branch] gh/justinchuby/117/base -> origin/gh/justinchuby/117/base 2025-04-25T04:11:49.4777099Z * [new branch] gh/justinchuby/117/head -> origin/gh/justinchuby/117/head 2025-04-25T04:11:49.4777645Z * [new branch] gh/justinchuby/117/orig -> origin/gh/justinchuby/117/orig 2025-04-25T04:11:49.4778187Z * [new branch] gh/kadeng/12/base -> origin/gh/kadeng/12/base 2025-04-25T04:11:49.4778683Z * [new branch] gh/kadeng/12/head -> origin/gh/kadeng/12/head 2025-04-25T04:11:49.4779173Z * [new branch] gh/kadeng/13/base -> origin/gh/kadeng/13/base 2025-04-25T04:11:49.4779672Z * [new branch] gh/kadeng/13/head -> origin/gh/kadeng/13/head 2025-04-25T04:11:49.4780363Z * [new branch] gh/kadeng/14/base -> origin/gh/kadeng/14/base 2025-04-25T04:11:49.4780915Z * [new branch] gh/kadeng/14/head -> origin/gh/kadeng/14/head 2025-04-25T04:11:49.4781409Z * [new branch] gh/kadeng/16/base -> origin/gh/kadeng/16/base 2025-04-25T04:11:49.4781903Z * [new branch] gh/kadeng/16/head -> origin/gh/kadeng/16/head 2025-04-25T04:11:49.4782396Z * [new branch] gh/kadeng/6/base -> origin/gh/kadeng/6/base 2025-04-25T04:11:49.4782894Z * [new branch] gh/kadeng/6/head -> origin/gh/kadeng/6/head 2025-04-25T04:11:49.4783379Z * [new branch] gh/kadeng/7/base -> origin/gh/kadeng/7/base 2025-04-25T04:11:49.4783854Z * [new branch] gh/kadeng/9/base -> origin/gh/kadeng/9/base 2025-04-25T04:11:49.4784458Z * [new branch] gh/kadeng/9/head -> origin/gh/kadeng/9/head 2025-04-25T04:11:49.4784971Z * [new branch] gh/kkkkeeee/1/base -> origin/gh/kkkkeeee/1/base 2025-04-25T04:11:49.4785489Z * [new branch] gh/kkkkeeee/1/head -> origin/gh/kkkkeeee/1/head 2025-04-25T04:11:49.4786179Z * [new branch] gh/kkkkeeee/1/orig -> origin/gh/kkkkeeee/1/orig 2025-04-25T04:11:49.4786779Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-04-25T04:11:49.4787351Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-04-25T04:11:49.4787903Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-04-25T04:11:49.4788460Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-04-25T04:11:49.4789019Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-04-25T04:11:49.4789566Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-04-25T04:11:49.4790112Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-04-25T04:11:49.4790651Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-04-25T04:11:49.5228437Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-04-25T04:11:49.5229051Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-04-25T04:11:49.5229600Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-04-25T04:11:49.5230303Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-04-25T04:11:49.5230958Z * [new branch] gh/kurtamohler/35/base -> origin/gh/kurtamohler/35/base 2025-04-25T04:11:49.5231605Z * [new branch] gh/kurtamohler/35/head -> origin/gh/kurtamohler/35/head 2025-04-25T04:11:49.5232946Z * [new branch] gh/kurtamohler/35/orig -> origin/gh/kurtamohler/35/orig 2025-04-25T04:11:49.5233578Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-04-25T04:11:49.5234155Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-04-25T04:11:49.5234715Z * [new branch] gh/kwen2501/109/base -> origin/gh/kwen2501/109/base 2025-04-25T04:11:49.5235286Z * [new branch] gh/kwen2501/109/head -> origin/gh/kwen2501/109/head 2025-04-25T04:11:49.5235904Z * [new branch] gh/kwen2501/109/orig -> origin/gh/kwen2501/109/orig 2025-04-25T04:11:49.5236459Z * [new branch] gh/kwen2501/128/base -> origin/gh/kwen2501/128/base 2025-04-25T04:11:49.5237031Z * [new branch] gh/kwen2501/128/head -> origin/gh/kwen2501/128/head 2025-04-25T04:11:49.5237658Z * [new branch] gh/kwen2501/128/orig -> origin/gh/kwen2501/128/orig 2025-04-25T04:11:49.5238227Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-04-25T04:11:49.5238792Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-04-25T04:11:49.5239400Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-04-25T04:11:49.5239962Z * [new branch] gh/kwen2501/131/base -> origin/gh/kwen2501/131/base 2025-04-25T04:11:49.5240515Z * [new branch] gh/kwen2501/131/head -> origin/gh/kwen2501/131/head 2025-04-25T04:11:49.5241077Z * [new branch] gh/kwen2501/131/orig -> origin/gh/kwen2501/131/orig 2025-04-25T04:11:49.5241638Z * [new branch] gh/kwen2501/132/base -> origin/gh/kwen2501/132/base 2025-04-25T04:11:49.5242379Z * [new branch] gh/kwen2501/132/head -> origin/gh/kwen2501/132/head 2025-04-25T04:11:49.5258318Z * [new branch] gh/kwen2501/132/orig -> origin/gh/kwen2501/132/orig 2025-04-25T04:11:49.5259075Z * [new branch] gh/kwen2501/133/base -> origin/gh/kwen2501/133/base 2025-04-25T04:11:49.5259700Z * [new branch] gh/kwen2501/133/head -> origin/gh/kwen2501/133/head 2025-04-25T04:11:49.5260279Z * [new branch] gh/kwen2501/133/orig -> origin/gh/kwen2501/133/orig 2025-04-25T04:11:49.5260856Z * [new branch] gh/kwen2501/134/base -> origin/gh/kwen2501/134/base 2025-04-25T04:11:49.5261475Z * [new branch] gh/kwen2501/134/head -> origin/gh/kwen2501/134/head 2025-04-25T04:11:49.5262041Z * [new branch] gh/kwen2501/134/orig -> origin/gh/kwen2501/134/orig 2025-04-25T04:11:49.5262602Z * [new branch] gh/kwen2501/135/base -> origin/gh/kwen2501/135/base 2025-04-25T04:11:49.5263238Z * [new branch] gh/kwen2501/135/head -> origin/gh/kwen2501/135/head 2025-04-25T04:11:49.5263822Z * [new branch] gh/kwen2501/135/orig -> origin/gh/kwen2501/135/orig 2025-04-25T04:11:49.5264393Z * [new branch] gh/kwen2501/136/base -> origin/gh/kwen2501/136/base 2025-04-25T04:11:49.5265031Z * [new branch] gh/kwen2501/136/head -> origin/gh/kwen2501/136/head 2025-04-25T04:11:49.5265596Z * [new branch] gh/kwen2501/136/orig -> origin/gh/kwen2501/136/orig 2025-04-25T04:11:49.5266179Z * [new branch] gh/kwen2501/137/base -> origin/gh/kwen2501/137/base 2025-04-25T04:11:49.5266799Z * [new branch] gh/kwen2501/137/head -> origin/gh/kwen2501/137/head 2025-04-25T04:11:49.5267365Z * [new branch] gh/kwen2501/137/orig -> origin/gh/kwen2501/137/orig 2025-04-25T04:11:49.5267932Z * [new branch] gh/kwen2501/138/base -> origin/gh/kwen2501/138/base 2025-04-25T04:11:49.5269237Z * [new branch] gh/kwen2501/138/head -> origin/gh/kwen2501/138/head 2025-04-25T04:11:49.5269870Z * [new branch] gh/kwen2501/138/orig -> origin/gh/kwen2501/138/orig 2025-04-25T04:11:49.5270427Z * [new branch] gh/kwen2501/139/base -> origin/gh/kwen2501/139/base 2025-04-25T04:11:49.5271006Z * [new branch] gh/kwen2501/139/head -> origin/gh/kwen2501/139/head 2025-04-25T04:11:49.5271624Z * [new branch] gh/kwen2501/139/orig -> origin/gh/kwen2501/139/orig 2025-04-25T04:11:49.5272197Z * [new branch] gh/kwen2501/140/base -> origin/gh/kwen2501/140/base 2025-04-25T04:11:49.5699785Z * [new branch] gh/kwen2501/140/head -> origin/gh/kwen2501/140/head 2025-04-25T04:11:49.5700362Z * [new branch] gh/kwen2501/140/orig -> origin/gh/kwen2501/140/orig 2025-04-25T04:11:49.5700914Z * [new branch] gh/kwen2501/141/base -> origin/gh/kwen2501/141/base 2025-04-25T04:11:49.5701438Z * [new branch] gh/kwen2501/141/head -> origin/gh/kwen2501/141/head 2025-04-25T04:11:49.5701951Z * [new branch] gh/kwen2501/141/orig -> origin/gh/kwen2501/141/orig 2025-04-25T04:11:49.5702459Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-04-25T04:11:49.5702962Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-04-25T04:11:49.5703466Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-04-25T04:11:49.5703982Z * [new branch] gh/kwen2501/143/base -> origin/gh/kwen2501/143/base 2025-04-25T04:11:49.5704484Z * [new branch] gh/kwen2501/143/head -> origin/gh/kwen2501/143/head 2025-04-25T04:11:49.5704997Z * [new branch] gh/kwen2501/143/orig -> origin/gh/kwen2501/143/orig 2025-04-25T04:11:49.5705702Z * [new branch] gh/kwen2501/144/base -> origin/gh/kwen2501/144/base 2025-04-25T04:11:49.5706236Z * [new branch] gh/kwen2501/144/head -> origin/gh/kwen2501/144/head 2025-04-25T04:11:49.5706759Z * [new branch] gh/kwen2501/144/orig -> origin/gh/kwen2501/144/orig 2025-04-25T04:11:49.5707264Z * [new branch] gh/kwen2501/145/base -> origin/gh/kwen2501/145/base 2025-04-25T04:11:49.5707773Z * [new branch] gh/kwen2501/145/head -> origin/gh/kwen2501/145/head 2025-04-25T04:11:49.5708274Z * [new branch] gh/kwen2501/145/orig -> origin/gh/kwen2501/145/orig 2025-04-25T04:11:49.5708790Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-04-25T04:11:49.5709296Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-04-25T04:11:49.5709826Z * [new branch] gh/laithsakka/112/base -> origin/gh/laithsakka/112/base 2025-04-25T04:11:49.5710389Z * [new branch] gh/laithsakka/112/head -> origin/gh/laithsakka/112/head 2025-04-25T04:11:49.5710938Z * [new branch] gh/laithsakka/112/orig -> origin/gh/laithsakka/112/orig 2025-04-25T04:11:49.5711481Z * [new branch] gh/laithsakka/113/base -> origin/gh/laithsakka/113/base 2025-04-25T04:11:49.5712024Z * [new branch] gh/laithsakka/113/head -> origin/gh/laithsakka/113/head 2025-04-25T04:11:49.5712557Z * [new branch] gh/laithsakka/113/orig -> origin/gh/laithsakka/113/orig 2025-04-25T04:11:49.5713099Z * [new branch] gh/laithsakka/114/base -> origin/gh/laithsakka/114/base 2025-04-25T04:11:49.5713636Z * [new branch] gh/laithsakka/114/head -> origin/gh/laithsakka/114/head 2025-04-25T04:11:49.5714177Z * [new branch] gh/laithsakka/114/orig -> origin/gh/laithsakka/114/orig 2025-04-25T04:11:49.5714716Z * [new branch] gh/laithsakka/115/base -> origin/gh/laithsakka/115/base 2025-04-25T04:11:49.5715761Z * [new branch] gh/laithsakka/115/head -> origin/gh/laithsakka/115/head 2025-04-25T04:11:49.5716311Z * [new branch] gh/laithsakka/115/orig -> origin/gh/laithsakka/115/orig 2025-04-25T04:11:49.5716848Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-04-25T04:11:49.5717397Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-04-25T04:11:49.5717937Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-04-25T04:11:49.5718483Z * [new branch] gh/laithsakka/118/base -> origin/gh/laithsakka/118/base 2025-04-25T04:11:49.5719039Z * [new branch] gh/laithsakka/118/head -> origin/gh/laithsakka/118/head 2025-04-25T04:11:49.5719584Z * [new branch] gh/laithsakka/118/orig -> origin/gh/laithsakka/118/orig 2025-04-25T04:11:49.5720139Z * [new branch] gh/laithsakka/119/base -> origin/gh/laithsakka/119/base 2025-04-25T04:11:49.5720686Z * [new branch] gh/laithsakka/119/head -> origin/gh/laithsakka/119/head 2025-04-25T04:11:49.5721240Z * [new branch] gh/laithsakka/119/orig -> origin/gh/laithsakka/119/orig 2025-04-25T04:11:49.5721880Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-04-25T04:11:49.5722420Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-04-25T04:11:49.5723036Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-04-25T04:11:49.5723581Z * [new branch] gh/laithsakka/122/base -> origin/gh/laithsakka/122/base 2025-04-25T04:11:49.5724224Z * [new branch] gh/laithsakka/122/head -> origin/gh/laithsakka/122/head 2025-04-25T04:11:49.5724905Z * [new branch] gh/laithsakka/122/orig -> origin/gh/laithsakka/122/orig 2025-04-25T04:11:49.6138516Z * [new branch] gh/laithsakka/124/base -> origin/gh/laithsakka/124/base 2025-04-25T04:11:49.6139102Z * [new branch] gh/laithsakka/124/head -> origin/gh/laithsakka/124/head 2025-04-25T04:11:49.6139648Z * [new branch] gh/laithsakka/124/orig -> origin/gh/laithsakka/124/orig 2025-04-25T04:11:49.6140242Z * [new branch] gh/laithsakka/125/base -> origin/gh/laithsakka/125/base 2025-04-25T04:11:49.6140787Z * [new branch] gh/laithsakka/125/head -> origin/gh/laithsakka/125/head 2025-04-25T04:11:49.6141324Z * [new branch] gh/laithsakka/125/orig -> origin/gh/laithsakka/125/orig 2025-04-25T04:11:49.6141873Z * [new branch] gh/laithsakka/126/base -> origin/gh/laithsakka/126/base 2025-04-25T04:11:49.6142404Z * [new branch] gh/laithsakka/126/head -> origin/gh/laithsakka/126/head 2025-04-25T04:11:49.6142958Z * [new branch] gh/laithsakka/126/orig -> origin/gh/laithsakka/126/orig 2025-04-25T04:11:49.6143512Z * [new branch] gh/laithsakka/127/base -> origin/gh/laithsakka/127/base 2025-04-25T04:11:49.6144043Z * [new branch] gh/laithsakka/127/head -> origin/gh/laithsakka/127/head 2025-04-25T04:11:49.6144586Z * [new branch] gh/laithsakka/127/orig -> origin/gh/laithsakka/127/orig 2025-04-25T04:11:49.6145123Z * [new branch] gh/laithsakka/128/base -> origin/gh/laithsakka/128/base 2025-04-25T04:11:49.6145664Z * [new branch] gh/laithsakka/128/head -> origin/gh/laithsakka/128/head 2025-04-25T04:11:49.6146204Z * [new branch] gh/laithsakka/128/orig -> origin/gh/laithsakka/128/orig 2025-04-25T04:11:49.6146733Z * [new branch] gh/laithsakka/129/base -> origin/gh/laithsakka/129/base 2025-04-25T04:11:49.6147283Z * [new branch] gh/laithsakka/129/head -> origin/gh/laithsakka/129/head 2025-04-25T04:11:49.6148367Z * [new branch] gh/laithsakka/129/orig -> origin/gh/laithsakka/129/orig 2025-04-25T04:11:49.6148920Z * [new branch] gh/laithsakka/130/base -> origin/gh/laithsakka/130/base 2025-04-25T04:11:49.6149464Z * [new branch] gh/laithsakka/130/head -> origin/gh/laithsakka/130/head 2025-04-25T04:11:49.6150000Z * [new branch] gh/laithsakka/130/orig -> origin/gh/laithsakka/130/orig 2025-04-25T04:11:49.6150555Z * [new branch] gh/laithsakka/131/base -> origin/gh/laithsakka/131/base 2025-04-25T04:11:49.6151095Z * [new branch] gh/laithsakka/131/head -> origin/gh/laithsakka/131/head 2025-04-25T04:11:49.6151640Z * [new branch] gh/laithsakka/131/orig -> origin/gh/laithsakka/131/orig 2025-04-25T04:11:49.6152180Z * [new branch] gh/laithsakka/132/base -> origin/gh/laithsakka/132/base 2025-04-25T04:11:49.6152714Z * [new branch] gh/laithsakka/132/head -> origin/gh/laithsakka/132/head 2025-04-25T04:11:49.6153283Z * [new branch] gh/laithsakka/132/orig -> origin/gh/laithsakka/132/orig 2025-04-25T04:11:49.6153819Z * [new branch] gh/laithsakka/133/base -> origin/gh/laithsakka/133/base 2025-04-25T04:11:49.6154359Z * [new branch] gh/laithsakka/133/head -> origin/gh/laithsakka/133/head 2025-04-25T04:11:49.6154900Z * [new branch] gh/laithsakka/133/orig -> origin/gh/laithsakka/133/orig 2025-04-25T04:11:49.6155434Z * [new branch] gh/laithsakka/134/base -> origin/gh/laithsakka/134/base 2025-04-25T04:11:49.6155971Z * [new branch] gh/laithsakka/134/head -> origin/gh/laithsakka/134/head 2025-04-25T04:11:49.6156506Z * [new branch] gh/laithsakka/134/orig -> origin/gh/laithsakka/134/orig 2025-04-25T04:11:49.6157155Z * [new branch] gh/laithsakka/135/base -> origin/gh/laithsakka/135/base 2025-04-25T04:11:49.6157709Z * [new branch] gh/laithsakka/135/head -> origin/gh/laithsakka/135/head 2025-04-25T04:11:49.6158245Z * [new branch] gh/laithsakka/135/orig -> origin/gh/laithsakka/135/orig 2025-04-25T04:11:49.6158788Z * [new branch] gh/laithsakka/136/base -> origin/gh/laithsakka/136/base 2025-04-25T04:11:49.6159325Z * [new branch] gh/laithsakka/136/head -> origin/gh/laithsakka/136/head 2025-04-25T04:11:49.6159874Z * [new branch] gh/laithsakka/136/orig -> origin/gh/laithsakka/136/orig 2025-04-25T04:11:49.6160418Z * [new branch] gh/laithsakka/137/base -> origin/gh/laithsakka/137/base 2025-04-25T04:11:49.6160951Z * [new branch] gh/laithsakka/137/head -> origin/gh/laithsakka/137/head 2025-04-25T04:11:49.6161489Z * [new branch] gh/laithsakka/137/orig -> origin/gh/laithsakka/137/orig 2025-04-25T04:11:49.6162026Z * [new branch] gh/laithsakka/138/base -> origin/gh/laithsakka/138/base 2025-04-25T04:11:49.6162573Z * [new branch] gh/laithsakka/138/head -> origin/gh/laithsakka/138/head 2025-04-25T04:11:49.6163109Z * [new branch] gh/laithsakka/138/orig -> origin/gh/laithsakka/138/orig 2025-04-25T04:11:49.6163657Z * [new branch] gh/laithsakka/139/base -> origin/gh/laithsakka/139/base 2025-04-25T04:11:49.6578489Z * [new branch] gh/laithsakka/139/head -> origin/gh/laithsakka/139/head 2025-04-25T04:11:49.6579096Z * [new branch] gh/laithsakka/139/orig -> origin/gh/laithsakka/139/orig 2025-04-25T04:11:49.6579656Z * [new branch] gh/laithsakka/140/base -> origin/gh/laithsakka/140/base 2025-04-25T04:11:49.6580196Z * [new branch] gh/laithsakka/140/head -> origin/gh/laithsakka/140/head 2025-04-25T04:11:49.6580778Z * [new branch] gh/laithsakka/140/orig -> origin/gh/laithsakka/140/orig 2025-04-25T04:11:49.6581939Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-04-25T04:11:49.6582479Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-04-25T04:11:49.6583018Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-04-25T04:11:49.6583579Z * [new branch] gh/laithsakka/142/base -> origin/gh/laithsakka/142/base 2025-04-25T04:11:49.6584110Z * [new branch] gh/laithsakka/142/head -> origin/gh/laithsakka/142/head 2025-04-25T04:11:49.6584640Z * [new branch] gh/laithsakka/142/orig -> origin/gh/laithsakka/142/orig 2025-04-25T04:11:49.6585169Z * [new branch] gh/laithsakka/143/base -> origin/gh/laithsakka/143/base 2025-04-25T04:11:49.6585706Z * [new branch] gh/laithsakka/143/head -> origin/gh/laithsakka/143/head 2025-04-25T04:11:49.6586257Z * [new branch] gh/laithsakka/143/orig -> origin/gh/laithsakka/143/orig 2025-04-25T04:11:49.6586792Z * [new branch] gh/laithsakka/144/base -> origin/gh/laithsakka/144/base 2025-04-25T04:11:49.6587333Z * [new branch] gh/laithsakka/144/head -> origin/gh/laithsakka/144/head 2025-04-25T04:11:49.6587863Z * [new branch] gh/laithsakka/144/orig -> origin/gh/laithsakka/144/orig 2025-04-25T04:11:49.6588405Z * [new branch] gh/laithsakka/145/base -> origin/gh/laithsakka/145/base 2025-04-25T04:11:49.6588948Z * [new branch] gh/laithsakka/145/head -> origin/gh/laithsakka/145/head 2025-04-25T04:11:49.6589477Z * [new branch] gh/laithsakka/145/orig -> origin/gh/laithsakka/145/orig 2025-04-25T04:11:49.6590013Z * [new branch] gh/laithsakka/146/base -> origin/gh/laithsakka/146/base 2025-04-25T04:11:49.6590670Z * [new branch] gh/laithsakka/146/head -> origin/gh/laithsakka/146/head 2025-04-25T04:11:49.6591226Z * [new branch] gh/laithsakka/146/orig -> origin/gh/laithsakka/146/orig 2025-04-25T04:11:49.6591764Z * [new branch] gh/laithsakka/147/base -> origin/gh/laithsakka/147/base 2025-04-25T04:11:49.6592304Z * [new branch] gh/laithsakka/147/head -> origin/gh/laithsakka/147/head 2025-04-25T04:11:49.6592849Z * [new branch] gh/laithsakka/147/orig -> origin/gh/laithsakka/147/orig 2025-04-25T04:11:49.6593385Z * [new branch] gh/laithsakka/148/base -> origin/gh/laithsakka/148/base 2025-04-25T04:11:49.6593927Z * [new branch] gh/laithsakka/148/head -> origin/gh/laithsakka/148/head 2025-04-25T04:11:49.6594457Z * [new branch] gh/laithsakka/148/orig -> origin/gh/laithsakka/148/orig 2025-04-25T04:11:49.6594995Z * [new branch] gh/laithsakka/149/base -> origin/gh/laithsakka/149/base 2025-04-25T04:11:49.6595536Z * [new branch] gh/laithsakka/149/head -> origin/gh/laithsakka/149/head 2025-04-25T04:11:49.6596072Z * [new branch] gh/laithsakka/149/orig -> origin/gh/laithsakka/149/orig 2025-04-25T04:11:49.6596613Z * [new branch] gh/laithsakka/150/base -> origin/gh/laithsakka/150/base 2025-04-25T04:11:49.6597143Z * [new branch] gh/laithsakka/150/head -> origin/gh/laithsakka/150/head 2025-04-25T04:11:49.6597688Z * [new branch] gh/laithsakka/150/orig -> origin/gh/laithsakka/150/orig 2025-04-25T04:11:49.6598484Z * [new branch] gh/laithsakka/151/base -> origin/gh/laithsakka/151/base 2025-04-25T04:11:49.6599110Z * [new branch] gh/laithsakka/151/head -> origin/gh/laithsakka/151/head 2025-04-25T04:11:49.6599712Z * [new branch] gh/laithsakka/151/orig -> origin/gh/laithsakka/151/orig 2025-04-25T04:11:49.6600248Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-04-25T04:11:49.6601299Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-04-25T04:11:49.6601849Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-04-25T04:11:49.6602391Z * [new branch] gh/laithsakka/153/base -> origin/gh/laithsakka/153/base 2025-04-25T04:11:49.6602939Z * [new branch] gh/laithsakka/153/head -> origin/gh/laithsakka/153/head 2025-04-25T04:11:49.6603471Z * [new branch] gh/laithsakka/153/orig -> origin/gh/laithsakka/153/orig 2025-04-25T04:11:49.6604020Z * [new branch] gh/laithsakka/154/base -> origin/gh/laithsakka/154/base 2025-04-25T04:11:49.7049194Z * [new branch] gh/laithsakka/154/head -> origin/gh/laithsakka/154/head 2025-04-25T04:11:49.7049823Z * [new branch] gh/laithsakka/154/orig -> origin/gh/laithsakka/154/orig 2025-04-25T04:11:49.7050407Z * [new branch] gh/laithsakka/155/base -> origin/gh/laithsakka/155/base 2025-04-25T04:11:49.7050957Z * [new branch] gh/laithsakka/155/head -> origin/gh/laithsakka/155/head 2025-04-25T04:11:49.7051505Z * [new branch] gh/laithsakka/155/orig -> origin/gh/laithsakka/155/orig 2025-04-25T04:11:49.7052055Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-04-25T04:11:49.7052588Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-04-25T04:11:49.7053136Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-04-25T04:11:49.7053669Z * [new branch] gh/laithsakka/157/base -> origin/gh/laithsakka/157/base 2025-04-25T04:11:49.7054209Z * [new branch] gh/laithsakka/157/head -> origin/gh/laithsakka/157/head 2025-04-25T04:11:49.7054757Z * [new branch] gh/laithsakka/157/orig -> origin/gh/laithsakka/157/orig 2025-04-25T04:11:49.7055481Z * [new branch] gh/laithsakka/158/base -> origin/gh/laithsakka/158/base 2025-04-25T04:11:49.7056043Z * [new branch] gh/laithsakka/158/head -> origin/gh/laithsakka/158/head 2025-04-25T04:11:49.7056593Z * [new branch] gh/laithsakka/158/orig -> origin/gh/laithsakka/158/orig 2025-04-25T04:11:49.7057137Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-04-25T04:11:49.7057678Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-04-25T04:11:49.7058215Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-04-25T04:11:49.7058762Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-04-25T04:11:49.7059296Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-04-25T04:11:49.7059837Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-04-25T04:11:49.7060380Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-04-25T04:11:49.7060910Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-04-25T04:11:49.7061449Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-04-25T04:11:49.7061995Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-04-25T04:11:49.7062524Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-04-25T04:11:49.7063058Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-04-25T04:11:49.7063583Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-04-25T04:11:49.7064116Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-04-25T04:11:49.7064705Z * [new branch] gh/leslie-fang-intel/189/base -> origin/gh/leslie-fang-intel/189/base 2025-04-25T04:11:49.7065831Z * [new branch] gh/leslie-fang-intel/189/head -> origin/gh/leslie-fang-intel/189/head 2025-04-25T04:11:49.7066480Z * [new branch] gh/leslie-fang-intel/189/orig -> origin/gh/leslie-fang-intel/189/orig 2025-04-25T04:11:49.7067102Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-04-25T04:11:49.7067732Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-04-25T04:11:49.7068352Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-04-25T04:11:49.7068965Z * [new branch] gh/leslie-fang-intel/191/base -> origin/gh/leslie-fang-intel/191/base 2025-04-25T04:11:49.7069602Z * [new branch] gh/leslie-fang-intel/191/head -> origin/gh/leslie-fang-intel/191/head 2025-04-25T04:11:49.7070221Z * [new branch] gh/leslie-fang-intel/191/orig -> origin/gh/leslie-fang-intel/191/orig 2025-04-25T04:11:49.7070851Z * [new branch] gh/leslie-fang-intel/192/base -> origin/gh/leslie-fang-intel/192/base 2025-04-25T04:11:49.7071478Z * [new branch] gh/leslie-fang-intel/192/head -> origin/gh/leslie-fang-intel/192/head 2025-04-25T04:11:49.7072106Z * [new branch] gh/leslie-fang-intel/192/orig -> origin/gh/leslie-fang-intel/192/orig 2025-04-25T04:11:49.7072737Z * [new branch] gh/leslie-fang-intel/193/base -> origin/gh/leslie-fang-intel/193/base 2025-04-25T04:11:49.7073353Z * [new branch] gh/leslie-fang-intel/193/head -> origin/gh/leslie-fang-intel/193/head 2025-04-25T04:11:49.7073983Z * [new branch] gh/leslie-fang-intel/193/orig -> origin/gh/leslie-fang-intel/193/orig 2025-04-25T04:11:49.7074600Z * [new branch] gh/leslie-fang-intel/194/base -> origin/gh/leslie-fang-intel/194/base 2025-04-25T04:11:49.7517435Z * [new branch] gh/leslie-fang-intel/194/head -> origin/gh/leslie-fang-intel/194/head 2025-04-25T04:11:49.7518194Z * [new branch] gh/leslie-fang-intel/194/orig -> origin/gh/leslie-fang-intel/194/orig 2025-04-25T04:11:49.7518800Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-04-25T04:11:49.7519356Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-04-25T04:11:49.7519897Z * [new branch] gh/lucaskabela/1/orig -> origin/gh/lucaskabela/1/orig 2025-04-25T04:11:49.7520437Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-04-25T04:11:49.7520984Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-04-25T04:11:49.7521528Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-04-25T04:11:49.7522062Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-04-25T04:11:49.7522604Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-04-25T04:11:49.7523126Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-04-25T04:11:49.7523661Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-04-25T04:11:49.7524260Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-04-25T04:11:49.7524790Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-04-25T04:11:49.7525389Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-04-25T04:11:49.7525972Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-04-25T04:11:49.7526564Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-04-25T04:11:49.7527094Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-04-25T04:11:49.7527776Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-04-25T04:11:49.7528318Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-04-25T04:11:49.7528849Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-04-25T04:11:49.7529387Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-04-25T04:11:49.7529914Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-04-25T04:11:49.7530453Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-04-25T04:11:49.7530985Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-04-25T04:11:49.7531521Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-04-25T04:11:49.7532068Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-04-25T04:11:49.7532598Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-04-25T04:11:49.7533145Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-04-25T04:11:49.7533685Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-04-25T04:11:49.7534210Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-04-25T04:11:49.7534713Z * [new branch] gh/lw/10/base -> origin/gh/lw/10/base 2025-04-25T04:11:49.7535161Z * [new branch] gh/lw/10/head -> origin/gh/lw/10/head 2025-04-25T04:11:49.7535614Z * [new branch] gh/lw/10/orig -> origin/gh/lw/10/orig 2025-04-25T04:11:49.7536161Z * [new branch] gh/lw/11/base -> origin/gh/lw/11/base 2025-04-25T04:11:49.7536621Z * [new branch] gh/lw/11/head -> origin/gh/lw/11/head 2025-04-25T04:11:49.7537069Z * [new branch] gh/lw/11/orig -> origin/gh/lw/11/orig 2025-04-25T04:11:49.7537506Z * [new branch] gh/lw/12/base -> origin/gh/lw/12/base 2025-04-25T04:11:49.7537960Z * [new branch] gh/lw/12/head -> origin/gh/lw/12/head 2025-04-25T04:11:49.7538406Z * [new branch] gh/lw/12/orig -> origin/gh/lw/12/orig 2025-04-25T04:11:49.7538860Z * [new branch] gh/lw/13/base -> origin/gh/lw/13/base 2025-04-25T04:11:49.7539310Z * [new branch] gh/lw/13/head -> origin/gh/lw/13/head 2025-04-25T04:11:49.7539749Z * [new branch] gh/lw/13/orig -> origin/gh/lw/13/orig 2025-04-25T04:11:49.7540202Z * [new branch] gh/lw/14/base -> origin/gh/lw/14/base 2025-04-25T04:11:49.7540643Z * [new branch] gh/lw/14/head -> origin/gh/lw/14/head 2025-04-25T04:11:49.7541090Z * [new branch] gh/lw/14/orig -> origin/gh/lw/14/orig 2025-04-25T04:11:49.7541544Z * [new branch] gh/lw/15/base -> origin/gh/lw/15/base 2025-04-25T04:11:49.8027457Z * [new branch] gh/lw/15/head -> origin/gh/lw/15/head 2025-04-25T04:11:49.8027984Z * [new branch] gh/lw/15/orig -> origin/gh/lw/15/orig 2025-04-25T04:11:49.8028449Z * [new branch] gh/lw/5/head -> origin/gh/lw/5/head 2025-04-25T04:11:49.8028910Z * [new branch] gh/lw/8/base -> origin/gh/lw/8/base 2025-04-25T04:11:49.8029391Z * [new branch] gh/lw/8/head -> origin/gh/lw/8/head 2025-04-25T04:11:49.8029830Z * [new branch] gh/lw/8/orig -> origin/gh/lw/8/orig 2025-04-25T04:11:49.8030539Z * [new branch] gh/lw/9/base -> origin/gh/lw/9/base 2025-04-25T04:11:49.8030986Z * [new branch] gh/lw/9/head -> origin/gh/lw/9/head 2025-04-25T04:11:49.8031448Z * [new branch] gh/lw/9/orig -> origin/gh/lw/9/orig 2025-04-25T04:11:49.8031937Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-04-25T04:11:49.8032439Z * [new branch] gh/malfet/155/base -> origin/gh/malfet/155/base 2025-04-25T04:11:49.8032946Z * [new branch] gh/malfet/155/head -> origin/gh/malfet/155/head 2025-04-25T04:11:49.8033442Z * [new branch] gh/malfet/155/orig -> origin/gh/malfet/155/orig 2025-04-25T04:11:49.8033944Z * [new branch] gh/malfet/159/base -> origin/gh/malfet/159/base 2025-04-25T04:11:49.8034449Z * [new branch] gh/malfet/159/head -> origin/gh/malfet/159/head 2025-04-25T04:11:49.8034949Z * [new branch] gh/malfet/159/orig -> origin/gh/malfet/159/orig 2025-04-25T04:11:49.8035449Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-04-25T04:11:49.8035939Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-04-25T04:11:49.8036441Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-04-25T04:11:49.8036931Z * [new branch] gh/malfet/197/base -> origin/gh/malfet/197/base 2025-04-25T04:11:49.8037432Z * [new branch] gh/malfet/197/head -> origin/gh/malfet/197/head 2025-04-25T04:11:49.8037930Z * [new branch] gh/malfet/197/orig -> origin/gh/malfet/197/orig 2025-04-25T04:11:49.8038423Z * [new branch] gh/malfet/237/base -> origin/gh/malfet/237/base 2025-04-25T04:11:49.8039054Z * [new branch] gh/malfet/237/head -> origin/gh/malfet/237/head 2025-04-25T04:11:49.8039559Z * [new branch] gh/malfet/237/orig -> origin/gh/malfet/237/orig 2025-04-25T04:11:49.8040067Z * [new branch] gh/malfet/241/base -> origin/gh/malfet/241/base 2025-04-25T04:11:49.8040564Z * [new branch] gh/malfet/241/head -> origin/gh/malfet/241/head 2025-04-25T04:11:49.8041058Z * [new branch] gh/malfet/241/orig -> origin/gh/malfet/241/orig 2025-04-25T04:11:49.8041573Z * [new branch] gh/malfet/243/base -> origin/gh/malfet/243/base 2025-04-25T04:11:49.8042075Z * [new branch] gh/malfet/243/head -> origin/gh/malfet/243/head 2025-04-25T04:11:49.8042572Z * [new branch] gh/malfet/243/orig -> origin/gh/malfet/243/orig 2025-04-25T04:11:49.8043068Z * [new branch] gh/malfet/244/base -> origin/gh/malfet/244/base 2025-04-25T04:11:49.8043565Z * [new branch] gh/malfet/244/head -> origin/gh/malfet/244/head 2025-04-25T04:11:49.8044172Z * [new branch] gh/malfet/244/orig -> origin/gh/malfet/244/orig 2025-04-25T04:11:49.8044669Z * [new branch] gh/malfet/245/base -> origin/gh/malfet/245/base 2025-04-25T04:11:49.8045171Z * [new branch] gh/malfet/245/head -> origin/gh/malfet/245/head 2025-04-25T04:11:49.8045659Z * [new branch] gh/malfet/245/orig -> origin/gh/malfet/245/orig 2025-04-25T04:11:49.8046163Z * [new branch] gh/malfet/246/base -> origin/gh/malfet/246/base 2025-04-25T04:11:49.8046661Z * [new branch] gh/malfet/246/head -> origin/gh/malfet/246/head 2025-04-25T04:11:49.8047149Z * [new branch] gh/malfet/246/orig -> origin/gh/malfet/246/orig 2025-04-25T04:11:49.8047664Z * [new branch] gh/malfet/247/base -> origin/gh/malfet/247/base 2025-04-25T04:11:49.8048162Z * [new branch] gh/malfet/247/head -> origin/gh/malfet/247/head 2025-04-25T04:11:49.8048784Z * [new branch] gh/malfet/247/orig -> origin/gh/malfet/247/orig 2025-04-25T04:11:49.8049288Z * [new branch] gh/malfet/248/base -> origin/gh/malfet/248/base 2025-04-25T04:11:49.8049787Z * [new branch] gh/malfet/248/head -> origin/gh/malfet/248/head 2025-04-25T04:11:49.8050286Z * [new branch] gh/malfet/248/orig -> origin/gh/malfet/248/orig 2025-04-25T04:11:49.8050775Z * [new branch] gh/malfet/249/base -> origin/gh/malfet/249/base 2025-04-25T04:11:49.8051277Z * [new branch] gh/malfet/249/head -> origin/gh/malfet/249/head 2025-04-25T04:11:49.8051782Z * [new branch] gh/malfet/249/orig -> origin/gh/malfet/249/orig 2025-04-25T04:11:49.8482087Z * [new branch] gh/malfet/250/base -> origin/gh/malfet/250/base 2025-04-25T04:11:49.8482743Z * [new branch] gh/malfet/250/head -> origin/gh/malfet/250/head 2025-04-25T04:11:49.8483363Z * [new branch] gh/malfet/250/orig -> origin/gh/malfet/250/orig 2025-04-25T04:11:49.8483918Z * [new branch] gh/malfet/251/base -> origin/gh/malfet/251/base 2025-04-25T04:11:49.8484538Z * [new branch] gh/malfet/251/head -> origin/gh/malfet/251/head 2025-04-25T04:11:49.8485125Z * [new branch] gh/malfet/251/orig -> origin/gh/malfet/251/orig 2025-04-25T04:11:49.8485686Z * [new branch] gh/malfet/252/base -> origin/gh/malfet/252/base 2025-04-25T04:11:49.8486225Z * [new branch] gh/malfet/252/head -> origin/gh/malfet/252/head 2025-04-25T04:11:49.8486783Z * [new branch] gh/malfet/252/orig -> origin/gh/malfet/252/orig 2025-04-25T04:11:49.8487361Z * [new branch] gh/malfet/253/base -> origin/gh/malfet/253/base 2025-04-25T04:11:49.8488091Z * [new branch] gh/malfet/253/head -> origin/gh/malfet/253/head 2025-04-25T04:11:49.8488692Z * [new branch] gh/malfet/253/orig -> origin/gh/malfet/253/orig 2025-04-25T04:11:49.8489241Z * [new branch] gh/malfet/254/base -> origin/gh/malfet/254/base 2025-04-25T04:11:49.8489789Z * [new branch] gh/malfet/254/head -> origin/gh/malfet/254/head 2025-04-25T04:11:49.8490327Z * [new branch] gh/malfet/254/orig -> origin/gh/malfet/254/orig 2025-04-25T04:11:49.8490875Z * [new branch] gh/malfet/255/base -> origin/gh/malfet/255/base 2025-04-25T04:11:49.8491467Z * [new branch] gh/malfet/255/head -> origin/gh/malfet/255/head 2025-04-25T04:11:49.8492003Z * [new branch] gh/malfet/255/orig -> origin/gh/malfet/255/orig 2025-04-25T04:11:49.8492555Z * [new branch] gh/malfet/256/base -> origin/gh/malfet/256/base 2025-04-25T04:11:49.8493103Z * [new branch] gh/malfet/256/head -> origin/gh/malfet/256/head 2025-04-25T04:11:49.8493650Z * [new branch] gh/malfet/256/orig -> origin/gh/malfet/256/orig 2025-04-25T04:11:49.8494159Z * [new branch] gh/malfet/257/base -> origin/gh/malfet/257/base 2025-04-25T04:11:49.8494648Z * [new branch] gh/malfet/257/head -> origin/gh/malfet/257/head 2025-04-25T04:11:49.8495155Z * [new branch] gh/malfet/257/orig -> origin/gh/malfet/257/orig 2025-04-25T04:11:49.8495647Z * [new branch] gh/malfet/258/base -> origin/gh/malfet/258/base 2025-04-25T04:11:49.8496148Z * [new branch] gh/malfet/258/head -> origin/gh/malfet/258/head 2025-04-25T04:11:49.8496645Z * [new branch] gh/malfet/258/orig -> origin/gh/malfet/258/orig 2025-04-25T04:11:49.8497141Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-04-25T04:11:49.8497769Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-04-25T04:11:49.8498271Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-04-25T04:11:49.8498825Z * [new branch] gh/malfet/260/base -> origin/gh/malfet/260/base 2025-04-25T04:11:49.8499415Z * [new branch] gh/malfet/260/head -> origin/gh/malfet/260/head 2025-04-25T04:11:49.8499908Z * [new branch] gh/malfet/260/orig -> origin/gh/malfet/260/orig 2025-04-25T04:11:49.8500408Z * [new branch] gh/malfet/261/base -> origin/gh/malfet/261/base 2025-04-25T04:11:49.8500897Z * [new branch] gh/malfet/261/head -> origin/gh/malfet/261/head 2025-04-25T04:11:49.8501401Z * [new branch] gh/malfet/261/orig -> origin/gh/malfet/261/orig 2025-04-25T04:11:49.8501913Z * [new branch] gh/malfet/262/base -> origin/gh/malfet/262/base 2025-04-25T04:11:49.8502408Z * [new branch] gh/malfet/262/head -> origin/gh/malfet/262/head 2025-04-25T04:11:49.8502898Z * [new branch] gh/malfet/262/orig -> origin/gh/malfet/262/orig 2025-04-25T04:11:49.8503462Z * [new branch] gh/malfet/263/base -> origin/gh/malfet/263/base 2025-04-25T04:11:49.8503965Z * [new branch] gh/malfet/263/head -> origin/gh/malfet/263/head 2025-04-25T04:11:49.8504459Z * [new branch] gh/malfet/263/orig -> origin/gh/malfet/263/orig 2025-04-25T04:11:49.8505014Z * [new branch] gh/malfet/264/base -> origin/gh/malfet/264/base 2025-04-25T04:11:49.8505569Z * [new branch] gh/malfet/264/head -> origin/gh/malfet/264/head 2025-04-25T04:11:49.8506060Z * [new branch] gh/malfet/264/orig -> origin/gh/malfet/264/orig 2025-04-25T04:11:49.8506676Z * [new branch] gh/malfet/265/base -> origin/gh/malfet/265/base 2025-04-25T04:11:49.8507181Z * [new branch] gh/malfet/265/head -> origin/gh/malfet/265/head 2025-04-25T04:11:49.8973111Z * [new branch] gh/malfet/265/orig -> origin/gh/malfet/265/orig 2025-04-25T04:11:49.8973656Z * [new branch] gh/malfet/266/base -> origin/gh/malfet/266/base 2025-04-25T04:11:49.8974175Z * [new branch] gh/malfet/266/head -> origin/gh/malfet/266/head 2025-04-25T04:11:49.8974680Z * [new branch] gh/malfet/266/orig -> origin/gh/malfet/266/orig 2025-04-25T04:11:49.8975177Z * [new branch] gh/malfet/267/base -> origin/gh/malfet/267/base 2025-04-25T04:11:49.8975678Z * [new branch] gh/malfet/267/head -> origin/gh/malfet/267/head 2025-04-25T04:11:49.8976169Z * [new branch] gh/malfet/267/orig -> origin/gh/malfet/267/orig 2025-04-25T04:11:49.8976696Z * [new branch] gh/malfet/268/base -> origin/gh/malfet/268/base 2025-04-25T04:11:49.8977269Z * [new branch] gh/malfet/268/head -> origin/gh/malfet/268/head 2025-04-25T04:11:49.8977809Z * [new branch] gh/malfet/268/orig -> origin/gh/malfet/268/orig 2025-04-25T04:11:49.8978361Z * [new branch] gh/malfet/269/base -> origin/gh/malfet/269/base 2025-04-25T04:11:49.8978853Z * [new branch] gh/malfet/269/head -> origin/gh/malfet/269/head 2025-04-25T04:11:49.8979356Z * [new branch] gh/malfet/269/orig -> origin/gh/malfet/269/orig 2025-04-25T04:11:49.8979853Z * [new branch] gh/malfet/270/base -> origin/gh/malfet/270/base 2025-04-25T04:11:49.8980365Z * [new branch] gh/malfet/270/head -> origin/gh/malfet/270/head 2025-04-25T04:11:49.8980869Z * [new branch] gh/malfet/270/orig -> origin/gh/malfet/270/orig 2025-04-25T04:11:49.8981373Z * [new branch] gh/malfet/271/base -> origin/gh/malfet/271/base 2025-04-25T04:11:49.8983150Z * [new branch] gh/malfet/271/head -> origin/gh/malfet/271/head 2025-04-25T04:11:49.8983740Z * [new branch] gh/malfet/271/orig -> origin/gh/malfet/271/orig 2025-04-25T04:11:49.8984337Z * [new branch] gh/malfet/272/base -> origin/gh/malfet/272/base 2025-04-25T04:11:49.8984846Z * [new branch] gh/malfet/272/head -> origin/gh/malfet/272/head 2025-04-25T04:11:49.8985347Z * [new branch] gh/malfet/272/orig -> origin/gh/malfet/272/orig 2025-04-25T04:11:49.8985833Z * [new branch] gh/malfet/273/base -> origin/gh/malfet/273/base 2025-04-25T04:11:49.8986333Z * [new branch] gh/malfet/273/head -> origin/gh/malfet/273/head 2025-04-25T04:11:49.8986850Z * [new branch] gh/malfet/273/orig -> origin/gh/malfet/273/orig 2025-04-25T04:11:49.8987363Z * [new branch] gh/malfet/274/base -> origin/gh/malfet/274/base 2025-04-25T04:11:49.8987867Z * [new branch] gh/malfet/274/head -> origin/gh/malfet/274/head 2025-04-25T04:11:49.8988371Z * [new branch] gh/malfet/274/orig -> origin/gh/malfet/274/orig 2025-04-25T04:11:49.8988890Z * [new branch] gh/malfet/275/base -> origin/gh/malfet/275/base 2025-04-25T04:11:49.8989381Z * [new branch] gh/malfet/275/head -> origin/gh/malfet/275/head 2025-04-25T04:11:49.8989964Z * [new branch] gh/malfet/275/orig -> origin/gh/malfet/275/orig 2025-04-25T04:11:49.8990514Z * [new branch] gh/malfet/276/base -> origin/gh/malfet/276/base 2025-04-25T04:11:49.8991050Z * [new branch] gh/malfet/276/head -> origin/gh/malfet/276/head 2025-04-25T04:11:49.8991739Z * [new branch] gh/malfet/276/orig -> origin/gh/malfet/276/orig 2025-04-25T04:11:49.8992242Z * [new branch] gh/malfet/277/base -> origin/gh/malfet/277/base 2025-04-25T04:11:49.8992740Z * [new branch] gh/malfet/277/head -> origin/gh/malfet/277/head 2025-04-25T04:11:49.8993239Z * [new branch] gh/malfet/277/orig -> origin/gh/malfet/277/orig 2025-04-25T04:11:49.8993741Z * [new branch] gh/malfet/278/base -> origin/gh/malfet/278/base 2025-04-25T04:11:49.8994244Z * [new branch] gh/malfet/278/head -> origin/gh/malfet/278/head 2025-04-25T04:11:49.8994733Z * [new branch] gh/malfet/278/orig -> origin/gh/malfet/278/orig 2025-04-25T04:11:49.8995238Z * [new branch] gh/malfet/279/base -> origin/gh/malfet/279/base 2025-04-25T04:11:49.8995743Z * [new branch] gh/malfet/279/head -> origin/gh/malfet/279/head 2025-04-25T04:11:49.8996289Z * [new branch] gh/malfet/279/orig -> origin/gh/malfet/279/orig 2025-04-25T04:11:49.8996845Z * [new branch] gh/malfet/280/base -> origin/gh/malfet/280/base 2025-04-25T04:11:49.8997383Z * [new branch] gh/malfet/280/head -> origin/gh/malfet/280/head 2025-04-25T04:11:49.8997885Z * [new branch] gh/malfet/280/orig -> origin/gh/malfet/280/orig 2025-04-25T04:11:49.8998381Z * [new branch] gh/malfet/281/base -> origin/gh/malfet/281/base 2025-04-25T04:11:49.8998892Z * [new branch] gh/malfet/281/head -> origin/gh/malfet/281/head 2025-04-25T04:11:49.9439840Z * [new branch] gh/malfet/281/orig -> origin/gh/malfet/281/orig 2025-04-25T04:11:49.9440398Z * [new branch] gh/malfet/282/base -> origin/gh/malfet/282/base 2025-04-25T04:11:49.9440965Z * [new branch] gh/malfet/282/head -> origin/gh/malfet/282/head 2025-04-25T04:11:49.9441543Z * [new branch] gh/malfet/282/orig -> origin/gh/malfet/282/orig 2025-04-25T04:11:49.9442582Z * [new branch] gh/malfet/283/base -> origin/gh/malfet/283/base 2025-04-25T04:11:49.9443100Z * [new branch] gh/malfet/283/head -> origin/gh/malfet/283/head 2025-04-25T04:11:49.9443591Z * [new branch] gh/malfet/283/orig -> origin/gh/malfet/283/orig 2025-04-25T04:11:49.9444208Z * [new branch] gh/malfet/284/base -> origin/gh/malfet/284/base 2025-04-25T04:11:49.9444710Z * [new branch] gh/malfet/284/head -> origin/gh/malfet/284/head 2025-04-25T04:11:49.9445208Z * [new branch] gh/malfet/284/orig -> origin/gh/malfet/284/orig 2025-04-25T04:11:49.9445716Z * [new branch] gh/malfet/285/base -> origin/gh/malfet/285/base 2025-04-25T04:11:49.9446214Z * [new branch] gh/malfet/285/head -> origin/gh/malfet/285/head 2025-04-25T04:11:49.9446725Z * [new branch] gh/malfet/285/orig -> origin/gh/malfet/285/orig 2025-04-25T04:11:49.9447291Z * [new branch] gh/malfet/286/base -> origin/gh/malfet/286/base 2025-04-25T04:11:49.9447834Z * [new branch] gh/malfet/286/head -> origin/gh/malfet/286/head 2025-04-25T04:11:49.9448334Z * [new branch] gh/malfet/286/orig -> origin/gh/malfet/286/orig 2025-04-25T04:11:49.9448831Z * [new branch] gh/malfet/287/base -> origin/gh/malfet/287/base 2025-04-25T04:11:49.9449336Z * [new branch] gh/malfet/287/head -> origin/gh/malfet/287/head 2025-04-25T04:11:49.9449829Z * [new branch] gh/malfet/287/orig -> origin/gh/malfet/287/orig 2025-04-25T04:11:49.9450327Z * [new branch] gh/malfet/288/base -> origin/gh/malfet/288/base 2025-04-25T04:11:49.9450819Z * [new branch] gh/malfet/288/head -> origin/gh/malfet/288/head 2025-04-25T04:11:49.9451854Z * [new branch] gh/malfet/288/orig -> origin/gh/malfet/288/orig 2025-04-25T04:11:49.9452376Z * [new branch] gh/malfet/289/base -> origin/gh/malfet/289/base 2025-04-25T04:11:49.9452934Z * [new branch] gh/malfet/289/head -> origin/gh/malfet/289/head 2025-04-25T04:11:49.9453477Z * [new branch] gh/malfet/289/orig -> origin/gh/malfet/289/orig 2025-04-25T04:11:49.9453978Z * [new branch] gh/malfet/290/base -> origin/gh/malfet/290/base 2025-04-25T04:11:49.9454466Z * [new branch] gh/malfet/290/head -> origin/gh/malfet/290/head 2025-04-25T04:11:49.9454963Z * [new branch] gh/malfet/290/orig -> origin/gh/malfet/290/orig 2025-04-25T04:11:49.9455456Z * [new branch] gh/malfet/291/base -> origin/gh/malfet/291/base 2025-04-25T04:11:49.9455963Z * [new branch] gh/malfet/291/head -> origin/gh/malfet/291/head 2025-04-25T04:11:49.9456476Z * [new branch] gh/malfet/291/orig -> origin/gh/malfet/291/orig 2025-04-25T04:11:49.9456967Z * [new branch] gh/malfet/292/base -> origin/gh/malfet/292/base 2025-04-25T04:11:49.9457464Z * [new branch] gh/malfet/292/head -> origin/gh/malfet/292/head 2025-04-25T04:11:49.9457954Z * [new branch] gh/malfet/292/orig -> origin/gh/malfet/292/orig 2025-04-25T04:11:49.9458460Z * [new branch] gh/malfet/293/base -> origin/gh/malfet/293/base 2025-04-25T04:11:49.9459012Z * [new branch] gh/malfet/293/head -> origin/gh/malfet/293/head 2025-04-25T04:11:49.9459567Z * [new branch] gh/malfet/293/orig -> origin/gh/malfet/293/orig 2025-04-25T04:11:49.9460079Z * [new branch] gh/malfet/294/base -> origin/gh/malfet/294/base 2025-04-25T04:11:49.9460579Z * [new branch] gh/malfet/294/head -> origin/gh/malfet/294/head 2025-04-25T04:11:49.9461386Z * [new branch] gh/malfet/294/orig -> origin/gh/malfet/294/orig 2025-04-25T04:11:49.9461879Z * [new branch] gh/malfet/295/base -> origin/gh/malfet/295/base 2025-04-25T04:11:49.9462390Z * [new branch] gh/malfet/295/head -> origin/gh/malfet/295/head 2025-04-25T04:11:49.9462893Z * [new branch] gh/malfet/295/orig -> origin/gh/malfet/295/orig 2025-04-25T04:11:49.9463384Z * [new branch] gh/malfet/296/base -> origin/gh/malfet/296/base 2025-04-25T04:11:49.9463893Z * [new branch] gh/malfet/296/head -> origin/gh/malfet/296/head 2025-04-25T04:11:49.9464384Z * [new branch] gh/malfet/296/orig -> origin/gh/malfet/296/orig 2025-04-25T04:11:49.9464950Z * [new branch] gh/malfet/297/base -> origin/gh/malfet/297/base 2025-04-25T04:11:49.9465559Z * [new branch] gh/malfet/297/head -> origin/gh/malfet/297/head 2025-04-25T04:11:50.0651465Z * [new branch] gh/malfet/297/orig -> origin/gh/malfet/297/orig 2025-04-25T04:11:50.0652053Z * [new branch] gh/malfet/298/base -> origin/gh/malfet/298/base 2025-04-25T04:11:50.0652563Z * [new branch] gh/malfet/298/head -> origin/gh/malfet/298/head 2025-04-25T04:11:50.0653070Z * [new branch] gh/malfet/298/orig -> origin/gh/malfet/298/orig 2025-04-25T04:11:50.0653592Z * [new branch] gh/malfet/299/base -> origin/gh/malfet/299/base 2025-04-25T04:11:50.0654084Z * [new branch] gh/malfet/299/head -> origin/gh/malfet/299/head 2025-04-25T04:11:50.0654594Z * [new branch] gh/malfet/299/orig -> origin/gh/malfet/299/orig 2025-04-25T04:11:50.0655156Z * [new branch] gh/malfet/300/base -> origin/gh/malfet/300/base 2025-04-25T04:11:50.0655868Z * [new branch] gh/malfet/300/head -> origin/gh/malfet/300/head 2025-04-25T04:11:50.0656454Z * [new branch] gh/malfet/300/orig -> origin/gh/malfet/300/orig 2025-04-25T04:11:50.0656949Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-04-25T04:11:50.0657589Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-04-25T04:11:50.0658082Z * [new branch] gh/malfet/96/base -> origin/gh/malfet/96/base 2025-04-25T04:11:50.0658584Z * [new branch] gh/malfet/96/head -> origin/gh/malfet/96/head 2025-04-25T04:11:50.0659093Z * [new branch] gh/malfet/96/orig -> origin/gh/malfet/96/orig 2025-04-25T04:11:50.0659588Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-04-25T04:11:50.0660109Z * [new branch] gh/masnesral/184/base -> origin/gh/masnesral/184/base 2025-04-25T04:11:50.0660645Z * [new branch] gh/masnesral/184/head -> origin/gh/masnesral/184/head 2025-04-25T04:11:50.0661180Z * [new branch] gh/masnesral/184/orig -> origin/gh/masnesral/184/orig 2025-04-25T04:11:50.0661713Z * [new branch] gh/masnesral/185/base -> origin/gh/masnesral/185/base 2025-04-25T04:11:50.0662233Z * [new branch] gh/masnesral/185/head -> origin/gh/masnesral/185/head 2025-04-25T04:11:50.0662766Z * [new branch] gh/masnesral/185/orig -> origin/gh/masnesral/185/orig 2025-04-25T04:11:50.0663288Z * [new branch] gh/masnesral/186/base -> origin/gh/masnesral/186/base 2025-04-25T04:11:50.0663820Z * [new branch] gh/masnesral/186/head -> origin/gh/masnesral/186/head 2025-04-25T04:11:50.0664343Z * [new branch] gh/masnesral/186/orig -> origin/gh/masnesral/186/orig 2025-04-25T04:11:50.0664865Z * [new branch] gh/masnesral/187/base -> origin/gh/masnesral/187/base 2025-04-25T04:11:50.0665548Z * [new branch] gh/masnesral/187/head -> origin/gh/masnesral/187/head 2025-04-25T04:11:50.0666074Z * [new branch] gh/masnesral/187/orig -> origin/gh/masnesral/187/orig 2025-04-25T04:11:50.0666619Z * [new branch] gh/masnesral/188/base -> origin/gh/masnesral/188/base 2025-04-25T04:11:50.0667206Z * [new branch] gh/masnesral/188/head -> origin/gh/masnesral/188/head 2025-04-25T04:11:50.0667735Z * [new branch] gh/masnesral/188/orig -> origin/gh/masnesral/188/orig 2025-04-25T04:11:50.0668259Z * [new branch] gh/masnesral/189/base -> origin/gh/masnesral/189/base 2025-04-25T04:11:50.0668782Z * [new branch] gh/masnesral/189/head -> origin/gh/masnesral/189/head 2025-04-25T04:11:50.0669321Z * [new branch] gh/masnesral/189/orig -> origin/gh/masnesral/189/orig 2025-04-25T04:11:50.0669857Z * [new branch] gh/masnesral/190/base -> origin/gh/masnesral/190/base 2025-04-25T04:11:50.0670392Z * [new branch] gh/masnesral/190/head -> origin/gh/masnesral/190/head 2025-04-25T04:11:50.0670919Z * [new branch] gh/masnesral/190/orig -> origin/gh/masnesral/190/orig 2025-04-25T04:11:50.0671441Z * [new branch] gh/masnesral/191/base -> origin/gh/masnesral/191/base 2025-04-25T04:11:50.0671970Z * [new branch] gh/masnesral/191/head -> origin/gh/masnesral/191/head 2025-04-25T04:11:50.0672486Z * [new branch] gh/masnesral/191/orig -> origin/gh/masnesral/191/orig 2025-04-25T04:11:50.0673015Z * [new branch] gh/masnesral/192/base -> origin/gh/masnesral/192/base 2025-04-25T04:11:50.0673542Z * [new branch] gh/masnesral/192/head -> origin/gh/masnesral/192/head 2025-04-25T04:11:50.0674060Z * [new branch] gh/masnesral/192/orig -> origin/gh/masnesral/192/orig 2025-04-25T04:11:50.0674683Z * [new branch] gh/masnesral/193/base -> origin/gh/masnesral/193/base 2025-04-25T04:11:50.0675212Z * [new branch] gh/masnesral/193/head -> origin/gh/masnesral/193/head 2025-04-25T04:11:50.0675748Z * [new branch] gh/masnesral/193/orig -> origin/gh/masnesral/193/orig 2025-04-25T04:11:50.1277556Z * [new branch] gh/masnesral/194/base -> origin/gh/masnesral/194/base 2025-04-25T04:11:50.1278139Z * [new branch] gh/masnesral/194/head -> origin/gh/masnesral/194/head 2025-04-25T04:11:50.1278691Z * [new branch] gh/masnesral/194/orig -> origin/gh/masnesral/194/orig 2025-04-25T04:11:50.1279214Z * [new branch] gh/masnesral/195/base -> origin/gh/masnesral/195/base 2025-04-25T04:11:50.1279743Z * [new branch] gh/masnesral/195/head -> origin/gh/masnesral/195/head 2025-04-25T04:11:50.1280297Z * [new branch] gh/masnesral/195/orig -> origin/gh/masnesral/195/orig 2025-04-25T04:11:50.1280855Z * [new branch] gh/masnesral/196/base -> origin/gh/masnesral/196/base 2025-04-25T04:11:50.1281382Z * [new branch] gh/masnesral/196/head -> origin/gh/masnesral/196/head 2025-04-25T04:11:50.1281910Z * [new branch] gh/masnesral/196/orig -> origin/gh/masnesral/196/orig 2025-04-25T04:11:50.1282442Z * [new branch] gh/masnesral/197/base -> origin/gh/masnesral/197/base 2025-04-25T04:11:50.1282963Z * [new branch] gh/masnesral/197/head -> origin/gh/masnesral/197/head 2025-04-25T04:11:50.1283486Z * [new branch] gh/masnesral/197/orig -> origin/gh/masnesral/197/orig 2025-04-25T04:11:50.1284016Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-04-25T04:11:50.1284659Z * [new branch] gh/mcr229/1/base -> origin/gh/mcr229/1/base 2025-04-25T04:11:50.1285234Z * [new branch] gh/mcr229/1/head -> origin/gh/mcr229/1/head 2025-04-25T04:11:50.1285919Z * [new branch] gh/mcr229/1/orig -> origin/gh/mcr229/1/orig 2025-04-25T04:11:50.1286392Z * [new branch] gh/mcr229/2/base -> origin/gh/mcr229/2/base 2025-04-25T04:11:50.1286870Z * [new branch] gh/mcr229/2/head -> origin/gh/mcr229/2/head 2025-04-25T04:11:50.1287344Z * [new branch] gh/mcr229/2/orig -> origin/gh/mcr229/2/orig 2025-04-25T04:11:50.1287822Z * [new branch] gh/mcr229/3/base -> origin/gh/mcr229/3/base 2025-04-25T04:11:50.1288294Z * [new branch] gh/mcr229/3/head -> origin/gh/mcr229/3/head 2025-04-25T04:11:50.1288766Z * [new branch] gh/mcr229/3/orig -> origin/gh/mcr229/3/orig 2025-04-25T04:11:50.1289253Z * [new branch] gh/mcr229/4/base -> origin/gh/mcr229/4/base 2025-04-25T04:11:50.1289721Z * [new branch] gh/mcr229/4/head -> origin/gh/mcr229/4/head 2025-04-25T04:11:50.1290203Z * [new branch] gh/mcr229/4/orig -> origin/gh/mcr229/4/orig 2025-04-25T04:11:50.1290700Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-04-25T04:11:50.1291228Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-04-25T04:11:50.1291747Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-04-25T04:11:50.1292254Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-04-25T04:11:50.1292770Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-04-25T04:11:50.1293339Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-04-25T04:11:50.1293865Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-04-25T04:11:50.1294508Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-04-25T04:11:50.1295023Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-04-25T04:11:50.1295543Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-04-25T04:11:50.1296054Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-04-25T04:11:50.1296581Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-04-25T04:11:50.1297113Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-04-25T04:11:50.1297629Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-04-25T04:11:50.1298209Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-04-25T04:11:50.1298842Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-04-25T04:11:50.1299484Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-04-25T04:11:50.1300103Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-04-25T04:11:50.1300733Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-04-25T04:11:50.1301360Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-04-25T04:11:50.1301979Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-04-25T04:11:50.1302667Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-04-25T04:11:50.1895504Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-04-25T04:11:50.1896215Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-04-25T04:11:50.1897075Z * [new branch] gh/mikaylagawarecki/304/base -> origin/gh/mikaylagawarecki/304/base 2025-04-25T04:11:50.1897707Z * [new branch] gh/mikaylagawarecki/304/head -> origin/gh/mikaylagawarecki/304/head 2025-04-25T04:11:50.1898351Z * [new branch] gh/mikaylagawarecki/304/orig -> origin/gh/mikaylagawarecki/304/orig 2025-04-25T04:11:50.1898981Z * [new branch] gh/mikaylagawarecki/307/base -> origin/gh/mikaylagawarecki/307/base 2025-04-25T04:11:50.1899713Z * [new branch] gh/mikaylagawarecki/307/head -> origin/gh/mikaylagawarecki/307/head 2025-04-25T04:11:50.1900355Z * [new branch] gh/mikaylagawarecki/307/orig -> origin/gh/mikaylagawarecki/307/orig 2025-04-25T04:11:50.1900987Z * [new branch] gh/mikaylagawarecki/310/base -> origin/gh/mikaylagawarecki/310/base 2025-04-25T04:11:50.1901626Z * [new branch] gh/mikaylagawarecki/310/head -> origin/gh/mikaylagawarecki/310/head 2025-04-25T04:11:50.1902264Z * [new branch] gh/mikaylagawarecki/310/orig -> origin/gh/mikaylagawarecki/310/orig 2025-04-25T04:11:50.1902833Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-04-25T04:11:50.1903343Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-04-25T04:11:50.1903829Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-04-25T04:11:50.1904327Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-04-25T04:11:50.1904815Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-04-25T04:11:50.1905361Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-04-25T04:11:50.1905912Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-04-25T04:11:50.1906524Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-04-25T04:11:50.1907050Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-04-25T04:11:50.1907575Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-04-25T04:11:50.1908059Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-04-25T04:11:50.1908548Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-04-25T04:11:50.1909031Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-04-25T04:11:50.1909529Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-04-25T04:11:50.1910008Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-04-25T04:11:50.1910498Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-04-25T04:11:50.1911053Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-04-25T04:11:50.1911590Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-04-25T04:11:50.1912088Z * [new branch] gh/mlazos/18/base -> origin/gh/mlazos/18/base 2025-04-25T04:11:50.1912568Z * [new branch] gh/mlazos/18/head -> origin/gh/mlazos/18/head 2025-04-25T04:11:50.1913061Z * [new branch] gh/mlazos/18/orig -> origin/gh/mlazos/18/orig 2025-04-25T04:11:50.1913548Z * [new branch] gh/mlazos/19/base -> origin/gh/mlazos/19/base 2025-04-25T04:11:50.1914033Z * [new branch] gh/mlazos/19/head -> origin/gh/mlazos/19/head 2025-04-25T04:11:50.1914520Z * [new branch] gh/mlazos/19/orig -> origin/gh/mlazos/19/orig 2025-04-25T04:11:50.1914999Z * [new branch] gh/mlazos/20/base -> origin/gh/mlazos/20/base 2025-04-25T04:11:50.1915491Z * [new branch] gh/mlazos/20/head -> origin/gh/mlazos/20/head 2025-04-25T04:11:50.1916089Z * [new branch] gh/mlazos/20/orig -> origin/gh/mlazos/20/orig 2025-04-25T04:11:50.1916584Z * [new branch] gh/mlazos/21/base -> origin/gh/mlazos/21/base 2025-04-25T04:11:50.1917129Z * [new branch] gh/mlazos/21/head -> origin/gh/mlazos/21/head 2025-04-25T04:11:50.1917667Z * [new branch] gh/mlazos/21/orig -> origin/gh/mlazos/21/orig 2025-04-25T04:11:50.1918155Z * [new branch] gh/mlazos/22/base -> origin/gh/mlazos/22/base 2025-04-25T04:11:50.1918632Z * [new branch] gh/mlazos/22/head -> origin/gh/mlazos/22/head 2025-04-25T04:11:50.1919132Z * [new branch] gh/mlazos/22/orig -> origin/gh/mlazos/22/orig 2025-04-25T04:11:50.1919625Z * [new branch] gh/mlazos/23/base -> origin/gh/mlazos/23/base 2025-04-25T04:11:50.1920115Z * [new branch] gh/mlazos/23/head -> origin/gh/mlazos/23/head 2025-04-25T04:11:50.2360606Z * [new branch] gh/mlazos/23/orig -> origin/gh/mlazos/23/orig 2025-04-25T04:11:50.2375639Z * [new branch] gh/mlazos/24/base -> origin/gh/mlazos/24/base 2025-04-25T04:11:50.2376306Z * [new branch] gh/mlazos/24/head -> origin/gh/mlazos/24/head 2025-04-25T04:11:50.2376836Z * [new branch] gh/mlazos/24/orig -> origin/gh/mlazos/24/orig 2025-04-25T04:11:50.2377336Z * [new branch] gh/mlazos/25/base -> origin/gh/mlazos/25/base 2025-04-25T04:11:50.2377839Z * [new branch] gh/mlazos/25/head -> origin/gh/mlazos/25/head 2025-04-25T04:11:50.2378339Z * [new branch] gh/mlazos/25/orig -> origin/gh/mlazos/25/orig 2025-04-25T04:11:50.2378907Z * [new branch] gh/mlazos/26/base -> origin/gh/mlazos/26/base 2025-04-25T04:11:50.2379701Z * [new branch] gh/mlazos/26/head -> origin/gh/mlazos/26/head 2025-04-25T04:11:50.2380219Z * [new branch] gh/mlazos/26/orig -> origin/gh/mlazos/26/orig 2025-04-25T04:11:50.2380720Z * [new branch] gh/mlazos/27/base -> origin/gh/mlazos/27/base 2025-04-25T04:11:50.2381204Z * [new branch] gh/mlazos/27/head -> origin/gh/mlazos/27/head 2025-04-25T04:11:50.2381701Z * [new branch] gh/mlazos/27/orig -> origin/gh/mlazos/27/orig 2025-04-25T04:11:50.2382198Z * [new branch] gh/mlazos/28/base -> origin/gh/mlazos/28/base 2025-04-25T04:11:50.2382690Z * [new branch] gh/mlazos/28/head -> origin/gh/mlazos/28/head 2025-04-25T04:11:50.2383182Z * [new branch] gh/mlazos/28/orig -> origin/gh/mlazos/28/orig 2025-04-25T04:11:50.2383665Z * [new branch] gh/mlazos/29/base -> origin/gh/mlazos/29/base 2025-04-25T04:11:50.2384169Z * [new branch] gh/mlazos/29/head -> origin/gh/mlazos/29/head 2025-04-25T04:11:50.2384657Z * [new branch] gh/mlazos/29/orig -> origin/gh/mlazos/29/orig 2025-04-25T04:11:50.2385213Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-04-25T04:11:50.2385770Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-04-25T04:11:50.2386247Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-04-25T04:11:50.2386747Z * [new branch] gh/mlazos/30/base -> origin/gh/mlazos/30/base 2025-04-25T04:11:50.2387235Z * [new branch] gh/mlazos/30/head -> origin/gh/mlazos/30/head 2025-04-25T04:11:50.2387728Z * [new branch] gh/mlazos/30/orig -> origin/gh/mlazos/30/orig 2025-04-25T04:11:50.2388215Z * [new branch] gh/mlazos/31/base -> origin/gh/mlazos/31/base 2025-04-25T04:11:50.2388706Z * [new branch] gh/mlazos/31/head -> origin/gh/mlazos/31/head 2025-04-25T04:11:50.2389332Z * [new branch] gh/mlazos/31/orig -> origin/gh/mlazos/31/orig 2025-04-25T04:11:50.2389829Z * [new branch] gh/mlazos/32/base -> origin/gh/mlazos/32/base 2025-04-25T04:11:50.2390325Z * [new branch] gh/mlazos/32/head -> origin/gh/mlazos/32/head 2025-04-25T04:11:50.2390882Z * [new branch] gh/mlazos/32/orig -> origin/gh/mlazos/32/orig 2025-04-25T04:11:50.2391422Z * [new branch] gh/mlazos/33/base -> origin/gh/mlazos/33/base 2025-04-25T04:11:50.2391914Z * [new branch] gh/mlazos/33/head -> origin/gh/mlazos/33/head 2025-04-25T04:11:50.2392395Z * [new branch] gh/mlazos/33/orig -> origin/gh/mlazos/33/orig 2025-04-25T04:11:50.2392890Z * [new branch] gh/mlazos/34/base -> origin/gh/mlazos/34/base 2025-04-25T04:11:50.2393388Z * [new branch] gh/mlazos/34/head -> origin/gh/mlazos/34/head 2025-04-25T04:11:50.2393878Z * [new branch] gh/mlazos/34/orig -> origin/gh/mlazos/34/orig 2025-04-25T04:11:50.2394398Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-04-25T04:11:50.2394879Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-04-25T04:11:50.2395366Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-04-25T04:11:50.2395851Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-04-25T04:11:50.2396357Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-04-25T04:11:50.2396934Z * [new branch] gh/muchulee8/40/base -> origin/gh/muchulee8/40/base 2025-04-25T04:11:50.2397630Z * [new branch] gh/muchulee8/40/head -> origin/gh/muchulee8/40/head 2025-04-25T04:11:50.2398172Z * [new branch] gh/muchulee8/40/orig -> origin/gh/muchulee8/40/orig 2025-04-25T04:11:50.2398693Z * [new branch] gh/muchulee8/41/base -> origin/gh/muchulee8/41/base 2025-04-25T04:11:50.2399224Z * [new branch] gh/muchulee8/41/head -> origin/gh/muchulee8/41/head 2025-04-25T04:11:50.2399759Z * [new branch] gh/muchulee8/41/orig -> origin/gh/muchulee8/41/orig 2025-04-25T04:11:50.2941260Z * [new branch] gh/muchulee8/45/base -> origin/gh/muchulee8/45/base 2025-04-25T04:11:50.2941865Z * [new branch] gh/muchulee8/45/head -> origin/gh/muchulee8/45/head 2025-04-25T04:11:50.2942417Z * [new branch] gh/muchulee8/45/orig -> origin/gh/muchulee8/45/orig 2025-04-25T04:11:50.2942943Z * [new branch] gh/muchulee8/47/base -> origin/gh/muchulee8/47/base 2025-04-25T04:11:50.2943494Z * [new branch] gh/muchulee8/47/head -> origin/gh/muchulee8/47/head 2025-04-25T04:11:50.2944085Z * [new branch] gh/muchulee8/47/orig -> origin/gh/muchulee8/47/orig 2025-04-25T04:11:50.2944681Z * [new branch] gh/muchulee8/48/base -> origin/gh/muchulee8/48/base 2025-04-25T04:11:50.2945202Z * [new branch] gh/muchulee8/48/head -> origin/gh/muchulee8/48/head 2025-04-25T04:11:50.2945731Z * [new branch] gh/muchulee8/48/orig -> origin/gh/muchulee8/48/orig 2025-04-25T04:11:50.2946259Z * [new branch] gh/muchulee8/49/base -> origin/gh/muchulee8/49/base 2025-04-25T04:11:50.2946776Z * [new branch] gh/muchulee8/49/head -> origin/gh/muchulee8/49/head 2025-04-25T04:11:50.2947298Z * [new branch] gh/muchulee8/49/orig -> origin/gh/muchulee8/49/orig 2025-04-25T04:11:50.2947816Z * [new branch] gh/muchulee8/50/base -> origin/gh/muchulee8/50/base 2025-04-25T04:11:50.2948365Z * [new branch] gh/muchulee8/50/head -> origin/gh/muchulee8/50/head 2025-04-25T04:11:50.2949086Z * [new branch] gh/muchulee8/50/orig -> origin/gh/muchulee8/50/orig 2025-04-25T04:11:50.2949607Z * [new branch] gh/muchulee8/51/base -> origin/gh/muchulee8/51/base 2025-04-25T04:11:50.2950247Z * [new branch] gh/muchulee8/51/head -> origin/gh/muchulee8/51/head 2025-04-25T04:11:50.2950762Z * [new branch] gh/muchulee8/51/orig -> origin/gh/muchulee8/51/orig 2025-04-25T04:11:50.2951286Z * [new branch] gh/muchulee8/52/base -> origin/gh/muchulee8/52/base 2025-04-25T04:11:50.2951805Z * [new branch] gh/muchulee8/52/head -> origin/gh/muchulee8/52/head 2025-04-25T04:11:50.2952322Z * [new branch] gh/muchulee8/52/orig -> origin/gh/muchulee8/52/orig 2025-04-25T04:11:50.2952859Z * [new branch] gh/muchulee8/53/base -> origin/gh/muchulee8/53/base 2025-04-25T04:11:50.2953380Z * [new branch] gh/muchulee8/53/head -> origin/gh/muchulee8/53/head 2025-04-25T04:11:50.2953904Z * [new branch] gh/muchulee8/53/orig -> origin/gh/muchulee8/53/orig 2025-04-25T04:11:50.2954427Z * [new branch] gh/muchulee8/54/base -> origin/gh/muchulee8/54/base 2025-04-25T04:11:50.2954937Z * [new branch] gh/muchulee8/54/head -> origin/gh/muchulee8/54/head 2025-04-25T04:11:50.2955463Z * [new branch] gh/muchulee8/54/orig -> origin/gh/muchulee8/54/orig 2025-04-25T04:11:50.2956041Z * [new branch] gh/muchulee8/55/base -> origin/gh/muchulee8/55/base 2025-04-25T04:11:50.2956631Z * [new branch] gh/muchulee8/55/head -> origin/gh/muchulee8/55/head 2025-04-25T04:11:50.2957149Z * [new branch] gh/muchulee8/55/orig -> origin/gh/muchulee8/55/orig 2025-04-25T04:11:50.2957799Z * [new branch] gh/muchulee8/56/base -> origin/gh/muchulee8/56/base 2025-04-25T04:11:50.2958334Z * [new branch] gh/muchulee8/56/head -> origin/gh/muchulee8/56/head 2025-04-25T04:11:50.2958857Z * [new branch] gh/muchulee8/56/orig -> origin/gh/muchulee8/56/orig 2025-04-25T04:11:50.2959394Z * [new branch] gh/nmacchioni/12/base -> origin/gh/nmacchioni/12/base 2025-04-25T04:11:50.2959934Z * [new branch] gh/nmacchioni/12/head -> origin/gh/nmacchioni/12/head 2025-04-25T04:11:50.2960487Z * [new branch] gh/nmacchioni/12/orig -> origin/gh/nmacchioni/12/orig 2025-04-25T04:11:50.2961037Z * [new branch] gh/nmacchioni/31/base -> origin/gh/nmacchioni/31/base 2025-04-25T04:11:50.2961623Z * [new branch] gh/nmacchioni/31/head -> origin/gh/nmacchioni/31/head 2025-04-25T04:11:50.2962229Z * [new branch] gh/nmacchioni/31/orig -> origin/gh/nmacchioni/31/orig 2025-04-25T04:11:50.2962768Z * [new branch] gh/nmacchioni/32/base -> origin/gh/nmacchioni/32/base 2025-04-25T04:11:50.2963314Z * [new branch] gh/nmacchioni/32/head -> origin/gh/nmacchioni/32/head 2025-04-25T04:11:50.2963856Z * [new branch] gh/nmacchioni/32/orig -> origin/gh/nmacchioni/32/orig 2025-04-25T04:11:50.2964513Z * [new branch] gh/nmacchioni/33/base -> origin/gh/nmacchioni/33/base 2025-04-25T04:11:50.2965057Z * [new branch] gh/nmacchioni/33/head -> origin/gh/nmacchioni/33/head 2025-04-25T04:11:50.2965589Z * [new branch] gh/nmacchioni/33/orig -> origin/gh/nmacchioni/33/orig 2025-04-25T04:11:50.2966134Z * [new branch] gh/nmacchioni/35/base -> origin/gh/nmacchioni/35/base 2025-04-25T04:11:50.2966666Z * [new branch] gh/nmacchioni/35/head -> origin/gh/nmacchioni/35/head 2025-04-25T04:11:50.5069104Z * [new branch] gh/nmacchioni/35/orig -> origin/gh/nmacchioni/35/orig 2025-04-25T04:11:50.5069951Z * [new branch] gh/nmacchioni/36/base -> origin/gh/nmacchioni/36/base 2025-04-25T04:11:50.5070500Z * [new branch] gh/nmacchioni/36/head -> origin/gh/nmacchioni/36/head 2025-04-25T04:11:50.5071031Z * [new branch] gh/nmacchioni/36/orig -> origin/gh/nmacchioni/36/orig 2025-04-25T04:11:50.5071572Z * [new branch] gh/nmacchioni/37/base -> origin/gh/nmacchioni/37/base 2025-04-25T04:11:50.5072102Z * [new branch] gh/nmacchioni/37/head -> origin/gh/nmacchioni/37/head 2025-04-25T04:11:50.5072643Z * [new branch] gh/nmacchioni/37/orig -> origin/gh/nmacchioni/37/orig 2025-04-25T04:11:50.5073173Z * [new branch] gh/nmacchioni/39/base -> origin/gh/nmacchioni/39/base 2025-04-25T04:11:50.5073697Z * [new branch] gh/nmacchioni/39/head -> origin/gh/nmacchioni/39/head 2025-04-25T04:11:50.5074235Z * [new branch] gh/nmacchioni/39/orig -> origin/gh/nmacchioni/39/orig 2025-04-25T04:11:50.5074768Z * [new branch] gh/nmacchioni/8/base -> origin/gh/nmacchioni/8/base 2025-04-25T04:11:50.5075304Z * [new branch] gh/nmacchioni/8/head -> origin/gh/nmacchioni/8/head 2025-04-25T04:11:50.5075839Z * [new branch] gh/nmacchioni/8/orig -> origin/gh/nmacchioni/8/orig 2025-04-25T04:11:50.5076353Z * [new branch] gh/oulgen/21/base -> origin/gh/oulgen/21/base 2025-04-25T04:11:50.5076851Z * [new branch] gh/oulgen/21/head -> origin/gh/oulgen/21/head 2025-04-25T04:11:50.5077337Z * [new branch] gh/oulgen/21/orig -> origin/gh/oulgen/21/orig 2025-04-25T04:11:50.5077840Z * [new branch] gh/oulgen/22/base -> origin/gh/oulgen/22/base 2025-04-25T04:11:50.5078324Z * [new branch] gh/oulgen/22/head -> origin/gh/oulgen/22/head 2025-04-25T04:11:50.5078935Z * [new branch] gh/oulgen/22/orig -> origin/gh/oulgen/22/orig 2025-04-25T04:11:50.5079445Z * [new branch] gh/oulgen/23/base -> origin/gh/oulgen/23/base 2025-04-25T04:11:50.5079923Z * [new branch] gh/oulgen/23/head -> origin/gh/oulgen/23/head 2025-04-25T04:11:50.5080416Z * [new branch] gh/oulgen/23/orig -> origin/gh/oulgen/23/orig 2025-04-25T04:11:50.5080904Z * [new branch] gh/oulgen/24/base -> origin/gh/oulgen/24/base 2025-04-25T04:11:50.5081396Z * [new branch] gh/oulgen/24/head -> origin/gh/oulgen/24/head 2025-04-25T04:11:50.5081884Z * [new branch] gh/oulgen/24/orig -> origin/gh/oulgen/24/orig 2025-04-25T04:11:50.5082366Z * [new branch] gh/oulgen/25/base -> origin/gh/oulgen/25/base 2025-04-25T04:11:50.5082853Z * [new branch] gh/oulgen/25/head -> origin/gh/oulgen/25/head 2025-04-25T04:11:50.5083338Z * [new branch] gh/oulgen/25/orig -> origin/gh/oulgen/25/orig 2025-04-25T04:11:50.5083840Z * [new branch] gh/oulgen/26/base -> origin/gh/oulgen/26/base 2025-04-25T04:11:50.5084433Z * [new branch] gh/oulgen/26/head -> origin/gh/oulgen/26/head 2025-04-25T04:11:50.5084913Z * [new branch] gh/oulgen/26/orig -> origin/gh/oulgen/26/orig 2025-04-25T04:11:50.5085406Z * [new branch] gh/oulgen/27/base -> origin/gh/oulgen/27/base 2025-04-25T04:11:50.5085898Z * [new branch] gh/oulgen/27/head -> origin/gh/oulgen/27/head 2025-04-25T04:11:50.5086384Z * [new branch] gh/oulgen/27/orig -> origin/gh/oulgen/27/orig 2025-04-25T04:11:50.5086864Z * [new branch] gh/oulgen/28/base -> origin/gh/oulgen/28/base 2025-04-25T04:11:50.5087358Z * [new branch] gh/oulgen/28/head -> origin/gh/oulgen/28/head 2025-04-25T04:11:50.5087969Z * [new branch] gh/oulgen/28/orig -> origin/gh/oulgen/28/orig 2025-04-25T04:11:50.5088460Z * [new branch] gh/oulgen/29/base -> origin/gh/oulgen/29/base 2025-04-25T04:11:50.5088961Z * [new branch] gh/oulgen/29/head -> origin/gh/oulgen/29/head 2025-04-25T04:11:50.5089441Z * [new branch] gh/oulgen/29/orig -> origin/gh/oulgen/29/orig 2025-04-25T04:11:50.5089931Z * [new branch] gh/oulgen/30/base -> origin/gh/oulgen/30/base 2025-04-25T04:11:50.5090445Z * [new branch] gh/oulgen/30/head -> origin/gh/oulgen/30/head 2025-04-25T04:11:50.5090932Z * [new branch] gh/oulgen/30/orig -> origin/gh/oulgen/30/orig 2025-04-25T04:11:50.5091422Z * [new branch] gh/oulgen/31/base -> origin/gh/oulgen/31/base 2025-04-25T04:11:50.5091913Z * [new branch] gh/oulgen/31/head -> origin/gh/oulgen/31/head 2025-04-25T04:11:50.5092410Z * [new branch] gh/oulgen/31/orig -> origin/gh/oulgen/31/orig 2025-04-25T04:11:50.5092901Z * [new branch] gh/oulgen/32/base -> origin/gh/oulgen/32/base 2025-04-25T04:11:50.5532037Z * [new branch] gh/oulgen/32/head -> origin/gh/oulgen/32/head 2025-04-25T04:11:50.5532624Z * [new branch] gh/oulgen/32/orig -> origin/gh/oulgen/32/orig 2025-04-25T04:11:50.5533120Z * [new branch] gh/oulgen/33/base -> origin/gh/oulgen/33/base 2025-04-25T04:11:50.5533625Z * [new branch] gh/oulgen/33/head -> origin/gh/oulgen/33/head 2025-04-25T04:11:50.5534119Z * [new branch] gh/oulgen/33/orig -> origin/gh/oulgen/33/orig 2025-04-25T04:11:50.5534603Z * [new branch] gh/oulgen/34/base -> origin/gh/oulgen/34/base 2025-04-25T04:11:50.5535327Z * [new branch] gh/oulgen/34/head -> origin/gh/oulgen/34/head 2025-04-25T04:11:50.5535830Z * [new branch] gh/oulgen/34/orig -> origin/gh/oulgen/34/orig 2025-04-25T04:11:50.5536332Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-04-25T04:11:50.5536841Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-04-25T04:11:50.5537326Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-04-25T04:11:50.5537819Z * [new branch] gh/oulgen/36/base -> origin/gh/oulgen/36/base 2025-04-25T04:11:50.5538307Z * [new branch] gh/oulgen/36/head -> origin/gh/oulgen/36/head 2025-04-25T04:11:50.5538803Z * [new branch] gh/oulgen/36/orig -> origin/gh/oulgen/36/orig 2025-04-25T04:11:50.5539299Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-04-25T04:11:50.5539792Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-04-25T04:11:50.5540295Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-04-25T04:11:50.5540779Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-04-25T04:11:50.5541269Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-04-25T04:11:50.5541749Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-04-25T04:11:50.5542242Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-04-25T04:11:50.5542724Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-04-25T04:11:50.5543204Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-04-25T04:11:50.5543732Z * [new branch] gh/peterbell10/635/base -> origin/gh/peterbell10/635/base 2025-04-25T04:11:50.5544303Z * [new branch] gh/peterbell10/635/head -> origin/gh/peterbell10/635/head 2025-04-25T04:11:50.5544996Z * [new branch] gh/peterbell10/635/orig -> origin/gh/peterbell10/635/orig 2025-04-25T04:11:50.5545567Z * [new branch] gh/peterbell10/636/base -> origin/gh/peterbell10/636/base 2025-04-25T04:11:50.5546124Z * [new branch] gh/peterbell10/636/head -> origin/gh/peterbell10/636/head 2025-04-25T04:11:50.5546686Z * [new branch] gh/peterbell10/636/orig -> origin/gh/peterbell10/636/orig 2025-04-25T04:11:50.5547206Z * [new branch] gh/qqaatw/1/base -> origin/gh/qqaatw/1/base 2025-04-25T04:11:50.5547720Z * [new branch] gh/qqaatw/1/head -> origin/gh/qqaatw/1/head 2025-04-25T04:11:50.5548207Z * [new branch] gh/qqaatw/26/head -> origin/gh/qqaatw/26/head 2025-04-25T04:11:50.5548708Z * [new branch] gh/qqaatw/27/base -> origin/gh/qqaatw/27/base 2025-04-25T04:11:50.5549194Z * [new branch] gh/qqaatw/27/head -> origin/gh/qqaatw/27/head 2025-04-25T04:11:50.5549684Z * [new branch] gh/qqaatw/28/base -> origin/gh/qqaatw/28/base 2025-04-25T04:11:50.5550172Z * [new branch] gh/qqaatw/28/head -> origin/gh/qqaatw/28/head 2025-04-25T04:11:50.5550652Z * [new branch] gh/qqaatw/28/orig -> origin/gh/qqaatw/28/orig 2025-04-25T04:11:50.5551139Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-04-25T04:11:50.5551632Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-04-25T04:11:50.5552118Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-04-25T04:11:50.5552595Z * [new branch] gh/qqaatw/30/base -> origin/gh/qqaatw/30/base 2025-04-25T04:11:50.5553083Z * [new branch] gh/qqaatw/30/head -> origin/gh/qqaatw/30/head 2025-04-25T04:11:50.5553664Z * [new branch] gh/qqaatw/30/orig -> origin/gh/qqaatw/30/orig 2025-04-25T04:11:50.5554153Z * [new branch] gh/rec/119/base -> origin/gh/rec/119/base 2025-04-25T04:11:50.5554650Z * [new branch] gh/rec/119/head -> origin/gh/rec/119/head 2025-04-25T04:11:50.5555117Z * [new branch] gh/rec/119/orig -> origin/gh/rec/119/orig 2025-04-25T04:11:50.5555596Z * [new branch] gh/rec/120/base -> origin/gh/rec/120/base 2025-04-25T04:11:50.5556065Z * [new branch] gh/rec/120/head -> origin/gh/rec/120/head 2025-04-25T04:11:50.6038962Z * [new branch] gh/rec/120/orig -> origin/gh/rec/120/orig 2025-04-25T04:11:50.6039556Z * [new branch] gh/rec/124/base -> origin/gh/rec/124/base 2025-04-25T04:11:50.6040119Z * [new branch] gh/rec/124/head -> origin/gh/rec/124/head 2025-04-25T04:11:50.6040627Z * [new branch] gh/rec/124/orig -> origin/gh/rec/124/orig 2025-04-25T04:11:50.6041109Z * [new branch] gh/rec/125/base -> origin/gh/rec/125/base 2025-04-25T04:11:50.6041562Z * [new branch] gh/rec/125/head -> origin/gh/rec/125/head 2025-04-25T04:11:50.6042038Z * [new branch] gh/rec/125/orig -> origin/gh/rec/125/orig 2025-04-25T04:11:50.6042499Z * [new branch] gh/rec/128/base -> origin/gh/rec/128/base 2025-04-25T04:11:50.6042981Z * [new branch] gh/rec/128/head -> origin/gh/rec/128/head 2025-04-25T04:11:50.6043448Z * [new branch] gh/rec/128/orig -> origin/gh/rec/128/orig 2025-04-25T04:11:50.6043903Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-04-25T04:11:50.6044430Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-04-25T04:11:50.6044893Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-04-25T04:11:50.6045622Z * [new branch] gh/rec/134/base -> origin/gh/rec/134/base 2025-04-25T04:11:50.6046152Z * [new branch] gh/rec/134/head -> origin/gh/rec/134/head 2025-04-25T04:11:50.6046686Z * [new branch] gh/rec/134/orig -> origin/gh/rec/134/orig 2025-04-25T04:11:50.6047172Z * [new branch] gh/rec/136/base -> origin/gh/rec/136/base 2025-04-25T04:11:50.6047639Z * [new branch] gh/rec/136/head -> origin/gh/rec/136/head 2025-04-25T04:11:50.6048124Z * [new branch] gh/rec/136/orig -> origin/gh/rec/136/orig 2025-04-25T04:11:50.6048614Z * [new branch] gh/rec/137/base -> origin/gh/rec/137/base 2025-04-25T04:11:50.6049086Z * [new branch] gh/rec/137/head -> origin/gh/rec/137/head 2025-04-25T04:11:50.6049573Z * [new branch] gh/rec/137/orig -> origin/gh/rec/137/orig 2025-04-25T04:11:50.6050049Z * [new branch] gh/rec/138/base -> origin/gh/rec/138/base 2025-04-25T04:11:50.6050530Z * [new branch] gh/rec/138/head -> origin/gh/rec/138/head 2025-04-25T04:11:50.6051005Z * [new branch] gh/rec/138/orig -> origin/gh/rec/138/orig 2025-04-25T04:11:50.6051495Z * [new branch] gh/rec/140/base -> origin/gh/rec/140/base 2025-04-25T04:11:50.6052034Z * [new branch] gh/rec/140/head -> origin/gh/rec/140/head 2025-04-25T04:11:50.6052557Z * [new branch] gh/rec/140/orig -> origin/gh/rec/140/orig 2025-04-25T04:11:50.6053086Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-04-25T04:11:50.6053562Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-04-25T04:11:50.6054176Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-04-25T04:11:50.6054674Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-04-25T04:11:50.6055147Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-04-25T04:11:50.6055640Z * [new branch] gh/rec/143/base -> origin/gh/rec/143/base 2025-04-25T04:11:50.6056120Z * [new branch] gh/rec/143/head -> origin/gh/rec/143/head 2025-04-25T04:11:50.6056607Z * [new branch] gh/rec/143/orig -> origin/gh/rec/143/orig 2025-04-25T04:11:50.6057094Z * [new branch] gh/rec/144/base -> origin/gh/rec/144/base 2025-04-25T04:11:50.6057561Z * [new branch] gh/rec/144/head -> origin/gh/rec/144/head 2025-04-25T04:11:50.6058041Z * [new branch] gh/rec/144/orig -> origin/gh/rec/144/orig 2025-04-25T04:11:50.6058573Z * [new branch] gh/rec/145/base -> origin/gh/rec/145/base 2025-04-25T04:11:50.6059105Z * [new branch] gh/rec/145/head -> origin/gh/rec/145/head 2025-04-25T04:11:50.6059626Z * [new branch] gh/rec/145/orig -> origin/gh/rec/145/orig 2025-04-25T04:11:50.6060111Z * [new branch] gh/rec/27/base -> origin/gh/rec/27/base 2025-04-25T04:11:50.6060596Z * [new branch] gh/rec/27/head -> origin/gh/rec/27/head 2025-04-25T04:11:50.6061061Z * [new branch] gh/rec/27/orig -> origin/gh/rec/27/orig 2025-04-25T04:11:50.6061583Z * [new branch] gh/rohan-varma/742/base -> origin/gh/rohan-varma/742/base 2025-04-25T04:11:50.6062143Z * [new branch] gh/rohan-varma/742/head -> origin/gh/rohan-varma/742/head 2025-04-25T04:11:50.6062709Z * [new branch] gh/rohan-varma/742/orig -> origin/gh/rohan-varma/742/orig 2025-04-25T04:11:50.6063274Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-04-25T04:11:50.6499553Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-04-25T04:11:50.6500194Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-04-25T04:11:50.6500761Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-04-25T04:11:50.6501359Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-04-25T04:11:50.6501967Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-04-25T04:11:50.6502517Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-04-25T04:11:50.6503066Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-04-25T04:11:50.6503652Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-04-25T04:11:50.6504199Z * [new branch] gh/seemethere/25/base -> origin/gh/seemethere/25/base 2025-04-25T04:11:50.6504743Z * [new branch] gh/seemethere/25/head -> origin/gh/seemethere/25/head 2025-04-25T04:11:50.6505277Z * [new branch] gh/seemethere/25/orig -> origin/gh/seemethere/25/orig 2025-04-25T04:11:50.6505820Z * [new branch] gh/seemethere/26/base -> origin/gh/seemethere/26/base 2025-04-25T04:11:50.6506354Z * [new branch] gh/seemethere/26/head -> origin/gh/seemethere/26/head 2025-04-25T04:11:50.6506899Z * [new branch] gh/seemethere/26/orig -> origin/gh/seemethere/26/orig 2025-04-25T04:11:50.6507499Z * [new branch] gh/seemethere/27/base -> origin/gh/seemethere/27/base 2025-04-25T04:11:50.6508079Z * [new branch] gh/seemethere/27/head -> origin/gh/seemethere/27/head 2025-04-25T04:11:50.6508845Z * [new branch] gh/seemethere/27/orig -> origin/gh/seemethere/27/orig 2025-04-25T04:11:50.6509400Z * [new branch] gh/seemethere/28/base -> origin/gh/seemethere/28/base 2025-04-25T04:11:50.6509953Z * [new branch] gh/seemethere/28/head -> origin/gh/seemethere/28/head 2025-04-25T04:11:50.6510507Z * [new branch] gh/seemethere/28/orig -> origin/gh/seemethere/28/orig 2025-04-25T04:11:50.6511040Z * [new branch] gh/seemethere/29/base -> origin/gh/seemethere/29/base 2025-04-25T04:11:50.6511590Z * [new branch] gh/seemethere/29/head -> origin/gh/seemethere/29/head 2025-04-25T04:11:50.6512122Z * [new branch] gh/seemethere/29/orig -> origin/gh/seemethere/29/orig 2025-04-25T04:11:50.6512668Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-04-25T04:11:50.6513274Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-04-25T04:11:50.6513870Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-04-25T04:11:50.6514475Z * [new branch] gh/seemethere/31/base -> origin/gh/seemethere/31/base 2025-04-25T04:11:50.6515114Z * [new branch] gh/seemethere/31/head -> origin/gh/seemethere/31/head 2025-04-25T04:11:50.6515710Z * [new branch] gh/seemethere/31/orig -> origin/gh/seemethere/31/orig 2025-04-25T04:11:50.6516349Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-04-25T04:11:50.6516961Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-04-25T04:11:50.6517560Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-04-25T04:11:50.6518216Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-04-25T04:11:50.6518849Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-04-25T04:11:50.6519640Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-04-25T04:11:50.6520268Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-04-25T04:11:50.6520930Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-04-25T04:11:50.6521532Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-04-25T04:11:50.6522185Z * [new branch] gh/shunting314/202/base -> origin/gh/shunting314/202/base 2025-04-25T04:11:50.6522777Z * [new branch] gh/shunting314/202/head -> origin/gh/shunting314/202/head 2025-04-25T04:11:50.6523388Z * [new branch] gh/shunting314/202/orig -> origin/gh/shunting314/202/orig 2025-04-25T04:11:50.6524140Z * [new branch] gh/shunting314/203/base -> origin/gh/shunting314/203/base 2025-04-25T04:11:50.6524749Z * [new branch] gh/shunting314/203/head -> origin/gh/shunting314/203/head 2025-04-25T04:11:50.6525366Z * [new branch] gh/shunting314/203/orig -> origin/gh/shunting314/203/orig 2025-04-25T04:11:50.6525911Z * [new branch] gh/shunting314/204/base -> origin/gh/shunting314/204/base 2025-04-25T04:11:50.6526470Z * [new branch] gh/shunting314/204/head -> origin/gh/shunting314/204/head 2025-04-25T04:11:50.6993286Z * [new branch] gh/shunting314/204/orig -> origin/gh/shunting314/204/orig 2025-04-25T04:11:50.6993902Z * [new branch] gh/shunting314/205/base -> origin/gh/shunting314/205/base 2025-04-25T04:11:50.6994498Z * [new branch] gh/shunting314/205/head -> origin/gh/shunting314/205/head 2025-04-25T04:11:50.6995068Z * [new branch] gh/shunting314/205/orig -> origin/gh/shunting314/205/orig 2025-04-25T04:11:50.6995830Z * [new branch] gh/shunting314/206/base -> origin/gh/shunting314/206/base 2025-04-25T04:11:50.6996415Z * [new branch] gh/shunting314/206/head -> origin/gh/shunting314/206/head 2025-04-25T04:11:50.6996971Z * [new branch] gh/shunting314/206/orig -> origin/gh/shunting314/206/orig 2025-04-25T04:11:50.6997603Z * [new branch] gh/shunting314/207/base -> origin/gh/shunting314/207/base 2025-04-25T04:11:50.6998643Z * [new branch] gh/shunting314/207/head -> origin/gh/shunting314/207/head 2025-04-25T04:11:50.6999622Z * [new branch] gh/shunting314/207/orig -> origin/gh/shunting314/207/orig 2025-04-25T04:11:50.7000569Z * [new branch] gh/sijiac/1/base -> origin/gh/sijiac/1/base 2025-04-25T04:11:50.7001439Z * [new branch] gh/sijiac/1/head -> origin/gh/sijiac/1/head 2025-04-25T04:11:50.7002309Z * [new branch] gh/sijiac/2/base -> origin/gh/sijiac/2/base 2025-04-25T04:11:50.7003200Z * [new branch] gh/sijiac/2/head -> origin/gh/sijiac/2/head 2025-04-25T04:11:50.7004547Z * [new branch] gh/sijiac/3/base -> origin/gh/sijiac/3/base 2025-04-25T04:11:50.7005390Z * [new branch] gh/sijiac/3/head -> origin/gh/sijiac/3/head 2025-04-25T04:11:50.7006198Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-04-25T04:11:50.7007097Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-04-25T04:11:50.7007939Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-04-25T04:11:50.7008600Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-04-25T04:11:50.7009125Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-04-25T04:11:50.7009779Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-04-25T04:11:50.7010364Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-04-25T04:11:50.7011070Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-04-25T04:11:50.7011611Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-04-25T04:11:50.7012164Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-04-25T04:11:50.7012705Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-04-25T04:11:50.7013248Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-04-25T04:11:50.7013774Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-04-25T04:11:50.7014298Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-04-25T04:11:50.7014828Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-04-25T04:11:50.7015355Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-04-25T04:11:50.7015943Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-04-25T04:11:50.7016520Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-04-25T04:11:50.7017100Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-04-25T04:11:50.7017675Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-04-25T04:11:50.7018265Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-04-25T04:11:50.7018846Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-04-25T04:11:50.7019417Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-04-25T04:11:50.7020120Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-04-25T04:11:50.7020704Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-04-25T04:11:50.7021295Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-04-25T04:11:50.7021887Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-04-25T04:11:50.7022490Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-04-25T04:11:50.7023073Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-04-25T04:11:50.7023660Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-04-25T04:11:50.7462027Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-04-25T04:11:50.7462692Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-04-25T04:11:50.7463326Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-04-25T04:11:50.7463884Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-04-25T04:11:50.7464416Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-04-25T04:11:50.7464933Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-04-25T04:11:50.7465454Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-04-25T04:11:50.7465973Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-04-25T04:11:50.7466511Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-04-25T04:11:50.7467038Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-04-25T04:11:50.7467581Z * [new branch] gh/soulitzer/335/base -> origin/gh/soulitzer/335/base 2025-04-25T04:11:50.7468830Z * [new branch] gh/soulitzer/335/head -> origin/gh/soulitzer/335/head 2025-04-25T04:11:50.7469356Z * [new branch] gh/soulitzer/335/orig -> origin/gh/soulitzer/335/orig 2025-04-25T04:11:50.7469891Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-04-25T04:11:50.7470410Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-04-25T04:11:50.7470938Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-04-25T04:11:50.7471472Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-04-25T04:11:50.7471993Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-04-25T04:11:50.7472530Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-04-25T04:11:50.7473056Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-04-25T04:11:50.7473585Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-04-25T04:11:50.7474165Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-04-25T04:11:50.7474736Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-04-25T04:11:50.7475269Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-04-25T04:11:50.7475789Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-04-25T04:11:50.7476315Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-04-25T04:11:50.7476841Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-04-25T04:11:50.7477495Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-04-25T04:11:50.7478038Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-04-25T04:11:50.7478561Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-04-25T04:11:50.7479098Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-04-25T04:11:50.7479622Z * [new branch] gh/soulitzer/355/base -> origin/gh/soulitzer/355/base 2025-04-25T04:11:50.7480204Z * [new branch] gh/soulitzer/355/head -> origin/gh/soulitzer/355/head 2025-04-25T04:11:50.7480794Z * [new branch] gh/soulitzer/355/orig -> origin/gh/soulitzer/355/orig 2025-04-25T04:11:50.7481312Z * [new branch] gh/soulitzer/356/base -> origin/gh/soulitzer/356/base 2025-04-25T04:11:50.7481865Z * [new branch] gh/soulitzer/356/head -> origin/gh/soulitzer/356/head 2025-04-25T04:11:50.7482390Z * [new branch] gh/soulitzer/356/orig -> origin/gh/soulitzer/356/orig 2025-04-25T04:11:50.7482928Z * [new branch] gh/soulitzer/357/base -> origin/gh/soulitzer/357/base 2025-04-25T04:11:50.7483451Z * [new branch] gh/soulitzer/357/head -> origin/gh/soulitzer/357/head 2025-04-25T04:11:50.7483970Z * [new branch] gh/soulitzer/357/orig -> origin/gh/soulitzer/357/orig 2025-04-25T04:11:50.7484618Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-04-25T04:11:50.7485136Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-04-25T04:11:50.7485670Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-04-25T04:11:50.7486251Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-04-25T04:11:50.7486825Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-04-25T04:11:50.7487472Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-04-25T04:11:50.7929437Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-04-25T04:11:50.7930005Z * [new branch] gh/swolchok/724/base -> origin/gh/swolchok/724/base 2025-04-25T04:11:50.7930543Z * [new branch] gh/swolchok/724/head -> origin/gh/swolchok/724/head 2025-04-25T04:11:50.7931077Z * [new branch] gh/swolchok/724/orig -> origin/gh/swolchok/724/orig 2025-04-25T04:11:50.7931605Z * [new branch] gh/swolchok/726/base -> origin/gh/swolchok/726/base 2025-04-25T04:11:50.7932118Z * [new branch] gh/swolchok/726/head -> origin/gh/swolchok/726/head 2025-04-25T04:11:50.7932631Z * [new branch] gh/swolchok/726/orig -> origin/gh/swolchok/726/orig 2025-04-25T04:11:50.7933184Z * [new branch] gh/swolchok/727/base -> origin/gh/swolchok/727/base 2025-04-25T04:11:50.7933763Z * [new branch] gh/swolchok/727/head -> origin/gh/swolchok/727/head 2025-04-25T04:11:50.7934329Z * [new branch] gh/swolchok/727/orig -> origin/gh/swolchok/727/orig 2025-04-25T04:11:50.7934840Z * [new branch] gh/swolchok/728/head -> origin/gh/swolchok/728/head 2025-04-25T04:11:50.7935353Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-04-25T04:11:50.7935864Z * [new branch] gh/swolchok/729/base -> origin/gh/swolchok/729/base 2025-04-25T04:11:50.7936373Z * [new branch] gh/swolchok/729/head -> origin/gh/swolchok/729/head 2025-04-25T04:11:50.7936884Z * [new branch] gh/swolchok/729/orig -> origin/gh/swolchok/729/orig 2025-04-25T04:11:50.7937390Z * [new branch] gh/swolchok/730/base -> origin/gh/swolchok/730/base 2025-04-25T04:11:50.7938645Z * [new branch] gh/swolchok/730/head -> origin/gh/swolchok/730/head 2025-04-25T04:11:50.7939194Z * [new branch] gh/swolchok/730/orig -> origin/gh/swolchok/730/orig 2025-04-25T04:11:50.7939776Z * [new branch] gh/swolchok/731/base -> origin/gh/swolchok/731/base 2025-04-25T04:11:50.7940356Z * [new branch] gh/swolchok/731/head -> origin/gh/swolchok/731/head 2025-04-25T04:11:50.7940871Z * [new branch] gh/swolchok/731/orig -> origin/gh/swolchok/731/orig 2025-04-25T04:11:50.7941398Z * [new branch] gh/swolchok/732/base -> origin/gh/swolchok/732/base 2025-04-25T04:11:50.7941920Z * [new branch] gh/swolchok/732/head -> origin/gh/swolchok/732/head 2025-04-25T04:11:50.7942434Z * [new branch] gh/swolchok/732/orig -> origin/gh/swolchok/732/orig 2025-04-25T04:11:50.7942946Z * [new branch] gh/swolchok/733/base -> origin/gh/swolchok/733/base 2025-04-25T04:11:50.7943459Z * [new branch] gh/swolchok/733/head -> origin/gh/swolchok/733/head 2025-04-25T04:11:50.7943982Z * [new branch] gh/swolchok/733/orig -> origin/gh/swolchok/733/orig 2025-04-25T04:11:50.7944496Z * [new branch] gh/swolchok/734/base -> origin/gh/swolchok/734/base 2025-04-25T04:11:50.7945010Z * [new branch] gh/swolchok/734/head -> origin/gh/swolchok/734/head 2025-04-25T04:11:50.7945586Z * [new branch] gh/swolchok/734/orig -> origin/gh/swolchok/734/orig 2025-04-25T04:11:50.7946146Z * [new branch] gh/swolchok/735/base -> origin/gh/swolchok/735/base 2025-04-25T04:11:50.7946664Z * [new branch] gh/swolchok/735/head -> origin/gh/swolchok/735/head 2025-04-25T04:11:50.7947171Z * [new branch] gh/swolchok/735/orig -> origin/gh/swolchok/735/orig 2025-04-25T04:11:50.7947698Z * [new branch] gh/swolchok/736/base -> origin/gh/swolchok/736/base 2025-04-25T04:11:50.7948360Z * [new branch] gh/swolchok/736/head -> origin/gh/swolchok/736/head 2025-04-25T04:11:50.7948873Z * [new branch] gh/swolchok/736/orig -> origin/gh/swolchok/736/orig 2025-04-25T04:11:50.7949398Z * [new branch] gh/swolchok/737/base -> origin/gh/swolchok/737/base 2025-04-25T04:11:50.7949909Z * [new branch] gh/swolchok/737/head -> origin/gh/swolchok/737/head 2025-04-25T04:11:50.7950433Z * [new branch] gh/swolchok/737/orig -> origin/gh/swolchok/737/orig 2025-04-25T04:11:50.7950959Z * [new branch] gh/swolchok/738/base -> origin/gh/swolchok/738/base 2025-04-25T04:11:50.7951539Z * [new branch] gh/swolchok/738/head -> origin/gh/swolchok/738/head 2025-04-25T04:11:50.7952281Z * [new branch] gh/swolchok/738/orig -> origin/gh/swolchok/738/orig 2025-04-25T04:11:50.7952801Z * [new branch] gh/swolchok/739/base -> origin/gh/swolchok/739/base 2025-04-25T04:11:50.7953328Z * [new branch] gh/swolchok/739/head -> origin/gh/swolchok/739/head 2025-04-25T04:11:50.7953851Z * [new branch] gh/swolchok/739/orig -> origin/gh/swolchok/739/orig 2025-04-25T04:11:50.7954362Z * [new branch] gh/swolchok/740/base -> origin/gh/swolchok/740/base 2025-04-25T04:11:50.7954875Z * [new branch] gh/swolchok/740/head -> origin/gh/swolchok/740/head 2025-04-25T04:11:50.8397564Z * [new branch] gh/swolchok/740/orig -> origin/gh/swolchok/740/orig 2025-04-25T04:11:50.8398178Z * [new branch] gh/swolchok/741/base -> origin/gh/swolchok/741/base 2025-04-25T04:11:50.8398716Z * [new branch] gh/swolchok/741/head -> origin/gh/swolchok/741/head 2025-04-25T04:11:50.8399296Z * [new branch] gh/swolchok/741/orig -> origin/gh/swolchok/741/orig 2025-04-25T04:11:50.8400108Z * [new branch] gh/swolchok/742/base -> origin/gh/swolchok/742/base 2025-04-25T04:11:50.8400645Z * [new branch] gh/swolchok/742/head -> origin/gh/swolchok/742/head 2025-04-25T04:11:50.8401166Z * [new branch] gh/swolchok/742/orig -> origin/gh/swolchok/742/orig 2025-04-25T04:11:50.8401692Z * [new branch] gh/swolchok/743/base -> origin/gh/swolchok/743/base 2025-04-25T04:11:50.8402221Z * [new branch] gh/swolchok/743/head -> origin/gh/swolchok/743/head 2025-04-25T04:11:50.8402747Z * [new branch] gh/swolchok/743/orig -> origin/gh/swolchok/743/orig 2025-04-25T04:11:50.8403261Z * [new branch] gh/swolchok/744/base -> origin/gh/swolchok/744/base 2025-04-25T04:11:50.8403781Z * [new branch] gh/swolchok/744/head -> origin/gh/swolchok/744/head 2025-04-25T04:11:50.8404410Z * [new branch] gh/swolchok/744/orig -> origin/gh/swolchok/744/orig 2025-04-25T04:11:50.8404991Z * [new branch] gh/swolchok/745/base -> origin/gh/swolchok/745/base 2025-04-25T04:11:50.8405572Z * [new branch] gh/swolchok/745/head -> origin/gh/swolchok/745/head 2025-04-25T04:11:50.8406091Z * [new branch] gh/swolchok/745/orig -> origin/gh/swolchok/745/orig 2025-04-25T04:11:50.8406610Z * [new branch] gh/swolchok/746/base -> origin/gh/swolchok/746/base 2025-04-25T04:11:50.8407129Z * [new branch] gh/swolchok/746/head -> origin/gh/swolchok/746/head 2025-04-25T04:11:50.8407640Z * [new branch] gh/swolchok/746/orig -> origin/gh/swolchok/746/orig 2025-04-25T04:11:50.8408156Z * [new branch] gh/swolchok/747/base -> origin/gh/swolchok/747/base 2025-04-25T04:11:50.8408665Z * [new branch] gh/swolchok/747/head -> origin/gh/swolchok/747/head 2025-04-25T04:11:50.8409184Z * [new branch] gh/swolchok/747/orig -> origin/gh/swolchok/747/orig 2025-04-25T04:11:50.8409839Z * [new branch] gh/swolchok/748/base -> origin/gh/swolchok/748/base 2025-04-25T04:11:50.8410363Z * [new branch] gh/swolchok/748/head -> origin/gh/swolchok/748/head 2025-04-25T04:11:50.8410942Z * [new branch] gh/swolchok/748/orig -> origin/gh/swolchok/748/orig 2025-04-25T04:11:50.8411505Z * [new branch] gh/swolchok/749/base -> origin/gh/swolchok/749/base 2025-04-25T04:11:50.8412033Z * [new branch] gh/swolchok/749/head -> origin/gh/swolchok/749/head 2025-04-25T04:11:50.8412545Z * [new branch] gh/swolchok/749/orig -> origin/gh/swolchok/749/orig 2025-04-25T04:11:50.8413068Z * [new branch] gh/swolchok/750/base -> origin/gh/swolchok/750/base 2025-04-25T04:11:50.8413592Z * [new branch] gh/swolchok/750/head -> origin/gh/swolchok/750/head 2025-04-25T04:11:50.8414116Z * [new branch] gh/swolchok/750/orig -> origin/gh/swolchok/750/orig 2025-04-25T04:11:50.8414650Z * [new branch] gh/syed-ahmed/1/base -> origin/gh/syed-ahmed/1/base 2025-04-25T04:11:50.8415166Z * [new branch] gh/syed-ahmed/1/head -> origin/gh/syed-ahmed/1/head 2025-04-25T04:11:50.8415685Z * [new branch] gh/syed-ahmed/1/orig -> origin/gh/syed-ahmed/1/orig 2025-04-25T04:11:50.8416206Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-04-25T04:11:50.8416764Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-04-25T04:11:50.8417264Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-04-25T04:11:50.8417828Z * [new branch] gh/tianyu-l/7/base -> origin/gh/tianyu-l/7/base 2025-04-25T04:11:50.8418436Z * [new branch] gh/tianyu-l/7/head -> origin/gh/tianyu-l/7/head 2025-04-25T04:11:50.8418955Z * [new branch] gh/tianyu-l/7/orig -> origin/gh/tianyu-l/7/orig 2025-04-25T04:11:50.8419462Z * [new branch] gh/tianyu-l/8/base -> origin/gh/tianyu-l/8/base 2025-04-25T04:11:50.8419964Z * [new branch] gh/tianyu-l/8/head -> origin/gh/tianyu-l/8/head 2025-04-25T04:11:50.8420459Z * [new branch] gh/tianyu-l/8/orig -> origin/gh/tianyu-l/8/orig 2025-04-25T04:11:50.8421015Z * [new branch] gh/tugsbayasgalan/162/base -> origin/gh/tugsbayasgalan/162/base 2025-04-25T04:11:50.8421611Z * [new branch] gh/tugsbayasgalan/162/head -> origin/gh/tugsbayasgalan/162/head 2025-04-25T04:11:50.8422201Z * [new branch] gh/tugsbayasgalan/162/orig -> origin/gh/tugsbayasgalan/162/orig 2025-04-25T04:11:50.8843799Z * [new branch] gh/tugsbayasgalan/282/base -> origin/gh/tugsbayasgalan/282/base 2025-04-25T04:11:50.8844564Z * [new branch] gh/tugsbayasgalan/282/head -> origin/gh/tugsbayasgalan/282/head 2025-04-25T04:11:50.8845192Z * [new branch] gh/tugsbayasgalan/282/orig -> origin/gh/tugsbayasgalan/282/orig 2025-04-25T04:11:50.8845793Z * [new branch] gh/tugsbayasgalan/290/base -> origin/gh/tugsbayasgalan/290/base 2025-04-25T04:11:50.8846390Z * [new branch] gh/tugsbayasgalan/290/head -> origin/gh/tugsbayasgalan/290/head 2025-04-25T04:11:50.8846982Z * [new branch] gh/tugsbayasgalan/290/orig -> origin/gh/tugsbayasgalan/290/orig 2025-04-25T04:11:50.8847567Z * [new branch] gh/tugsbayasgalan/298/base -> origin/gh/tugsbayasgalan/298/base 2025-04-25T04:11:50.8848221Z * [new branch] gh/tugsbayasgalan/298/head -> origin/gh/tugsbayasgalan/298/head 2025-04-25T04:11:50.8848862Z * [new branch] gh/tugsbayasgalan/298/orig -> origin/gh/tugsbayasgalan/298/orig 2025-04-25T04:11:50.8849456Z * [new branch] gh/tugsbayasgalan/299/base -> origin/gh/tugsbayasgalan/299/base 2025-04-25T04:11:50.8850260Z * [new branch] gh/tugsbayasgalan/299/head -> origin/gh/tugsbayasgalan/299/head 2025-04-25T04:11:50.8850856Z * [new branch] gh/tugsbayasgalan/299/orig -> origin/gh/tugsbayasgalan/299/orig 2025-04-25T04:11:50.8851443Z * [new branch] gh/tugsbayasgalan/300/base -> origin/gh/tugsbayasgalan/300/base 2025-04-25T04:11:50.8852036Z * [new branch] gh/tugsbayasgalan/300/head -> origin/gh/tugsbayasgalan/300/head 2025-04-25T04:11:50.8852633Z * [new branch] gh/tugsbayasgalan/300/orig -> origin/gh/tugsbayasgalan/300/orig 2025-04-25T04:11:50.8853222Z * [new branch] gh/tugsbayasgalan/301/base -> origin/gh/tugsbayasgalan/301/base 2025-04-25T04:11:50.8853869Z * [new branch] gh/tugsbayasgalan/301/head -> origin/gh/tugsbayasgalan/301/head 2025-04-25T04:11:50.8854501Z * [new branch] gh/tugsbayasgalan/301/orig -> origin/gh/tugsbayasgalan/301/orig 2025-04-25T04:11:50.8855109Z * [new branch] gh/tugsbayasgalan/303/base -> origin/gh/tugsbayasgalan/303/base 2025-04-25T04:11:50.8855696Z * [new branch] gh/tugsbayasgalan/303/head -> origin/gh/tugsbayasgalan/303/head 2025-04-25T04:11:50.8856285Z * [new branch] gh/tugsbayasgalan/303/orig -> origin/gh/tugsbayasgalan/303/orig 2025-04-25T04:11:50.8856872Z * [new branch] gh/tugsbayasgalan/304/base -> origin/gh/tugsbayasgalan/304/base 2025-04-25T04:11:50.8857458Z * [new branch] gh/tugsbayasgalan/304/head -> origin/gh/tugsbayasgalan/304/head 2025-04-25T04:11:50.8858047Z * [new branch] gh/tugsbayasgalan/304/orig -> origin/gh/tugsbayasgalan/304/orig 2025-04-25T04:11:50.8858654Z * [new branch] gh/tugsbayasgalan/305/base -> origin/gh/tugsbayasgalan/305/base 2025-04-25T04:11:50.8859235Z * [new branch] gh/tugsbayasgalan/305/head -> origin/gh/tugsbayasgalan/305/head 2025-04-25T04:11:50.8860003Z * [new branch] gh/tugsbayasgalan/305/orig -> origin/gh/tugsbayasgalan/305/orig 2025-04-25T04:11:50.8860648Z * [new branch] gh/tugsbayasgalan/306/base -> origin/gh/tugsbayasgalan/306/base 2025-04-25T04:11:50.8861247Z * [new branch] gh/tugsbayasgalan/306/head -> origin/gh/tugsbayasgalan/306/head 2025-04-25T04:11:50.8861843Z * [new branch] gh/tugsbayasgalan/306/orig -> origin/gh/tugsbayasgalan/306/orig 2025-04-25T04:11:50.8862429Z * [new branch] gh/tugsbayasgalan/307/base -> origin/gh/tugsbayasgalan/307/base 2025-04-25T04:11:50.8863025Z * [new branch] gh/tugsbayasgalan/307/head -> origin/gh/tugsbayasgalan/307/head 2025-04-25T04:11:50.8863602Z * [new branch] gh/tugsbayasgalan/307/orig -> origin/gh/tugsbayasgalan/307/orig 2025-04-25T04:11:50.8864195Z * [new branch] gh/tugsbayasgalan/308/base -> origin/gh/tugsbayasgalan/308/base 2025-04-25T04:11:50.8864797Z * [new branch] gh/tugsbayasgalan/308/head -> origin/gh/tugsbayasgalan/308/head 2025-04-25T04:11:50.8865382Z * [new branch] gh/tugsbayasgalan/308/orig -> origin/gh/tugsbayasgalan/308/orig 2025-04-25T04:11:50.8866076Z * [new branch] gh/tugsbayasgalan/309/base -> origin/gh/tugsbayasgalan/309/base 2025-04-25T04:11:50.8866664Z * [new branch] gh/tugsbayasgalan/309/head -> origin/gh/tugsbayasgalan/309/head 2025-04-25T04:11:50.8867253Z * [new branch] gh/tugsbayasgalan/309/orig -> origin/gh/tugsbayasgalan/309/orig 2025-04-25T04:11:50.8867790Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-04-25T04:11:50.8868282Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-04-25T04:11:50.8868781Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-04-25T04:11:50.8869265Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-04-25T04:11:50.8869751Z * [new branch] gh/vkuzo/11/base -> origin/gh/vkuzo/11/base 2025-04-25T04:11:50.8870336Z * [new branch] gh/vkuzo/11/head -> origin/gh/vkuzo/11/head 2025-04-25T04:11:50.9314707Z * [new branch] gh/vkuzo/11/orig -> origin/gh/vkuzo/11/orig 2025-04-25T04:11:50.9315214Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-04-25T04:11:50.9315710Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-04-25T04:11:50.9316349Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-04-25T04:11:50.9316829Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-04-25T04:11:50.9317372Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-04-25T04:11:50.9317901Z * [new branch] gh/vkuzo/7/base -> origin/gh/vkuzo/7/base 2025-04-25T04:11:50.9318389Z * [new branch] gh/vkuzo/7/head -> origin/gh/vkuzo/7/head 2025-04-25T04:11:50.9318883Z * [new branch] gh/vkuzo/7/orig -> origin/gh/vkuzo/7/orig 2025-04-25T04:11:50.9319364Z * [new branch] gh/vkuzo/8/base -> origin/gh/vkuzo/8/base 2025-04-25T04:11:50.9319836Z * [new branch] gh/vkuzo/8/head -> origin/gh/vkuzo/8/head 2025-04-25T04:11:50.9320312Z * [new branch] gh/vkuzo/8/orig -> origin/gh/vkuzo/8/orig 2025-04-25T04:11:50.9320777Z * [new branch] gh/vkuzo/9/base -> origin/gh/vkuzo/9/base 2025-04-25T04:11:50.9321251Z * [new branch] gh/vkuzo/9/head -> origin/gh/vkuzo/9/head 2025-04-25T04:11:50.9321716Z * [new branch] gh/vkuzo/9/orig -> origin/gh/vkuzo/9/orig 2025-04-25T04:11:50.9322224Z * [new branch] gh/vmoens/15/base -> origin/gh/vmoens/15/base 2025-04-25T04:11:50.9322881Z * [new branch] gh/vmoens/15/head -> origin/gh/vmoens/15/head 2025-04-25T04:11:50.9323433Z * [new branch] gh/vmoens/15/orig -> origin/gh/vmoens/15/orig 2025-04-25T04:11:50.9324050Z * [new branch] gh/vmoens/16/base -> origin/gh/vmoens/16/base 2025-04-25T04:11:50.9324533Z * [new branch] gh/vmoens/16/head -> origin/gh/vmoens/16/head 2025-04-25T04:11:50.9325027Z * [new branch] gh/vmoens/16/orig -> origin/gh/vmoens/16/orig 2025-04-25T04:11:50.9325512Z * [new branch] gh/vmoens/17/base -> origin/gh/vmoens/17/base 2025-04-25T04:11:50.9325994Z * [new branch] gh/vmoens/17/head -> origin/gh/vmoens/17/head 2025-04-25T04:11:50.9326485Z * [new branch] gh/vmoens/17/orig -> origin/gh/vmoens/17/orig 2025-04-25T04:11:50.9326964Z * [new branch] gh/vmoens/18/base -> origin/gh/vmoens/18/base 2025-04-25T04:11:50.9327459Z * [new branch] gh/vmoens/18/head -> origin/gh/vmoens/18/head 2025-04-25T04:11:50.9327952Z * [new branch] gh/vmoens/18/orig -> origin/gh/vmoens/18/orig 2025-04-25T04:11:50.9328487Z * [new branch] gh/voznesenskym/254/base -> origin/gh/voznesenskym/254/base 2025-04-25T04:11:50.9329117Z * [new branch] gh/voznesenskym/254/head -> origin/gh/voznesenskym/254/head 2025-04-25T04:11:50.9329736Z * [new branch] gh/voznesenskym/254/orig -> origin/gh/voznesenskym/254/orig 2025-04-25T04:11:50.9330288Z * [new branch] gh/wanchaol/367/base -> origin/gh/wanchaol/367/base 2025-04-25T04:11:50.9330811Z * [new branch] gh/wanchaol/367/head -> origin/gh/wanchaol/367/head 2025-04-25T04:11:50.9331359Z * [new branch] gh/wanchaol/367/orig -> origin/gh/wanchaol/367/orig 2025-04-25T04:11:50.9331886Z * [new branch] gh/wanchaol/368/base -> origin/gh/wanchaol/368/base 2025-04-25T04:11:50.9332518Z * [new branch] gh/wanchaol/368/head -> origin/gh/wanchaol/368/head 2025-04-25T04:11:50.9333040Z * [new branch] gh/wanchaol/368/orig -> origin/gh/wanchaol/368/orig 2025-04-25T04:11:50.9333553Z * [new branch] gh/wanchaol/369/base -> origin/gh/wanchaol/369/base 2025-04-25T04:11:50.9334079Z * [new branch] gh/wanchaol/369/head -> origin/gh/wanchaol/369/head 2025-04-25T04:11:50.9334595Z * [new branch] gh/wanchaol/369/orig -> origin/gh/wanchaol/369/orig 2025-04-25T04:11:50.9335170Z * [new branch] gh/wanchaol/370/base -> origin/gh/wanchaol/370/base 2025-04-25T04:11:50.9335735Z * [new branch] gh/wanchaol/370/head -> origin/gh/wanchaol/370/head 2025-04-25T04:11:50.9336247Z * [new branch] gh/wanchaol/370/orig -> origin/gh/wanchaol/370/orig 2025-04-25T04:11:50.9336772Z * [new branch] gh/wanchaol/371/base -> origin/gh/wanchaol/371/base 2025-04-25T04:11:50.9337287Z * [new branch] gh/wanchaol/371/head -> origin/gh/wanchaol/371/head 2025-04-25T04:11:50.9337803Z * [new branch] gh/wanchaol/371/orig -> origin/gh/wanchaol/371/orig 2025-04-25T04:11:50.9338320Z * [new branch] gh/wconstab/380/base -> origin/gh/wconstab/380/base 2025-04-25T04:11:50.9338824Z * [new branch] gh/wconstab/380/head -> origin/gh/wconstab/380/head 2025-04-25T04:11:50.9789378Z * [new branch] gh/wconstab/380/orig -> origin/gh/wconstab/380/orig 2025-04-25T04:11:50.9789949Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-04-25T04:11:50.9790485Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-04-25T04:11:50.9791004Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-04-25T04:11:50.9791764Z * [new branch] gh/wconstab/395/base -> origin/gh/wconstab/395/base 2025-04-25T04:11:50.9792301Z * [new branch] gh/wconstab/395/head -> origin/gh/wconstab/395/head 2025-04-25T04:11:50.9792820Z * [new branch] gh/wconstab/395/orig -> origin/gh/wconstab/395/orig 2025-04-25T04:11:50.9793332Z * [new branch] gh/wconstab/396/base -> origin/gh/wconstab/396/base 2025-04-25T04:11:50.9793847Z * [new branch] gh/wconstab/396/head -> origin/gh/wconstab/396/head 2025-04-25T04:11:50.9794359Z * [new branch] gh/wconstab/396/orig -> origin/gh/wconstab/396/orig 2025-04-25T04:11:50.9794875Z * [new branch] gh/wconstab/398/base -> origin/gh/wconstab/398/base 2025-04-25T04:11:50.9795395Z * [new branch] gh/wconstab/398/head -> origin/gh/wconstab/398/head 2025-04-25T04:11:50.9795910Z * [new branch] gh/wconstab/398/orig -> origin/gh/wconstab/398/orig 2025-04-25T04:11:50.9796435Z * [new branch] gh/wconstab/399/base -> origin/gh/wconstab/399/base 2025-04-25T04:11:50.9796944Z * [new branch] gh/wconstab/399/head -> origin/gh/wconstab/399/head 2025-04-25T04:11:50.9812598Z * [new branch] gh/wconstab/399/orig -> origin/gh/wconstab/399/orig 2025-04-25T04:11:50.9813167Z * [new branch] gh/wconstab/400/base -> origin/gh/wconstab/400/base 2025-04-25T04:11:50.9813709Z * [new branch] gh/wconstab/400/head -> origin/gh/wconstab/400/head 2025-04-25T04:11:50.9814234Z * [new branch] gh/wconstab/400/orig -> origin/gh/wconstab/400/orig 2025-04-25T04:11:50.9814764Z * [new branch] gh/wconstab/401/base -> origin/gh/wconstab/401/base 2025-04-25T04:11:50.9815282Z * [new branch] gh/wconstab/401/head -> origin/gh/wconstab/401/head 2025-04-25T04:11:50.9815835Z * [new branch] gh/wconstab/401/orig -> origin/gh/wconstab/401/orig 2025-04-25T04:11:50.9816595Z * [new branch] gh/wconstab/402/base -> origin/gh/wconstab/402/base 2025-04-25T04:11:50.9817116Z * [new branch] gh/wconstab/402/head -> origin/gh/wconstab/402/head 2025-04-25T04:11:50.9817651Z * [new branch] gh/wconstab/402/orig -> origin/gh/wconstab/402/orig 2025-04-25T04:11:50.9818169Z * [new branch] gh/wconstab/403/base -> origin/gh/wconstab/403/base 2025-04-25T04:11:50.9818697Z * [new branch] gh/wconstab/403/head -> origin/gh/wconstab/403/head 2025-04-25T04:11:50.9819230Z * [new branch] gh/wconstab/403/orig -> origin/gh/wconstab/403/orig 2025-04-25T04:11:50.9819743Z * [new branch] gh/wconstab/404/base -> origin/gh/wconstab/404/base 2025-04-25T04:11:50.9820269Z * [new branch] gh/wconstab/404/head -> origin/gh/wconstab/404/head 2025-04-25T04:11:50.9820794Z * [new branch] gh/wconstab/404/orig -> origin/gh/wconstab/404/orig 2025-04-25T04:11:50.9821321Z * [new branch] gh/wconstab/405/base -> origin/gh/wconstab/405/base 2025-04-25T04:11:50.9821836Z * [new branch] gh/wconstab/405/head -> origin/gh/wconstab/405/head 2025-04-25T04:11:50.9822366Z * [new branch] gh/wconstab/405/orig -> origin/gh/wconstab/405/orig 2025-04-25T04:11:50.9822890Z * [new branch] gh/wconstab/406/base -> origin/gh/wconstab/406/base 2025-04-25T04:11:50.9823401Z * [new branch] gh/wconstab/406/head -> origin/gh/wconstab/406/head 2025-04-25T04:11:50.9823927Z * [new branch] gh/wconstab/406/orig -> origin/gh/wconstab/406/orig 2025-04-25T04:11:50.9824437Z * [new branch] gh/wconstab/407/base -> origin/gh/wconstab/407/base 2025-04-25T04:11:50.9825072Z * [new branch] gh/wconstab/407/head -> origin/gh/wconstab/407/head 2025-04-25T04:11:50.9825605Z * [new branch] gh/wconstab/407/orig -> origin/gh/wconstab/407/orig 2025-04-25T04:11:50.9826117Z * [new branch] gh/wconstab/408/base -> origin/gh/wconstab/408/base 2025-04-25T04:11:50.9826647Z * [new branch] gh/wconstab/408/head -> origin/gh/wconstab/408/head 2025-04-25T04:11:50.9827172Z * [new branch] gh/wconstab/408/orig -> origin/gh/wconstab/408/orig 2025-04-25T04:11:50.9827696Z * [new branch] gh/wconstab/409/base -> origin/gh/wconstab/409/base 2025-04-25T04:11:50.9828215Z * [new branch] gh/wconstab/409/head -> origin/gh/wconstab/409/head 2025-04-25T04:11:50.9828735Z * [new branch] gh/wconstab/409/orig -> origin/gh/wconstab/409/orig 2025-04-25T04:11:50.9829251Z * [new branch] gh/wconstab/410/base -> origin/gh/wconstab/410/base 2025-04-25T04:11:51.0239788Z * [new branch] gh/wconstab/410/head -> origin/gh/wconstab/410/head 2025-04-25T04:11:51.0240366Z * [new branch] gh/wconstab/410/orig -> origin/gh/wconstab/410/orig 2025-04-25T04:11:51.0240916Z * [new branch] gh/wconstab/411/base -> origin/gh/wconstab/411/base 2025-04-25T04:11:51.0241433Z * [new branch] gh/wconstab/411/head -> origin/gh/wconstab/411/head 2025-04-25T04:11:51.0241956Z * [new branch] gh/wconstab/411/orig -> origin/gh/wconstab/411/orig 2025-04-25T04:11:51.0242469Z * [new branch] gh/wconstab/412/base -> origin/gh/wconstab/412/base 2025-04-25T04:11:51.0242992Z * [new branch] gh/wconstab/412/head -> origin/gh/wconstab/412/head 2025-04-25T04:11:51.0243521Z * [new branch] gh/wconstab/412/orig -> origin/gh/wconstab/412/orig 2025-04-25T04:11:51.0244097Z * [new branch] gh/wconstab/413/base -> origin/gh/wconstab/413/base 2025-04-25T04:11:51.0244622Z * [new branch] gh/wconstab/413/head -> origin/gh/wconstab/413/head 2025-04-25T04:11:51.0245348Z * [new branch] gh/wconstab/413/orig -> origin/gh/wconstab/413/orig 2025-04-25T04:11:51.0245867Z * [new branch] gh/wconstab/414/base -> origin/gh/wconstab/414/base 2025-04-25T04:11:51.0246386Z * [new branch] gh/wconstab/414/head -> origin/gh/wconstab/414/head 2025-04-25T04:11:51.0246898Z * [new branch] gh/wconstab/414/orig -> origin/gh/wconstab/414/orig 2025-04-25T04:11:51.0247430Z * [new branch] gh/weifengpy/21/base -> origin/gh/weifengpy/21/base 2025-04-25T04:11:51.0247953Z * [new branch] gh/weifengpy/21/head -> origin/gh/weifengpy/21/head 2025-04-25T04:11:51.0248486Z * [new branch] gh/weifengpy/21/orig -> origin/gh/weifengpy/21/orig 2025-04-25T04:11:51.0249013Z * [new branch] gh/weifengpy/24/base -> origin/gh/weifengpy/24/base 2025-04-25T04:11:51.0249535Z * [new branch] gh/weifengpy/24/head -> origin/gh/weifengpy/24/head 2025-04-25T04:11:51.0250064Z * [new branch] gh/weifengpy/24/orig -> origin/gh/weifengpy/24/orig 2025-04-25T04:11:51.0250611Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-04-25T04:11:51.0251180Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-04-25T04:11:51.0251748Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-04-25T04:11:51.0252309Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-04-25T04:11:51.0252879Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-04-25T04:11:51.0253430Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-04-25T04:11:51.0254113Z * [new branch] gh/williamwen42/210/base -> origin/gh/williamwen42/210/base 2025-04-25T04:11:51.0254678Z * [new branch] gh/williamwen42/210/head -> origin/gh/williamwen42/210/head 2025-04-25T04:11:51.0255255Z * [new branch] gh/williamwen42/210/orig -> origin/gh/williamwen42/210/orig 2025-04-25T04:11:51.0255822Z * [new branch] gh/williamwen42/220/base -> origin/gh/williamwen42/220/base 2025-04-25T04:11:51.0256379Z * [new branch] gh/williamwen42/220/head -> origin/gh/williamwen42/220/head 2025-04-25T04:11:51.0256960Z * [new branch] gh/williamwen42/220/orig -> origin/gh/williamwen42/220/orig 2025-04-25T04:11:51.0257520Z * [new branch] gh/williamwen42/222/base -> origin/gh/williamwen42/222/base 2025-04-25T04:11:51.0258084Z * [new branch] gh/williamwen42/222/head -> origin/gh/williamwen42/222/head 2025-04-25T04:11:51.0258657Z * [new branch] gh/williamwen42/222/orig -> origin/gh/williamwen42/222/orig 2025-04-25T04:11:51.0259223Z * [new branch] gh/williamwen42/223/base -> origin/gh/williamwen42/223/base 2025-04-25T04:11:51.0259787Z * [new branch] gh/williamwen42/223/head -> origin/gh/williamwen42/223/head 2025-04-25T04:11:51.0260343Z * [new branch] gh/williamwen42/223/orig -> origin/gh/williamwen42/223/orig 2025-04-25T04:11:51.0260908Z * [new branch] gh/williamwen42/224/base -> origin/gh/williamwen42/224/base 2025-04-25T04:11:51.0261470Z * [new branch] gh/williamwen42/224/head -> origin/gh/williamwen42/224/head 2025-04-25T04:11:51.0262023Z * [new branch] gh/williamwen42/224/orig -> origin/gh/williamwen42/224/orig 2025-04-25T04:11:51.0262591Z * [new branch] gh/williamwen42/225/base -> origin/gh/williamwen42/225/base 2025-04-25T04:11:51.0263149Z * [new branch] gh/williamwen42/225/head -> origin/gh/williamwen42/225/head 2025-04-25T04:11:51.0263714Z * [new branch] gh/williamwen42/225/orig -> origin/gh/williamwen42/225/orig 2025-04-25T04:11:51.0264377Z * [new branch] gh/williamwen42/226/base -> origin/gh/williamwen42/226/base 2025-04-25T04:11:51.0689777Z * [new branch] gh/williamwen42/226/head -> origin/gh/williamwen42/226/head 2025-04-25T04:11:51.0690364Z * [new branch] gh/williamwen42/226/orig -> origin/gh/williamwen42/226/orig 2025-04-25T04:11:51.0690924Z * [new branch] gh/williamwen42/227/base -> origin/gh/williamwen42/227/base 2025-04-25T04:11:51.0691499Z * [new branch] gh/williamwen42/227/head -> origin/gh/williamwen42/227/head 2025-04-25T04:11:51.0692064Z * [new branch] gh/williamwen42/227/orig -> origin/gh/williamwen42/227/orig 2025-04-25T04:11:51.0692618Z * [new branch] gh/williamwen42/228/base -> origin/gh/williamwen42/228/base 2025-04-25T04:11:51.0693214Z * [new branch] gh/williamwen42/228/head -> origin/gh/williamwen42/228/head 2025-04-25T04:11:51.0693786Z * [new branch] gh/williamwen42/228/orig -> origin/gh/williamwen42/228/orig 2025-04-25T04:11:51.0694354Z * [new branch] gh/williamwen42/229/base -> origin/gh/williamwen42/229/base 2025-04-25T04:11:51.0694914Z * [new branch] gh/williamwen42/229/head -> origin/gh/williamwen42/229/head 2025-04-25T04:11:51.0695472Z * [new branch] gh/williamwen42/229/orig -> origin/gh/williamwen42/229/orig 2025-04-25T04:11:51.0696037Z * [new branch] gh/williamwen42/230/base -> origin/gh/williamwen42/230/base 2025-04-25T04:11:51.0696593Z * [new branch] gh/williamwen42/230/head -> origin/gh/williamwen42/230/head 2025-04-25T04:11:51.0697166Z * [new branch] gh/williamwen42/230/orig -> origin/gh/williamwen42/230/orig 2025-04-25T04:11:51.0697900Z * [new branch] gh/williamwen42/231/base -> origin/gh/williamwen42/231/base 2025-04-25T04:11:51.0698469Z * [new branch] gh/williamwen42/231/head -> origin/gh/williamwen42/231/head 2025-04-25T04:11:51.0699040Z * [new branch] gh/williamwen42/231/orig -> origin/gh/williamwen42/231/orig 2025-04-25T04:11:51.0699597Z * [new branch] gh/williamwen42/232/base -> origin/gh/williamwen42/232/base 2025-04-25T04:11:51.0700171Z * [new branch] gh/williamwen42/232/head -> origin/gh/williamwen42/232/head 2025-04-25T04:11:51.0700743Z * [new branch] gh/williamwen42/232/orig -> origin/gh/williamwen42/232/orig 2025-04-25T04:11:51.0701301Z * [new branch] gh/williamwen42/233/base -> origin/gh/williamwen42/233/base 2025-04-25T04:11:51.0701859Z * [new branch] gh/williamwen42/233/head -> origin/gh/williamwen42/233/head 2025-04-25T04:11:51.0702514Z * [new branch] gh/williamwen42/233/orig -> origin/gh/williamwen42/233/orig 2025-04-25T04:11:51.0703133Z * [new branch] gh/williamwen42/234/base -> origin/gh/williamwen42/234/base 2025-04-25T04:11:51.0703713Z * [new branch] gh/williamwen42/234/head -> origin/gh/williamwen42/234/head 2025-04-25T04:11:51.0704266Z * [new branch] gh/williamwen42/234/orig -> origin/gh/williamwen42/234/orig 2025-04-25T04:11:51.0704795Z * [new branch] gh/wz337/2/base -> origin/gh/wz337/2/base 2025-04-25T04:11:51.0705289Z * [new branch] gh/wz337/2/head -> origin/gh/wz337/2/head 2025-04-25T04:11:51.0705750Z * [new branch] gh/wz337/3/base -> origin/gh/wz337/3/base 2025-04-25T04:11:51.0706220Z * [new branch] gh/wz337/3/head -> origin/gh/wz337/3/head 2025-04-25T04:11:51.0706691Z * [new branch] gh/xmfan/157/base -> origin/gh/xmfan/157/base 2025-04-25T04:11:51.0707194Z * [new branch] gh/xmfan/157/head -> origin/gh/xmfan/157/head 2025-04-25T04:11:51.0707807Z * [new branch] gh/xmfan/157/orig -> origin/gh/xmfan/157/orig 2025-04-25T04:11:51.0708299Z * [new branch] gh/xmfan/166/base -> origin/gh/xmfan/166/base 2025-04-25T04:11:51.0708787Z * [new branch] gh/xmfan/166/head -> origin/gh/xmfan/166/head 2025-04-25T04:11:51.0709269Z * [new branch] gh/xmfan/166/orig -> origin/gh/xmfan/166/orig 2025-04-25T04:11:51.0709765Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-04-25T04:11:51.0710241Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-04-25T04:11:51.0710732Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-04-25T04:11:51.0711223Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-04-25T04:11:51.0711706Z * [new branch] gh/xmfan/173/base -> origin/gh/xmfan/173/base 2025-04-25T04:11:51.0712208Z * [new branch] gh/xmfan/173/head -> origin/gh/xmfan/173/head 2025-04-25T04:11:51.0712688Z * [new branch] gh/xmfan/173/orig -> origin/gh/xmfan/173/orig 2025-04-25T04:11:51.0713179Z * [new branch] gh/xmfan/174/base -> origin/gh/xmfan/174/base 2025-04-25T04:11:51.0713665Z * [new branch] gh/xmfan/174/head -> origin/gh/xmfan/174/head 2025-04-25T04:11:51.0714147Z * [new branch] gh/xmfan/174/orig -> origin/gh/xmfan/174/orig 2025-04-25T04:11:51.3042723Z * [new branch] gh/xmfan/178/base -> origin/gh/xmfan/178/base 2025-04-25T04:11:51.3043311Z * [new branch] gh/xmfan/178/head -> origin/gh/xmfan/178/head 2025-04-25T04:11:51.3043810Z * [new branch] gh/xmfan/178/orig -> origin/gh/xmfan/178/orig 2025-04-25T04:11:51.3044632Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-04-25T04:11:51.3045140Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-04-25T04:11:51.3045645Z * [new branch] gh/xmfan/180/base -> origin/gh/xmfan/180/base 2025-04-25T04:11:51.3046136Z * [new branch] gh/xmfan/180/head -> origin/gh/xmfan/180/head 2025-04-25T04:11:51.3046625Z * [new branch] gh/xmfan/180/orig -> origin/gh/xmfan/180/orig 2025-04-25T04:11:51.3047115Z * [new branch] gh/xmfan/187/base -> origin/gh/xmfan/187/base 2025-04-25T04:11:51.3047595Z * [new branch] gh/xmfan/187/head -> origin/gh/xmfan/187/head 2025-04-25T04:11:51.3048153Z * [new branch] gh/xmfan/187/orig -> origin/gh/xmfan/187/orig 2025-04-25T04:11:51.3048688Z * [new branch] gh/xmfan/193/base -> origin/gh/xmfan/193/base 2025-04-25T04:11:51.3049179Z * [new branch] gh/xmfan/193/head -> origin/gh/xmfan/193/head 2025-04-25T04:11:51.3049675Z * [new branch] gh/xmfan/193/orig -> origin/gh/xmfan/193/orig 2025-04-25T04:11:51.3050156Z * [new branch] gh/xmfan/194/base -> origin/gh/xmfan/194/base 2025-04-25T04:11:51.3050644Z * [new branch] gh/xmfan/194/head -> origin/gh/xmfan/194/head 2025-04-25T04:11:51.3051132Z * [new branch] gh/xmfan/194/orig -> origin/gh/xmfan/194/orig 2025-04-25T04:11:51.3051622Z * [new branch] gh/xmfan/200/base -> origin/gh/xmfan/200/base 2025-04-25T04:11:51.3052105Z * [new branch] gh/xmfan/200/head -> origin/gh/xmfan/200/head 2025-04-25T04:11:51.3052587Z * [new branch] gh/xmfan/200/orig -> origin/gh/xmfan/200/orig 2025-04-25T04:11:51.3053073Z * [new branch] gh/xmfan/201/base -> origin/gh/xmfan/201/base 2025-04-25T04:11:51.3053560Z * [new branch] gh/xmfan/201/head -> origin/gh/xmfan/201/head 2025-04-25T04:11:51.3054297Z * [new branch] gh/xmfan/201/orig -> origin/gh/xmfan/201/orig 2025-04-25T04:11:51.3054786Z * [new branch] gh/xmfan/202/base -> origin/gh/xmfan/202/base 2025-04-25T04:11:51.3055277Z * [new branch] gh/xmfan/202/head -> origin/gh/xmfan/202/head 2025-04-25T04:11:51.3055776Z * [new branch] gh/xmfan/202/orig -> origin/gh/xmfan/202/orig 2025-04-25T04:11:51.3056258Z * [new branch] gh/xmfan/206/base -> origin/gh/xmfan/206/base 2025-04-25T04:11:51.3056740Z * [new branch] gh/xmfan/206/head -> origin/gh/xmfan/206/head 2025-04-25T04:11:51.3057221Z * [new branch] gh/xmfan/206/orig -> origin/gh/xmfan/206/orig 2025-04-25T04:11:51.3057717Z * [new branch] gh/xmfan/209/base -> origin/gh/xmfan/209/base 2025-04-25T04:11:51.3058208Z * [new branch] gh/xmfan/209/head -> origin/gh/xmfan/209/head 2025-04-25T04:11:51.3058696Z * [new branch] gh/xmfan/209/orig -> origin/gh/xmfan/209/orig 2025-04-25T04:11:51.3059190Z * [new branch] gh/xmfan/212/base -> origin/gh/xmfan/212/base 2025-04-25T04:11:51.3059738Z * [new branch] gh/xmfan/212/head -> origin/gh/xmfan/212/head 2025-04-25T04:11:51.3060283Z * [new branch] gh/xmfan/212/orig -> origin/gh/xmfan/212/orig 2025-04-25T04:11:51.3060773Z * [new branch] gh/xmfan/213/base -> origin/gh/xmfan/213/base 2025-04-25T04:11:51.3061257Z * [new branch] gh/xmfan/213/head -> origin/gh/xmfan/213/head 2025-04-25T04:11:51.3061748Z * [new branch] gh/xmfan/213/orig -> origin/gh/xmfan/213/orig 2025-04-25T04:11:51.3062229Z * [new branch] gh/xmfan/214/base -> origin/gh/xmfan/214/base 2025-04-25T04:11:51.3062832Z * [new branch] gh/xmfan/214/head -> origin/gh/xmfan/214/head 2025-04-25T04:11:51.3063325Z * [new branch] gh/xmfan/214/orig -> origin/gh/xmfan/214/orig 2025-04-25T04:11:51.3063831Z * [new branch] gh/xmfan/215/base -> origin/gh/xmfan/215/base 2025-04-25T04:11:51.3064333Z * [new branch] gh/xmfan/215/head -> origin/gh/xmfan/215/head 2025-04-25T04:11:51.3064818Z * [new branch] gh/xmfan/215/orig -> origin/gh/xmfan/215/orig 2025-04-25T04:11:51.3065323Z * [new branch] gh/xmfan/216/base -> origin/gh/xmfan/216/base 2025-04-25T04:11:51.3065865Z * [new branch] gh/xmfan/216/head -> origin/gh/xmfan/216/head 2025-04-25T04:11:51.3066422Z * [new branch] gh/xmfan/216/orig -> origin/gh/xmfan/216/orig 2025-04-25T04:11:51.3066918Z * [new branch] gh/xmfan/217/base -> origin/gh/xmfan/217/base 2025-04-25T04:11:51.3067412Z * [new branch] gh/xmfan/217/head -> origin/gh/xmfan/217/head 2025-04-25T04:11:51.3519171Z * [new branch] gh/xmfan/217/orig -> origin/gh/xmfan/217/orig 2025-04-25T04:11:51.3519782Z * [new branch] gh/xmfan/218/base -> origin/gh/xmfan/218/base 2025-04-25T04:11:51.3520319Z * [new branch] gh/xmfan/218/head -> origin/gh/xmfan/218/head 2025-04-25T04:11:51.3520819Z * [new branch] gh/xmfan/218/orig -> origin/gh/xmfan/218/orig 2025-04-25T04:11:51.3521312Z * [new branch] gh/xmfan/219/base -> origin/gh/xmfan/219/base 2025-04-25T04:11:51.3521808Z * [new branch] gh/xmfan/219/head -> origin/gh/xmfan/219/head 2025-04-25T04:11:51.3522286Z * [new branch] gh/xmfan/219/orig -> origin/gh/xmfan/219/orig 2025-04-25T04:11:51.3522775Z * [new branch] gh/xmfan/220/base -> origin/gh/xmfan/220/base 2025-04-25T04:11:51.3523302Z * [new branch] gh/xmfan/220/head -> origin/gh/xmfan/220/head 2025-04-25T04:11:51.3524060Z * [new branch] gh/xmfan/220/orig -> origin/gh/xmfan/220/orig 2025-04-25T04:11:51.3524557Z * [new branch] gh/xmfan/221/base -> origin/gh/xmfan/221/base 2025-04-25T04:11:51.3525102Z * [new branch] gh/xmfan/221/head -> origin/gh/xmfan/221/head 2025-04-25T04:11:51.3525656Z * [new branch] gh/xmfan/221/orig -> origin/gh/xmfan/221/orig 2025-04-25T04:11:51.3526159Z * [new branch] gh/xmfan/222/base -> origin/gh/xmfan/222/base 2025-04-25T04:11:51.3526639Z * [new branch] gh/xmfan/222/head -> origin/gh/xmfan/222/head 2025-04-25T04:11:51.3527124Z * [new branch] gh/xmfan/222/orig -> origin/gh/xmfan/222/orig 2025-04-25T04:11:51.3527606Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-04-25T04:11:51.3528093Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-04-25T04:11:51.3528582Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-04-25T04:11:51.3529058Z * [new branch] gh/xmfan/224/base -> origin/gh/xmfan/224/base 2025-04-25T04:11:51.3529553Z * [new branch] gh/xmfan/224/head -> origin/gh/xmfan/224/head 2025-04-25T04:11:51.3530034Z * [new branch] gh/xmfan/224/orig -> origin/gh/xmfan/224/orig 2025-04-25T04:11:51.3530515Z * [new branch] gh/xmfan/225/base -> origin/gh/xmfan/225/base 2025-04-25T04:11:51.3531061Z * [new branch] gh/xmfan/225/head -> origin/gh/xmfan/225/head 2025-04-25T04:11:51.3531598Z * [new branch] gh/xmfan/225/orig -> origin/gh/xmfan/225/orig 2025-04-25T04:11:51.3532096Z * [new branch] gh/xmfan/226/base -> origin/gh/xmfan/226/base 2025-04-25T04:11:51.3532718Z * [new branch] gh/xmfan/226/head -> origin/gh/xmfan/226/head 2025-04-25T04:11:51.3533208Z * [new branch] gh/xmfan/226/orig -> origin/gh/xmfan/226/orig 2025-04-25T04:11:51.3533694Z * [new branch] gh/xmfan/227/base -> origin/gh/xmfan/227/base 2025-04-25T04:11:51.3534178Z * [new branch] gh/xmfan/227/head -> origin/gh/xmfan/227/head 2025-04-25T04:11:51.3534665Z * [new branch] gh/xmfan/227/orig -> origin/gh/xmfan/227/orig 2025-04-25T04:11:51.3535146Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-04-25T04:11:51.3535633Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-04-25T04:11:51.3536124Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-04-25T04:11:51.3536709Z * [new branch] gh/xuanzhang816/11/base -> origin/gh/xuanzhang816/11/base 2025-04-25T04:11:51.3537330Z * [new branch] gh/xuanzhang816/11/head -> origin/gh/xuanzhang816/11/head 2025-04-25T04:11:51.3537879Z * [new branch] gh/xuanzhang816/11/orig -> origin/gh/xuanzhang816/11/orig 2025-04-25T04:11:51.3538433Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-04-25T04:11:51.3538989Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-04-25T04:11:51.3539536Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-04-25T04:11:51.3540074Z * [new branch] gh/xuhancn/1/base -> origin/gh/xuhancn/1/base 2025-04-25T04:11:51.3540583Z * [new branch] gh/xuhancn/1/head -> origin/gh/xuhancn/1/head 2025-04-25T04:11:51.3541096Z * [new branch] gh/xuhancn/2/base -> origin/gh/xuhancn/2/base 2025-04-25T04:11:51.3541608Z * [new branch] gh/xuhancn/2/head -> origin/gh/xuhancn/2/head 2025-04-25T04:11:51.3542217Z * [new branch] gh/xuhancn/3/base -> origin/gh/xuhancn/3/base 2025-04-25T04:11:51.3542778Z * [new branch] gh/xuhancn/3/head -> origin/gh/xuhancn/3/head 2025-04-25T04:11:51.3543324Z * [new branch] gh/xuhancn/4/base -> origin/gh/xuhancn/4/base 2025-04-25T04:11:51.4000534Z * [new branch] gh/xuhancn/4/head -> origin/gh/xuhancn/4/head 2025-04-25T04:11:51.4001080Z * [new branch] gh/xuhancn/5/base -> origin/gh/xuhancn/5/base 2025-04-25T04:11:51.4001580Z * [new branch] gh/xuhancn/5/head -> origin/gh/xuhancn/5/head 2025-04-25T04:11:51.4002101Z * [new branch] gh/xuhancn/6/base -> origin/gh/xuhancn/6/base 2025-04-25T04:11:51.4002601Z * [new branch] gh/xuhancn/6/head -> origin/gh/xuhancn/6/head 2025-04-25T04:11:51.4003126Z * [new branch] gh/xuhancn/7/base -> origin/gh/xuhancn/7/base 2025-04-25T04:11:51.4003641Z * [new branch] gh/xuhancn/7/head -> origin/gh/xuhancn/7/head 2025-04-25T04:11:51.4004223Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-04-25T04:11:51.4004749Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-04-25T04:11:51.4005268Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-04-25T04:11:51.4005772Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-04-25T04:11:51.4006286Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-04-25T04:11:51.4006793Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-04-25T04:11:51.4007309Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-04-25T04:11:51.4008026Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-04-25T04:11:51.4008555Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-04-25T04:11:51.4009084Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-04-25T04:11:51.4009597Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-04-25T04:11:51.4010112Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-04-25T04:11:51.4010624Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-04-25T04:11:51.4011152Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-04-25T04:11:51.4011671Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-04-25T04:11:51.4012184Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-04-25T04:11:51.4012706Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-04-25T04:11:51.4013214Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-04-25T04:11:51.4013725Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-04-25T04:11:51.4014237Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-04-25T04:11:51.4014742Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-04-25T04:11:51.4015252Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-04-25T04:11:51.4015761Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-04-25T04:11:51.4016286Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-04-25T04:11:51.4016815Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-04-25T04:11:51.4017460Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-04-25T04:11:51.4017991Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-04-25T04:11:51.4018505Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-04-25T04:11:51.4019039Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-04-25T04:11:51.4019561Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-04-25T04:11:51.4020072Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-04-25T04:11:51.4020588Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-04-25T04:11:51.4021098Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-04-25T04:11:51.4021616Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-04-25T04:11:51.4022128Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-04-25T04:11:51.4022641Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-04-25T04:11:51.4023157Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-04-25T04:11:51.4023664Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-04-25T04:11:51.4024181Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-04-25T04:11:51.4024685Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-04-25T04:11:51.4568272Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-04-25T04:11:51.4569110Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-04-25T04:11:51.4569650Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-04-25T04:11:51.4570184Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-04-25T04:11:51.4570703Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-04-25T04:11:51.4571211Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-04-25T04:11:51.4571728Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-04-25T04:11:51.4572233Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-04-25T04:11:51.4572747Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-04-25T04:11:51.4573257Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-04-25T04:11:51.4573840Z * [new branch] gh/yanboliang/62/base -> origin/gh/yanboliang/62/base 2025-04-25T04:11:51.4574483Z * [new branch] gh/yanboliang/62/head -> origin/gh/yanboliang/62/head 2025-04-25T04:11:51.4575088Z * [new branch] gh/yanboliang/62/orig -> origin/gh/yanboliang/62/orig 2025-04-25T04:11:51.4575663Z * [new branch] gh/ydwu4/194/base -> origin/gh/ydwu4/194/base 2025-04-25T04:11:51.4576207Z * [new branch] gh/ydwu4/194/head -> origin/gh/ydwu4/194/head 2025-04-25T04:11:51.4576791Z * [new branch] gh/ydwu4/194/orig -> origin/gh/ydwu4/194/orig 2025-04-25T04:11:51.4577342Z * [new branch] gh/ydwu4/201/base -> origin/gh/ydwu4/201/base 2025-04-25T04:11:51.4577872Z * [new branch] gh/ydwu4/201/head -> origin/gh/ydwu4/201/head 2025-04-25T04:11:51.4578417Z * [new branch] gh/ydwu4/201/orig -> origin/gh/ydwu4/201/orig 2025-04-25T04:11:51.4578956Z * [new branch] gh/ydwu4/208/base -> origin/gh/ydwu4/208/base 2025-04-25T04:11:51.4579683Z * [new branch] gh/ydwu4/208/head -> origin/gh/ydwu4/208/head 2025-04-25T04:11:51.4580225Z * [new branch] gh/ydwu4/208/orig -> origin/gh/ydwu4/208/orig 2025-04-25T04:11:51.4580762Z * [new branch] gh/ydwu4/219/base -> origin/gh/ydwu4/219/base 2025-04-25T04:11:51.4581362Z * [new branch] gh/ydwu4/219/head -> origin/gh/ydwu4/219/head 2025-04-25T04:11:51.4581898Z * [new branch] gh/ydwu4/219/orig -> origin/gh/ydwu4/219/orig 2025-04-25T04:11:51.4582434Z * [new branch] gh/ydwu4/222/base -> origin/gh/ydwu4/222/base 2025-04-25T04:11:51.4582974Z * [new branch] gh/ydwu4/222/head -> origin/gh/ydwu4/222/head 2025-04-25T04:11:51.4583559Z * [new branch] gh/ydwu4/222/orig -> origin/gh/ydwu4/222/orig 2025-04-25T04:11:51.4584106Z * [new branch] gh/ydwu4/223/base -> origin/gh/ydwu4/223/base 2025-04-25T04:11:51.4584641Z * [new branch] gh/ydwu4/223/head -> origin/gh/ydwu4/223/head 2025-04-25T04:11:51.4585178Z * [new branch] gh/ydwu4/223/orig -> origin/gh/ydwu4/223/orig 2025-04-25T04:11:51.4585717Z * [new branch] gh/ydwu4/224/base -> origin/gh/ydwu4/224/base 2025-04-25T04:11:51.4586310Z * [new branch] gh/ydwu4/224/head -> origin/gh/ydwu4/224/head 2025-04-25T04:11:51.4586849Z * [new branch] gh/ydwu4/224/orig -> origin/gh/ydwu4/224/orig 2025-04-25T04:11:51.4587386Z * [new branch] gh/ydwu4/225/base -> origin/gh/ydwu4/225/base 2025-04-25T04:11:51.4587930Z * [new branch] gh/ydwu4/225/head -> origin/gh/ydwu4/225/head 2025-04-25T04:11:51.4588510Z * [new branch] gh/ydwu4/225/orig -> origin/gh/ydwu4/225/orig 2025-04-25T04:11:51.4589160Z * [new branch] gh/ydwu4/226/base -> origin/gh/ydwu4/226/base 2025-04-25T04:11:51.4589717Z * [new branch] gh/ydwu4/226/head -> origin/gh/ydwu4/226/head 2025-04-25T04:11:51.4590301Z * [new branch] gh/ydwu4/226/orig -> origin/gh/ydwu4/226/orig 2025-04-25T04:11:51.4590868Z * [new branch] gh/ydwu4/227/base -> origin/gh/ydwu4/227/base 2025-04-25T04:11:51.4591396Z * [new branch] gh/ydwu4/227/head -> origin/gh/ydwu4/227/head 2025-04-25T04:11:51.4591934Z * [new branch] gh/ydwu4/227/orig -> origin/gh/ydwu4/227/orig 2025-04-25T04:11:51.4592505Z * [new branch] gh/ydwu4/228/base -> origin/gh/ydwu4/228/base 2025-04-25T04:11:51.4593054Z * [new branch] gh/ydwu4/228/head -> origin/gh/ydwu4/228/head 2025-04-25T04:11:51.4593597Z * [new branch] gh/ydwu4/228/orig -> origin/gh/ydwu4/228/orig 2025-04-25T04:11:51.4594134Z * [new branch] gh/ydwu4/229/base -> origin/gh/ydwu4/229/base 2025-04-25T04:11:51.4594677Z * [new branch] gh/ydwu4/229/head -> origin/gh/ydwu4/229/head 2025-04-25T04:11:51.5087315Z * [new branch] gh/ydwu4/229/orig -> origin/gh/ydwu4/229/orig 2025-04-25T04:11:51.5088008Z * [new branch] gh/ydwu4/230/base -> origin/gh/ydwu4/230/base 2025-04-25T04:11:51.5088569Z * [new branch] gh/ydwu4/230/head -> origin/gh/ydwu4/230/head 2025-04-25T04:11:51.5089115Z * [new branch] gh/ydwu4/230/orig -> origin/gh/ydwu4/230/orig 2025-04-25T04:11:51.5089717Z * [new branch] gh/ydwu4/231/base -> origin/gh/ydwu4/231/base 2025-04-25T04:11:51.5090258Z * [new branch] gh/ydwu4/231/head -> origin/gh/ydwu4/231/head 2025-04-25T04:11:51.5090793Z * [new branch] gh/ydwu4/231/orig -> origin/gh/ydwu4/231/orig 2025-04-25T04:11:51.5092452Z * [new branch] gh/ydwu4/232/base -> origin/gh/ydwu4/232/base 2025-04-25T04:11:51.5093001Z * [new branch] gh/ydwu4/232/head -> origin/gh/ydwu4/232/head 2025-04-25T04:11:51.5093540Z * [new branch] gh/ydwu4/232/orig -> origin/gh/ydwu4/232/orig 2025-04-25T04:11:51.5094152Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-04-25T04:11:51.5094706Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-04-25T04:11:51.5095240Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-04-25T04:11:51.5095767Z * [new branch] gh/ydwu4/234/base -> origin/gh/ydwu4/234/base 2025-04-25T04:11:51.5096301Z * [new branch] gh/ydwu4/234/head -> origin/gh/ydwu4/234/head 2025-04-25T04:11:51.5096783Z * [new branch] gh/ydwu4/234/orig -> origin/gh/ydwu4/234/orig 2025-04-25T04:11:51.5097280Z * [new branch] gh/ydwu4/235/base -> origin/gh/ydwu4/235/base 2025-04-25T04:11:51.5097770Z * [new branch] gh/ydwu4/235/head -> origin/gh/ydwu4/235/head 2025-04-25T04:11:51.5098248Z * [new branch] gh/ydwu4/235/orig -> origin/gh/ydwu4/235/orig 2025-04-25T04:11:51.5098742Z * [new branch] gh/ydwu4/236/base -> origin/gh/ydwu4/236/base 2025-04-25T04:11:51.5099217Z * [new branch] gh/ydwu4/236/head -> origin/gh/ydwu4/236/head 2025-04-25T04:11:51.5099703Z * [new branch] gh/ydwu4/236/orig -> origin/gh/ydwu4/236/orig 2025-04-25T04:11:51.5100185Z * [new branch] gh/ydwu4/237/base -> origin/gh/ydwu4/237/base 2025-04-25T04:11:51.5100663Z * [new branch] gh/ydwu4/237/head -> origin/gh/ydwu4/237/head 2025-04-25T04:11:51.5101323Z * [new branch] gh/ydwu4/237/orig -> origin/gh/ydwu4/237/orig 2025-04-25T04:11:51.5101865Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-04-25T04:11:51.5102407Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-04-25T04:11:51.5102897Z * [new branch] gh/yf225/164/base -> origin/gh/yf225/164/base 2025-04-25T04:11:51.5103376Z * [new branch] gh/yf225/164/head -> origin/gh/yf225/164/head 2025-04-25T04:11:51.5103857Z * [new branch] gh/yf225/164/orig -> origin/gh/yf225/164/orig 2025-04-25T04:11:51.5104334Z * [new branch] gh/yf225/165/base -> origin/gh/yf225/165/base 2025-04-25T04:11:51.5104812Z * [new branch] gh/yf225/165/head -> origin/gh/yf225/165/head 2025-04-25T04:11:51.5105283Z * [new branch] gh/yf225/165/orig -> origin/gh/yf225/165/orig 2025-04-25T04:11:51.5105768Z * [new branch] gh/yf225/166/base -> origin/gh/yf225/166/base 2025-04-25T04:11:51.5106252Z * [new branch] gh/yf225/166/head -> origin/gh/yf225/166/head 2025-04-25T04:11:51.5106729Z * [new branch] gh/yf225/166/orig -> origin/gh/yf225/166/orig 2025-04-25T04:11:51.5107209Z * [new branch] gh/yf225/167/base -> origin/gh/yf225/167/base 2025-04-25T04:11:51.5107732Z * [new branch] gh/yf225/167/head -> origin/gh/yf225/167/head 2025-04-25T04:11:51.5108272Z * [new branch] gh/yf225/167/orig -> origin/gh/yf225/167/orig 2025-04-25T04:11:51.5108807Z * [new branch] gh/yf225/168/base -> origin/gh/yf225/168/base 2025-04-25T04:11:51.5109280Z * [new branch] gh/yf225/168/head -> origin/gh/yf225/168/head 2025-04-25T04:11:51.5109768Z * [new branch] gh/yf225/168/orig -> origin/gh/yf225/168/orig 2025-04-25T04:11:51.5110249Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-04-25T04:11:51.5110844Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-04-25T04:11:51.5111350Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-04-25T04:11:51.5111901Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-04-25T04:11:51.5112434Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-04-25T04:11:51.5112951Z * [new branch] gh/yifuwang/185/base -> origin/gh/yifuwang/185/base 2025-04-25T04:11:51.5551420Z * [new branch] gh/yifuwang/185/head -> origin/gh/yifuwang/185/head 2025-04-25T04:11:51.5552067Z * [new branch] gh/yifuwang/185/orig -> origin/gh/yifuwang/185/orig 2025-04-25T04:11:51.5552596Z * [new branch] gh/yifuwang/186/base -> origin/gh/yifuwang/186/base 2025-04-25T04:11:51.5553159Z * [new branch] gh/yifuwang/186/head -> origin/gh/yifuwang/186/head 2025-04-25T04:11:51.5553685Z * [new branch] gh/yifuwang/186/orig -> origin/gh/yifuwang/186/orig 2025-04-25T04:11:51.5554231Z * [new branch] gh/yifuwang/187/base -> origin/gh/yifuwang/187/base 2025-04-25T04:11:51.5554754Z * [new branch] gh/yifuwang/187/head -> origin/gh/yifuwang/187/head 2025-04-25T04:11:51.5555267Z * [new branch] gh/yifuwang/187/orig -> origin/gh/yifuwang/187/orig 2025-04-25T04:11:51.5555789Z * [new branch] gh/yifuwang/188/base -> origin/gh/yifuwang/188/base 2025-04-25T04:11:51.5556299Z * [new branch] gh/yifuwang/188/head -> origin/gh/yifuwang/188/head 2025-04-25T04:11:51.5556817Z * [new branch] gh/yifuwang/188/orig -> origin/gh/yifuwang/188/orig 2025-04-25T04:11:51.5557395Z * [new branch] gh/yifuwang/189/base -> origin/gh/yifuwang/189/base 2025-04-25T04:11:51.5558613Z * [new branch] gh/yifuwang/189/head -> origin/gh/yifuwang/189/head 2025-04-25T04:11:51.5559151Z * [new branch] gh/yifuwang/189/orig -> origin/gh/yifuwang/189/orig 2025-04-25T04:11:51.5559658Z * [new branch] gh/yifuwang/190/base -> origin/gh/yifuwang/190/base 2025-04-25T04:11:51.5560174Z * [new branch] gh/yifuwang/190/head -> origin/gh/yifuwang/190/head 2025-04-25T04:11:51.5560695Z * [new branch] gh/yifuwang/190/orig -> origin/gh/yifuwang/190/orig 2025-04-25T04:11:51.5561203Z * [new branch] gh/yifuwang/191/base -> origin/gh/yifuwang/191/base 2025-04-25T04:11:51.5561723Z * [new branch] gh/yifuwang/191/head -> origin/gh/yifuwang/191/head 2025-04-25T04:11:51.5562237Z * [new branch] gh/yifuwang/191/orig -> origin/gh/yifuwang/191/orig 2025-04-25T04:11:51.5562753Z * [new branch] gh/yifuwang/192/base -> origin/gh/yifuwang/192/base 2025-04-25T04:11:51.5563336Z * [new branch] gh/yifuwang/192/head -> origin/gh/yifuwang/192/head 2025-04-25T04:11:51.5564015Z * [new branch] gh/yifuwang/192/orig -> origin/gh/yifuwang/192/orig 2025-04-25T04:11:51.5564536Z * [new branch] gh/yifuwang/194/base -> origin/gh/yifuwang/194/base 2025-04-25T04:11:51.5565046Z * [new branch] gh/yifuwang/194/head -> origin/gh/yifuwang/194/head 2025-04-25T04:11:51.5565564Z * [new branch] gh/yifuwang/194/orig -> origin/gh/yifuwang/194/orig 2025-04-25T04:11:51.5566077Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-04-25T04:11:51.5566598Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-04-25T04:11:51.5567121Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-04-25T04:11:51.5567634Z * [new branch] gh/yifuwang/196/base -> origin/gh/yifuwang/196/base 2025-04-25T04:11:51.5568309Z * [new branch] gh/yifuwang/196/head -> origin/gh/yifuwang/196/head 2025-04-25T04:11:51.5568829Z * [new branch] gh/yifuwang/196/orig -> origin/gh/yifuwang/196/orig 2025-04-25T04:11:51.5569421Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-04-25T04:11:51.5570006Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-04-25T04:11:51.5570512Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-04-25T04:11:51.5571039Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-04-25T04:11:51.5571555Z * [new branch] gh/ysiraichi/78/base -> origin/gh/ysiraichi/78/base 2025-04-25T04:11:51.5572083Z * [new branch] gh/ysiraichi/78/head -> origin/gh/ysiraichi/78/head 2025-04-25T04:11:51.5572607Z * [new branch] gh/ysiraichi/78/orig -> origin/gh/ysiraichi/78/orig 2025-04-25T04:11:51.5573141Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-04-25T04:11:51.5573659Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-04-25T04:11:51.5574173Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-04-25T04:11:51.5574694Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-04-25T04:11:51.5575264Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-04-25T04:11:51.5575842Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-04-25T04:11:51.5576369Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-04-25T04:11:51.6028519Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-04-25T04:11:51.6029202Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-04-25T04:11:51.6029794Z * [new branch] gh/ysiraichi/82/base -> origin/gh/ysiraichi/82/base 2025-04-25T04:11:51.6030317Z * [new branch] gh/ysiraichi/82/head -> origin/gh/ysiraichi/82/head 2025-04-25T04:11:51.6030839Z * [new branch] gh/ysiraichi/82/orig -> origin/gh/ysiraichi/82/orig 2025-04-25T04:11:51.6031353Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-04-25T04:11:51.6031880Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-04-25T04:11:51.6032407Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-04-25T04:11:51.6032925Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-04-25T04:11:51.6033454Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-04-25T04:11:51.6033971Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-04-25T04:11:51.6034489Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-04-25T04:11:51.6035064Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-04-25T04:11:51.6035638Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-04-25T04:11:51.6036165Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-04-25T04:11:51.6036678Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-04-25T04:11:51.6037200Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-04-25T04:11:51.6037712Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-04-25T04:11:51.6038225Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-04-25T04:11:51.6038854Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-04-25T04:11:51.6039338Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-04-25T04:11:51.6039833Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-04-25T04:11:51.6040316Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-04-25T04:11:51.6040882Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-04-25T04:11:51.6041464Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-04-25T04:11:51.6041989Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-04-25T04:11:51.6042517Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-04-25T04:11:51.6043036Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-04-25T04:11:51.6043557Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-04-25T04:11:51.6044180Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-04-25T04:11:51.6044701Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-04-25T04:11:51.6045228Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-04-25T04:11:51.6045756Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-04-25T04:11:51.6046280Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-04-25T04:11:51.6046866Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-04-25T04:11:51.6047550Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-04-25T04:11:51.6048096Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-04-25T04:11:51.6048619Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-04-25T04:11:51.6049142Z * [new branch] gh/zhxchen17/1/base -> origin/gh/zhxchen17/1/base 2025-04-25T04:11:51.6049653Z * [new branch] gh/zhxchen17/1/head -> origin/gh/zhxchen17/1/head 2025-04-25T04:11:51.6050172Z * [new branch] gh/zhxchen17/1/orig -> origin/gh/zhxchen17/1/orig 2025-04-25T04:11:51.6050689Z * [new branch] gh/zhxchen17/2/base -> origin/gh/zhxchen17/2/base 2025-04-25T04:11:51.6051193Z * [new branch] gh/zhxchen17/2/head -> origin/gh/zhxchen17/2/head 2025-04-25T04:11:51.6051708Z * [new branch] gh/zhxchen17/2/orig -> origin/gh/zhxchen17/2/orig 2025-04-25T04:11:51.6052217Z * [new branch] gh/zhxchen17/3/base -> origin/gh/zhxchen17/3/base 2025-04-25T04:11:51.6052833Z * [new branch] gh/zhxchen17/3/head -> origin/gh/zhxchen17/3/head 2025-04-25T04:11:51.6053374Z * [new branch] gh/zhxchen17/3/orig -> origin/gh/zhxchen17/3/orig 2025-04-25T04:11:51.6495598Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-04-25T04:11:51.6496167Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-04-25T04:11:51.6496670Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-04-25T04:11:51.6497161Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-04-25T04:11:51.6497646Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-04-25T04:11:51.6498126Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-04-25T04:11:51.6498632Z * [new branch] gh/zklaus/3/base -> origin/gh/zklaus/3/base 2025-04-25T04:11:51.6499305Z * [new branch] gh/zklaus/3/head -> origin/gh/zklaus/3/head 2025-04-25T04:11:51.6499791Z * [new branch] gh/zklaus/3/orig -> origin/gh/zklaus/3/orig 2025-04-25T04:11:51.6500278Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-04-25T04:11:51.6500767Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-04-25T04:11:51.6501309Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-04-25T04:11:51.6501862Z * [new branch] gh/zou3519/1140/base -> origin/gh/zou3519/1140/base 2025-04-25T04:11:51.6502379Z * [new branch] gh/zou3519/1140/head -> origin/gh/zou3519/1140/head 2025-04-25T04:11:51.6502890Z * [new branch] gh/zou3519/1140/orig -> origin/gh/zou3519/1140/orig 2025-04-25T04:11:51.6503393Z * [new branch] gh/zou3519/1141/base -> origin/gh/zou3519/1141/base 2025-04-25T04:11:51.6503896Z * [new branch] gh/zou3519/1141/head -> origin/gh/zou3519/1141/head 2025-04-25T04:11:51.6504388Z * [new branch] gh/zou3519/1141/orig -> origin/gh/zou3519/1141/orig 2025-04-25T04:11:51.6504889Z * [new branch] gh/zou3519/1142/base -> origin/gh/zou3519/1142/base 2025-04-25T04:11:51.6505389Z * [new branch] gh/zou3519/1142/head -> origin/gh/zou3519/1142/head 2025-04-25T04:11:51.6505886Z * [new branch] gh/zou3519/1142/orig -> origin/gh/zou3519/1142/orig 2025-04-25T04:11:51.6506383Z * [new branch] gh/zou3519/1143/base -> origin/gh/zou3519/1143/base 2025-04-25T04:11:51.6506886Z * [new branch] gh/zou3519/1143/head -> origin/gh/zou3519/1143/head 2025-04-25T04:11:51.6507609Z * [new branch] gh/zou3519/1143/orig -> origin/gh/zou3519/1143/orig 2025-04-25T04:11:51.6508120Z * [new branch] gh/zou3519/1144/base -> origin/gh/zou3519/1144/base 2025-04-25T04:11:51.6508626Z * [new branch] gh/zou3519/1144/head -> origin/gh/zou3519/1144/head 2025-04-25T04:11:51.6509135Z * [new branch] gh/zou3519/1144/orig -> origin/gh/zou3519/1144/orig 2025-04-25T04:11:51.6509630Z * [new branch] gh/zou3519/1145/base -> origin/gh/zou3519/1145/base 2025-04-25T04:11:51.6510137Z * [new branch] gh/zou3519/1145/head -> origin/gh/zou3519/1145/head 2025-04-25T04:11:51.6510636Z * [new branch] gh/zou3519/1145/orig -> origin/gh/zou3519/1145/orig 2025-04-25T04:11:51.6511136Z * [new branch] gh/zou3519/1148/base -> origin/gh/zou3519/1148/base 2025-04-25T04:11:51.6511633Z * [new branch] gh/zou3519/1148/head -> origin/gh/zou3519/1148/head 2025-04-25T04:11:51.6512129Z * [new branch] gh/zou3519/1149/base -> origin/gh/zou3519/1149/base 2025-04-25T04:11:51.6512633Z * [new branch] gh/zou3519/1149/head -> origin/gh/zou3519/1149/head 2025-04-25T04:11:51.6513188Z * [new branch] gh/zou3519/1149/orig -> origin/gh/zou3519/1149/orig 2025-04-25T04:11:51.6513747Z * [new branch] gh/zou3519/1150/base -> origin/gh/zou3519/1150/base 2025-04-25T04:11:51.6514247Z * [new branch] gh/zou3519/1150/head -> origin/gh/zou3519/1150/head 2025-04-25T04:11:51.6514740Z * [new branch] gh/zou3519/1150/orig -> origin/gh/zou3519/1150/orig 2025-04-25T04:11:51.6515247Z * [new branch] gh/zou3519/1151/base -> origin/gh/zou3519/1151/base 2025-04-25T04:11:51.6515746Z * [new branch] gh/zou3519/1151/head -> origin/gh/zou3519/1151/head 2025-04-25T04:11:51.6516254Z * [new branch] gh/zou3519/1151/orig -> origin/gh/zou3519/1151/orig 2025-04-25T04:11:51.6516769Z * [new branch] gh/zou3519/1152/base -> origin/gh/zou3519/1152/base 2025-04-25T04:11:51.6517378Z * [new branch] gh/zou3519/1152/head -> origin/gh/zou3519/1152/head 2025-04-25T04:11:51.6517889Z * [new branch] gh/zou3519/1152/orig -> origin/gh/zou3519/1152/orig 2025-04-25T04:11:51.6518391Z * [new branch] gh/zou3519/1153/base -> origin/gh/zou3519/1153/base 2025-04-25T04:11:51.6518950Z * [new branch] gh/zou3519/1153/head -> origin/gh/zou3519/1153/head 2025-04-25T04:11:51.6519503Z * [new branch] gh/zou3519/1153/orig -> origin/gh/zou3519/1153/orig 2025-04-25T04:11:51.6944449Z * [new branch] gh/zou3519/1154/base -> origin/gh/zou3519/1154/base 2025-04-25T04:11:51.6945036Z * [new branch] gh/zou3519/1154/head -> origin/gh/zou3519/1154/head 2025-04-25T04:11:51.6945580Z * [new branch] gh/zou3519/1154/orig -> origin/gh/zou3519/1154/orig 2025-04-25T04:11:51.6946177Z * [new branch] gh/zou3519/1155/base -> origin/gh/zou3519/1155/base 2025-04-25T04:11:51.6946740Z * [new branch] gh/zou3519/1155/head -> origin/gh/zou3519/1155/head 2025-04-25T04:11:51.6947239Z * [new branch] gh/zou3519/1155/orig -> origin/gh/zou3519/1155/orig 2025-04-25T04:11:51.6947744Z * [new branch] gh/zou3519/1156/base -> origin/gh/zou3519/1156/base 2025-04-25T04:11:51.6948241Z * [new branch] gh/zou3519/1156/head -> origin/gh/zou3519/1156/head 2025-04-25T04:11:51.6948742Z * [new branch] gh/zou3519/1156/orig -> origin/gh/zou3519/1156/orig 2025-04-25T04:11:51.6949243Z * [new branch] gh/zou3519/1157/base -> origin/gh/zou3519/1157/base 2025-04-25T04:11:51.6949742Z * [new branch] gh/zou3519/1157/head -> origin/gh/zou3519/1157/head 2025-04-25T04:11:51.6950424Z * [new branch] gh/zou3519/1157/orig -> origin/gh/zou3519/1157/orig 2025-04-25T04:11:51.6950937Z * [new branch] gh/zou3519/1158/base -> origin/gh/zou3519/1158/base 2025-04-25T04:11:51.6951448Z * [new branch] gh/zou3519/1158/head -> origin/gh/zou3519/1158/head 2025-04-25T04:11:51.6952014Z * [new branch] gh/zou3519/1158/orig -> origin/gh/zou3519/1158/orig 2025-04-25T04:11:51.6952562Z * [new branch] gh/zou3519/1159/base -> origin/gh/zou3519/1159/base 2025-04-25T04:11:51.6953063Z * [new branch] gh/zou3519/1159/head -> origin/gh/zou3519/1159/head 2025-04-25T04:11:51.6953554Z * [new branch] gh/zou3519/1159/orig -> origin/gh/zou3519/1159/orig 2025-04-25T04:11:51.6954061Z * [new branch] gh/zou3519/1160/base -> origin/gh/zou3519/1160/base 2025-04-25T04:11:51.6954551Z * [new branch] gh/zou3519/1160/head -> origin/gh/zou3519/1160/head 2025-04-25T04:11:51.6955053Z * [new branch] gh/zou3519/1160/orig -> origin/gh/zou3519/1160/orig 2025-04-25T04:11:51.6955565Z * [new branch] gh/zou3519/1161/base -> origin/gh/zou3519/1161/base 2025-04-25T04:11:51.6956060Z * [new branch] gh/zou3519/1161/head -> origin/gh/zou3519/1161/head 2025-04-25T04:11:51.6956564Z * [new branch] gh/zou3519/1161/orig -> origin/gh/zou3519/1161/orig 2025-04-25T04:11:51.6957055Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-04-25T04:11:51.6957559Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-04-25T04:11:51.6958124Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-04-25T04:11:51.6958673Z * [new branch] gh/zou3519/1163/base -> origin/gh/zou3519/1163/base 2025-04-25T04:11:51.6959181Z * [new branch] gh/zou3519/1163/head -> origin/gh/zou3519/1163/head 2025-04-25T04:11:51.6959809Z * [new branch] gh/zou3519/1163/orig -> origin/gh/zou3519/1163/orig 2025-04-25T04:11:51.6960321Z * [new branch] gh/zou3519/754/base -> origin/gh/zou3519/754/base 2025-04-25T04:11:51.6960836Z * [new branch] gh/zou3519/754/head -> origin/gh/zou3519/754/head 2025-04-25T04:11:51.6961328Z * [new branch] gh/zou3519/754/orig -> origin/gh/zou3519/754/orig 2025-04-25T04:11:51.6961831Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-04-25T04:11:51.6962318Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-04-25T04:11:51.6962814Z * [new branch] google-main -> origin/google-main 2025-04-25T04:11:51.6963334Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-04-25T04:11:51.6964038Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-04-25T04:11:51.6964630Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-04-25T04:11:51.6965110Z * [new branch] guard_system -> origin/guard_system 2025-04-25T04:11:51.6965774Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-04-25T04:11:51.6966488Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-04-25T04:11:51.6967016Z * [new branch] hc_baseline -> origin/hc_baseline 2025-04-25T04:11:51.6967458Z * [new branch] hhh_rand -> origin/hhh_rand 2025-04-25T04:11:51.6967920Z * [new branch] hoy-update-wheel -> origin/hoy-update-wheel 2025-04-25T04:11:51.6968438Z * [new branch] hoy/autofdo/xblock -> origin/hoy/autofdo/xblock 2025-04-25T04:11:51.6969044Z * [new branch] hoy/autotune/nreg -> origin/hoy/autotune/nreg 2025-04-25T04:11:51.7399684Z * [new branch] hoy/autotune/numwarps -> origin/hoy/autotune/numwarps 2025-04-25T04:11:51.7400311Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-04-25T04:11:51.7400825Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-04-25T04:11:51.7401440Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-04-25T04:11:51.7402099Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-04-25T04:11:51.7402844Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-04-25T04:11:51.7403447Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-04-25T04:11:51.7404084Z * [new branch] improve_vec_log -> origin/improve_vec_log 2025-04-25T04:11:51.7404570Z * [new branch] inline -> origin/inline 2025-04-25T04:11:51.7405000Z * [new branch] inlining -> origin/inlining 2025-04-25T04:11:51.7405467Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-04-25T04:11:51.7405938Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-04-25T04:11:51.7406419Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-04-25T04:11:51.7406891Z * [new branch] ipiszy/fix -> origin/ipiszy/fix 2025-04-25T04:11:51.7407353Z * [new branch] ipiszy/fp8_test -> origin/ipiszy/fp8_test 2025-04-25T04:11:51.7407825Z * [new branch] ipiszy/mypy -> origin/ipiszy/mypy 2025-04-25T04:11:51.7408273Z * [new branch] issue#58739 -> origin/issue#58739 2025-04-25T04:11:51.7408726Z * [new branch] issue_150765_fix -> origin/issue_150765_fix 2025-04-25T04:11:51.7409495Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-04-25T04:11:51.7410051Z * [new branch] jack-reland -> origin/jack-reland 2025-04-25T04:11:51.7410661Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-04-25T04:11:51.7411389Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-04-25T04:11:51.7412052Z * [new branch] jeanschmidt/test-runners-queue -> origin/jeanschmidt/test-runners-queue 2025-04-25T04:11:51.7412715Z * [new branch] jeanschmidt/test_infra_250314 -> origin/jeanschmidt/test_infra_250314 2025-04-25T04:11:51.7413299Z * [new branch] justinchu/decomp-later -> origin/justinchu/decomp-later 2025-04-25T04:11:51.7413897Z * [new branch] justinchu/onnx-program-list -> origin/justinchu/onnx-program-list 2025-04-25T04:11:51.7414429Z * [new branch] jz/istft -> origin/jz/istft 2025-04-25T04:11:51.7414873Z * [new branch] kadeng/dev-1 -> origin/kadeng/dev-1 2025-04-25T04:11:51.7415564Z * [new branch] kadeng/inductor-backend/cutlass-evt-fusion-1 -> origin/kadeng/inductor-backend/cutlass-evt-fusion-1 2025-04-25T04:11:51.7416254Z * [new branch] kenjin/lambdas -> origin/kenjin/lambdas 2025-04-25T04:11:51.7416741Z * [new branch] kit1980-patch-2 -> origin/kit1980-patch-2 2025-04-25T04:11:51.7417341Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-04-25T04:11:51.7418016Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-04-25T04:11:51.7418745Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-04-25T04:11:51.7419272Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-04-25T04:11:51.7419817Z * [new branch] lucaskabela/fix_list_error -> origin/lucaskabela/fix_list_error 2025-04-25T04:11:51.7420514Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-04-25T04:11:51.7421285Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-04-25T04:11:51.7422014Z * [new branch] lucaskabela/unsqueeze_tensor_fix -> origin/lucaskabela/unsqueeze_tensor_fix 2025-04-25T04:11:51.7436684Z * [new branch] main -> origin/main 2025-04-25T04:11:51.7437301Z * [new branch] main_dev_hhh -> origin/main_dev_hhh 2025-04-25T04:11:51.7437790Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-04-25T04:11:51.7438326Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-04-25T04:11:51.7438824Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-04-25T04:11:51.7439325Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-04-25T04:11:51.7439813Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-04-25T04:11:51.7871402Z * [new branch] malfet-patch-15 -> origin/malfet-patch-15 2025-04-25T04:11:51.7872101Z * [new branch] malfet-patch-16 -> origin/malfet-patch-16 2025-04-25T04:11:51.7872609Z * [new branch] malfet-patch-17 -> origin/malfet-patch-17 2025-04-25T04:11:51.7873119Z * [new branch] malfet-patch-18 -> origin/malfet-patch-18 2025-04-25T04:11:51.7873610Z * [new branch] malfet-patch-19 -> origin/malfet-patch-19 2025-04-25T04:11:51.7874342Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-04-25T04:11:51.7874844Z * [new branch] malfet-patch-20 -> origin/malfet-patch-20 2025-04-25T04:11:51.7875334Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-04-25T04:11:51.7875833Z * [new branch] malfet-patch-22 -> origin/malfet-patch-22 2025-04-25T04:11:51.7876334Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-04-25T04:11:51.7876814Z * [new branch] malfet-patch-24 -> origin/malfet-patch-24 2025-04-25T04:11:51.7877304Z * [new branch] malfet-patch-25 -> origin/malfet-patch-25 2025-04-25T04:11:51.7877788Z * [new branch] malfet-patch-26 -> origin/malfet-patch-26 2025-04-25T04:11:51.7878280Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-04-25T04:11:51.7878773Z * [new branch] malfet-patch-32 -> origin/malfet-patch-32 2025-04-25T04:11:51.7879261Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-04-25T04:11:51.7879747Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-04-25T04:11:51.7880217Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-04-25T04:11:51.7880699Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-04-25T04:11:51.7881169Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-04-25T04:11:51.7881718Z * [new branch] malfet/add-benchmark-func -> origin/malfet/add-benchmark-func 2025-04-25T04:11:51.7882290Z * [new branch] malfet/cp-150203-150294 -> origin/malfet/cp-150203-150294 2025-04-25T04:11:51.7883036Z * [new branch] malfet/cuda-do-not-vec128-on-12.6 -> origin/malfet/cuda-do-not-vec128-on-12.6 2025-04-25T04:11:51.7883701Z * [new branch] malfet/delete-find-openmp -> origin/malfet/delete-find-openmp 2025-04-25T04:11:51.7884371Z * [new branch] malfet/lets-revert-145746 -> origin/malfet/lets-revert-145746 2025-04-25T04:11:51.7885123Z * [new branch] malfet/make-pytorch-buildable-with-cmake-4 -> origin/malfet/make-pytorch-buildable-with-cmake-4 2025-04-25T04:11:51.7885917Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-04-25T04:11:51.7886590Z * [new branch] malfet/release-2.7-warn-prototype -> origin/malfet/release-2.7-warn-prototype 2025-04-25T04:11:51.7887237Z * [new branch] malfet/udpate-gloo -> origin/malfet/udpate-gloo 2025-04-25T04:11:51.7887787Z * [new branch] malfet/udpate-prr-regex -> origin/malfet/udpate-prr-regex 2025-04-25T04:11:51.7888313Z * [new branch] migrate_map -> origin/migrate_map 2025-04-25T04:11:51.7888855Z * [new branch] missing_gloo_causes_deadlock -> origin/missing_gloo_causes_deadlock 2025-04-25T04:11:51.7889411Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-04-25T04:11:51.7889911Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-04-25T04:11:51.7890406Z * [new branch] mlazos/adam-compiled -> origin/mlazos/adam-compiled 2025-04-25T04:11:51.7890972Z * [new branch] mlazos/adam-fused-bench -> origin/mlazos/adam-fused-bench 2025-04-25T04:11:51.7891552Z * [new branch] mlazos/adam-fused-bench2 -> origin/mlazos/adam-fused-bench2 2025-04-25T04:11:51.7892138Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-04-25T04:11:51.7892721Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-04-25T04:11:51.7893250Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-04-25T04:11:51.7893938Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-04-25T04:11:51.7894538Z * [new branch] mlazos/batch-fuse-opt -> origin/mlazos/batch-fuse-opt 2025-04-25T04:11:51.7895076Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-04-25T04:11:51.7895596Z * [new branch] mlazos/buff-opt2 -> origin/mlazos/buff-opt2 2025-04-25T04:11:51.7896085Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-04-25T04:11:51.7896583Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-04-25T04:11:51.7897068Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-04-25T04:11:51.8344875Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-04-25T04:11:51.8345502Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-04-25T04:11:51.8346032Z * [new branch] mlazos/copy2 -> origin/mlazos/copy2 2025-04-25T04:11:51.8346531Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-04-25T04:11:51.8347091Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-04-25T04:11:51.8347710Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-04-25T04:11:51.8348318Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-04-25T04:11:51.8348844Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-04-25T04:11:51.8349372Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-04-25T04:11:51.8349882Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-04-25T04:11:51.8350605Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-04-25T04:11:51.8351201Z * [new branch] mlazos/disable-aa-config -> origin/mlazos/disable-aa-config 2025-04-25T04:11:51.8351770Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-04-25T04:11:51.8352325Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-04-25T04:11:51.8352847Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-04-25T04:11:51.8353337Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-04-25T04:11:51.8353821Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-04-25T04:11:51.8354304Z * [new branch] mlazos/faster -> origin/mlazos/faster 2025-04-25T04:11:51.8354780Z * [new branch] mlazos/faster2 -> origin/mlazos/faster2 2025-04-25T04:11:51.8355273Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-04-25T04:11:51.8355801Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-04-25T04:11:51.8356308Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-04-25T04:11:51.8356806Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-04-25T04:11:51.8357318Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-04-25T04:11:51.8357790Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-04-25T04:11:51.8358260Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-04-25T04:11:51.8358736Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-04-25T04:11:51.8359222Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-04-25T04:11:51.8359729Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-04-25T04:11:51.8360363Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-04-25T04:11:51.8360853Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-04-25T04:11:51.8361321Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-04-25T04:11:51.8361785Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-04-25T04:11:51.8362238Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-04-25T04:11:51.8362677Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-04-25T04:11:51.8363121Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-04-25T04:11:51.8363559Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-04-25T04:11:51.8364117Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-04-25T04:11:51.8364615Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-04-25T04:11:51.8365157Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-04-25T04:11:51.8365709Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-04-25T04:11:51.8366238Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-04-25T04:11:51.8366711Z * [new branch] mlazos/lint -> origin/mlazos/lint 2025-04-25T04:11:51.8367219Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-04-25T04:11:51.8367722Z * [new branch] mlazos/main -> origin/mlazos/main 2025-04-25T04:11:51.8368251Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-04-25T04:11:51.8368894Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-04-25T04:11:51.8369365Z * [new branch] mlazos/main_test -> origin/mlazos/main_test 2025-04-25T04:11:51.8840148Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-04-25T04:11:51.8840676Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-04-25T04:11:51.8841171Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-04-25T04:11:51.8841705Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-04-25T04:11:51.8842211Z * [new branch] mlazos/mlazos/clean -> origin/mlazos/mlazos/clean 2025-04-25T04:11:51.8842745Z * [new branch] mlazos/mlazos/faster2 -> origin/mlazos/mlazos/faster2 2025-04-25T04:11:51.8843351Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-04-25T04:11:51.8844096Z * [new branch] mlazos/mlazos/subclass-test -> origin/mlazos/mlazos/subclass-test 2025-04-25T04:11:51.8844733Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-04-25T04:11:51.8845281Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-04-25T04:11:51.8845783Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-04-25T04:11:51.8846300Z * [new branch] mlazos/mutable-backup -> origin/mlazos/mutable-backup 2025-04-25T04:11:51.8846816Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-04-25T04:11:51.8847382Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-04-25T04:11:51.8847985Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-04-25T04:11:51.8848545Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-04-25T04:11:51.8849253Z * [new branch] mlazos/opt-bench2 -> origin/mlazos/opt-bench2 2025-04-25T04:11:51.8849758Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-04-25T04:11:51.8850256Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-04-25T04:11:51.8850748Z * [new branch] mlazos/opt-recipe -> origin/mlazos/opt-recipe 2025-04-25T04:11:51.8851273Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-04-25T04:11:51.8851791Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-04-25T04:11:51.8852311Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-04-25T04:11:51.8852807Z * [new branch] mlazos/restart -> origin/mlazos/restart 2025-04-25T04:11:51.8853288Z * [new branch] mlazos/rm-old-tf -> origin/mlazos/rm-old-tf 2025-04-25T04:11:51.8853766Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-04-25T04:11:51.8854236Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-04-25T04:11:51.8854720Z * [new branch] mlazos/snt -> origin/mlazos/snt 2025-04-25T04:11:51.8855236Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-04-25T04:11:51.8855789Z * [new branch] mlazos/subclass-test -> origin/mlazos/subclass-test 2025-04-25T04:11:51.8856299Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-04-25T04:11:51.8856804Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-04-25T04:11:51.8857398Z * [new branch] mlazos/tensor-inherit-backup -> origin/mlazos/tensor-inherit-backup 2025-04-25T04:11:51.8858079Z * [new branch] mlazos/tensor-lr -> origin/mlazos/tensor-lr 2025-04-25T04:11:51.8858593Z * [new branch] mlazos/tensor-lr2 -> origin/mlazos/tensor-lr2 2025-04-25T04:11:51.8859079Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-04-25T04:11:51.8859584Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-04-25T04:11:51.8860128Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-04-25T04:11:51.8860663Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-04-25T04:11:51.8861206Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-04-25T04:11:51.8861759Z * [new branch] mlazos/tf-subclass-stack -> origin/mlazos/tf-subclass-stack 2025-04-25T04:11:51.8862313Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-04-25T04:11:51.8863019Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-04-25T04:11:51.8863530Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-04-25T04:11:51.8864022Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-04-25T04:11:51.8864540Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-04-25T04:11:51.8865036Z * [new branch] moderniz29_cyy -> origin/moderniz29_cyy 2025-04-25T04:11:51.8865504Z * [new branch] move_unstash -> origin/move_unstash 2025-04-25T04:11:51.9326049Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-04-25T04:11:51.9326600Z * [new branch] mps_mm_decomp -> origin/mps_mm_decomp 2025-04-25T04:11:51.9327141Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-04-25T04:11:51.9327781Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-04-25T04:11:51.9328574Z * [new branch] msaroufim/noheader -> origin/msaroufim/noheader 2025-04-25T04:11:51.9329100Z * [new branch] msaroufim/warn_once -> origin/msaroufim/warn_once 2025-04-25T04:11:51.9329609Z * [new branch] my_fork_cherrypick -> origin/my_fork_cherrypick 2025-04-25T04:11:51.9330079Z * [new branch] mypy_fix -> origin/mypy_fix 2025-04-25T04:11:51.9330524Z * [new branch] myst_nb_trial -> origin/myst_nb_trial 2025-04-25T04:11:51.9331013Z * [new branch] nWEIdia-patch-1 -> origin/nWEIdia-patch-1 2025-04-25T04:11:51.9331533Z * [new branch] nestedfairseq2ops1 -> origin/nestedfairseq2ops1 2025-04-25T04:11:51.9332036Z * [new branch] new-batch-norm -> origin/new-batch-norm 2025-04-25T04:11:51.9332524Z * [new branch] ngimel/bits -> origin/ngimel/bits 2025-04-25T04:11:51.9332988Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-04-25T04:11:51.9333487Z * [new branch] ngimel/gather_perf -> origin/ngimel/gather_perf 2025-04-25T04:11:51.9333985Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-04-25T04:11:51.9334468Z * [new branch] ngimel/grouped_mm -> origin/ngimel/grouped_mm 2025-04-25T04:11:51.9334959Z * [new branch] ngimel/index_perf -> origin/ngimel/index_perf 2025-04-25T04:11:51.9335480Z * [new branch] ngimel/reduce_scatter -> origin/ngimel/reduce_scatter 2025-04-25T04:11:51.9336001Z * [new branch] ngimel/reland_gather -> origin/ngimel/reland_gather 2025-04-25T04:11:51.9336681Z * [new branch] ngimel/sym_mem_non_zero_copy -> origin/ngimel/sym_mem_non_zero_copy 2025-04-25T04:11:51.9337269Z * [new branch] ngimel/two_shot_symm_mem -> origin/ngimel/two_shot_symm_mem 2025-04-25T04:11:51.9337757Z * [new branch] nightly -> origin/nightly 2025-04-25T04:11:51.9338273Z * [new branch] nikitaved/solve_doc_update -> origin/nikitaved/solve_doc_update 2025-04-25T04:11:51.9338828Z * [new branch] nikitaved/tensordot -> origin/nikitaved/tensordot 2025-04-25T04:11:51.9339320Z * [new branch] offline -> origin/offline 2025-04-25T04:11:51.9339775Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-04-25T04:11:51.9340249Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-04-25T04:11:51.9340738Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-04-25T04:11:51.9341226Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-04-25T04:11:51.9341723Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-04-25T04:11:51.9342205Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-04-25T04:11:51.9342692Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-04-25T04:11:51.9343170Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-04-25T04:11:51.9343644Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-04-25T04:11:51.9344118Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-04-25T04:11:51.9344596Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-04-25T04:11:51.9345081Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-04-25T04:11:51.9345567Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-04-25T04:11:51.9346143Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-04-25T04:11:51.9346637Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-04-25T04:11:51.9347114Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-04-25T04:11:51.9347600Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-04-25T04:11:51.9348141Z * [new branch] origin/gh/stroxler/1/head -> origin/origin/gh/stroxler/1/head 2025-04-25T04:11:51.9348679Z * [new branch] origin/voz/serde -> origin/origin/voz/serde 2025-04-25T04:11:51.9349165Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-04-25T04:11:51.9349622Z * [new branch] outshape -> origin/outshape 2025-04-25T04:11:51.9350095Z * [new branch] padded-tensor -> origin/padded-tensor 2025-04-25T04:11:51.9764027Z * [new branch] parallel_cat -> origin/parallel_cat 2025-04-25T04:11:51.9764567Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-04-25T04:11:51.9765035Z * [new branch] pca2 -> origin/pca2 2025-04-25T04:11:51.9765504Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-04-25T04:11:51.9766064Z * [new branch] pianpwk/01_auto_warning -> origin/pianpwk/01_auto_warning 2025-04-25T04:11:51.9766676Z * [new branch] pianpwk/backed_oblivious_duck -> origin/pianpwk/backed_oblivious_duck 2025-04-25T04:11:51.9767358Z * [new branch] pianpwk/backed_size_oblivious_global -> origin/pianpwk/backed_size_oblivious_global 2025-04-25T04:11:51.9768086Z * [new branch] pianpwk/backed_symint_endofbounds -> origin/pianpwk/backed_symint_endofbounds 2025-04-25T04:11:51.9768909Z * [new branch] pianpwk/cse_bound_expr -> origin/pianpwk/cse_bound_expr 2025-04-25T04:11:51.9769536Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-04-25T04:11:51.9770165Z * [new branch] pianpwk/draft_strict_stack -> origin/pianpwk/draft_strict_stack 2025-04-25T04:11:51.9770758Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-04-25T04:11:51.9771365Z * [new branch] pianpwk/dynamo_export_ctx -> origin/pianpwk/dynamo_export_ctx 2025-04-25T04:11:51.9771971Z * [new branch] pianpwk/export_ds_partial_dict -> origin/pianpwk/export_ds_partial_dict 2025-04-25T04:11:51.9772577Z * [new branch] pianpwk/false_infer_size -> origin/pianpwk/false_infer_size 2025-04-25T04:11:51.9773138Z * [new branch] pianpwk/guard_or_false -> origin/pianpwk/guard_or_false 2025-04-25T04:11:51.9773703Z * [new branch] pianpwk/guard_or_false_cpp2 -> origin/pianpwk/guard_or_false_cpp2 2025-04-25T04:11:51.9774349Z * [new branch] pianpwk/inductor_unbacked_symint -> origin/pianpwk/inductor_unbacked_symint 2025-04-25T04:11:51.9774964Z * [new branch] pianpwk/input_hook_msg -> origin/pianpwk/input_hook_msg 2025-04-25T04:11:51.9775516Z * [new branch] pianpwk/kth_value_symint -> origin/pianpwk/kth_value_symint 2025-04-25T04:11:51.9776111Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-04-25T04:11:51.9776683Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-04-25T04:11:51.9777287Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-04-25T04:11:51.9777902Z * [new branch] pianpwk/oblivious_expand -> origin/pianpwk/oblivious_expand 2025-04-25T04:11:51.9778506Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-04-25T04:11:51.9779273Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-04-25T04:11:51.9779914Z * [new branch] pianpwk/oblivious_reshape_view -> origin/pianpwk/oblivious_reshape_view 2025-04-25T04:11:51.9780605Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-04-25T04:11:51.9781330Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-04-25T04:11:51.9782033Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-04-25T04:11:51.9782695Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-04-25T04:11:51.9783373Z * [new branch] pianpwk/oblivious_storagenbytes -> origin/pianpwk/oblivious_storagenbytes 2025-04-25T04:11:51.9783981Z * [new branch] pianpwk/pad_nd_meta -> origin/pianpwk/pad_nd_meta 2025-04-25T04:11:51.9784522Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-04-25T04:11:51.9785093Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-04-25T04:11:51.9785700Z * [new branch] pianpwk/should_swap_oblivious -> origin/pianpwk/should_swap_oblivious 2025-04-25T04:11:51.9786360Z * [new branch] pianpwk/size_oblivious_contiguous -> origin/pianpwk/size_oblivious_contiguous 2025-04-25T04:11:51.9786976Z * [new branch] pianpwk/skt_user_code -> origin/pianpwk/skt_user_code 2025-04-25T04:11:51.9787510Z * [new branch] pianpwk/strides_max_1 -> origin/pianpwk/strides_max_1 2025-04-25T04:11:51.9788034Z * [new branch] pianpwk/sym_and_or -> origin/pianpwk/sym_and_or 2025-04-25T04:11:51.9788716Z * [new branch] pianpwk/treat_sizes_as_size_like -> origin/pianpwk/treat_sizes_as_size_like 2025-04-25T04:11:51.9789355Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-04-25T04:11:51.9789932Z * [new branch] pin-new-theme -> origin/pin-new-theme 2025-04-25T04:11:52.0189963Z * [new branch] pr/131860 -> origin/pr/131860 2025-04-25T04:11:52.0190471Z * [new branch] pr150241 -> origin/pr150241 2025-04-25T04:11:52.0191019Z * [new branch] print_hostname_rocm_runners -> origin/print_hostname_rocm_runners 2025-04-25T04:11:52.0191557Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-04-25T04:11:52.0192094Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-04-25T04:11:52.0192624Z * [new branch] qat-conv-bn-1d -> origin/qat-conv-bn-1d 2025-04-25T04:11:52.0193188Z * [new branch] qat-remove-bias-temp -> origin/qat-remove-bias-temp 2025-04-25T04:11:52.0193757Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-04-25T04:11:52.0194245Z * [new branch] re-147027 -> origin/re-147027 2025-04-25T04:11:52.0194675Z * [new branch] readme -> origin/readme 2025-04-25T04:11:52.0195121Z * [new branch] refactor-adamw -> origin/refactor-adamw 2025-04-25T04:11:52.0195588Z * [new branch] release/1.10 -> origin/release/1.10 2025-04-25T04:11:52.0196049Z * [new branch] release/1.11 -> origin/release/1.11 2025-04-25T04:11:52.0196495Z * [new branch] release/1.12 -> origin/release/1.12 2025-04-25T04:11:52.0196946Z * [new branch] release/1.13 -> origin/release/1.13 2025-04-25T04:11:52.0197393Z * [new branch] release/1.4 -> origin/release/1.4 2025-04-25T04:11:52.0198051Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-04-25T04:11:52.0198512Z * [new branch] release/1.5 -> origin/release/1.5 2025-04-25T04:11:52.0198970Z * [new branch] release/1.6 -> origin/release/1.6 2025-04-25T04:11:52.0199431Z * [new branch] release/1.7 -> origin/release/1.7 2025-04-25T04:11:52.0199871Z * [new branch] release/1.8 -> origin/release/1.8 2025-04-25T04:11:52.0200316Z * [new branch] release/1.9 -> origin/release/1.9 2025-04-25T04:11:52.0200749Z * [new branch] release/2.0 -> origin/release/2.0 2025-04-25T04:11:52.0201189Z * [new branch] release/2.1 -> origin/release/2.1 2025-04-25T04:11:52.0201635Z * [new branch] release/2.2 -> origin/release/2.2 2025-04-25T04:11:52.0202083Z * [new branch] release/2.3 -> origin/release/2.3 2025-04-25T04:11:52.0202533Z * [new branch] release/2.4 -> origin/release/2.4 2025-04-25T04:11:52.0202965Z * [new branch] release/2.5 -> origin/release/2.5 2025-04-25T04:11:52.0203407Z * [new branch] release/2.6 -> origin/release/2.6 2025-04-25T04:11:52.0203840Z * [new branch] release/2.7 -> origin/release/2.7 2025-04-25T04:11:52.0204401Z * [new branch] release_notes -> origin/release_notes 2025-04-25T04:11:52.0204889Z * [new branch] remove_global_ns -> origin/remove_global_ns 2025-04-25T04:11:52.0205367Z * [new branch] remove_scaled_mm -> origin/remove_scaled_mm 2025-04-25T04:11:52.0205860Z * [new branch] requires_grad_fix -> origin/requires_grad_fix 2025-04-25T04:11:52.0206478Z * [new branch] revert-112125 -> origin/revert-112125 2025-04-25T04:11:52.0207140Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-04-25T04:11:52.0207925Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-04-25T04:11:52.0208809Z * [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:52.0209630Z * [new branch] revert-150658-revert_blas -> origin/revert-150658-revert_blas 2025-04-25T04:11:52.0210441Z * [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:52.0211210Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-04-25T04:11:52.0211798Z * [new branch] rocm_magma_tarball -> origin/rocm_magma_tarball 2025-04-25T04:11:52.0212384Z * [new branch] rocm_magma_tarball_part2 -> origin/rocm_magma_tarball_part2 2025-04-25T04:11:52.0212939Z * [new branch] rohan-varma-patch-15 -> origin/rohan-varma-patch-15 2025-04-25T04:11:52.0213486Z * [new branch] rohan-varma-patch-16 -> origin/rohan-varma-patch-16 2025-04-25T04:11:52.0214024Z * [new branch] rprop-playground -> origin/rprop-playground 2025-04-25T04:11:52.0214496Z * [new branch] rs-ac -> origin/rs-ac 2025-04-25T04:11:52.0660574Z * [new branch] run_inductor-rocm-mi300_on_release_branches -> origin/run_inductor-rocm-mi300_on_release_branches 2025-04-25T04:11:52.0661517Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-04-25T04:11:52.0662306Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-04-25T04:11:52.0663572Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-04-25T04:11:52.0664080Z * [new branch] rzou/fix -> origin/rzou/fix 2025-04-25T04:11:52.0664518Z * [new branch] rzou/fix2 -> origin/rzou/fix2 2025-04-25T04:11:52.0664962Z * [new branch] rzou/njt -> origin/rzou/njt 2025-04-25T04:11:52.0665407Z * [new branch] rzou/operator -> origin/rzou/operator 2025-04-25T04:11:52.0665876Z * [new branch] rzou/pca -> origin/rzou/pca 2025-04-25T04:11:52.0666355Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-04-25T04:11:52.0666840Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-04-25T04:11:52.0667350Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-04-25T04:11:52.0668095Z * [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:52.0669119Z * [new branch] sanchitintel/gemm_template_avoid_malloc_lock_contention -> origin/sanchitintel/gemm_template_avoid_malloc_lock_contention 2025-04-25T04:11:52.0670026Z * [new branch] sanchitintel/modify_fp32_micro_gemm -> origin/sanchitintel/modify_fp32_micro_gemm 2025-04-25T04:11:52.0670783Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-04-25T04:11:52.0671732Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-04-25T04:11:52.0672725Z * [new branch] sanchitj/remove_duplicate_line_from_freezing.py -> origin/sanchitj/remove_duplicate_line_from_freezing.py 2025-04-25T04:11:52.0673622Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-04-25T04:11:52.0674171Z * [new branch] save -> origin/save 2025-04-25T04:11:52.0674616Z * [new branch] scatter-dim -> origin/scatter-dim 2025-04-25T04:11:52.0675091Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-04-25T04:11:52.0675606Z * [new branch] sdym/todo-docstring -> origin/sdym/todo-docstring 2025-04-25T04:11:52.0676117Z * [new branch] sdym/torchfix -> origin/sdym/torchfix 2025-04-25T04:11:52.0676627Z * [new branch] sdym/typed-storage -> origin/sdym/typed-storage 2025-04-25T04:11:52.0677152Z * [new branch] seemethere/s390x_2_7 -> origin/seemethere/s390x_2_7 2025-04-25T04:11:52.0677678Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-04-25T04:11:52.0678201Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-04-25T04:11:52.0678747Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-04-25T04:11:52.0679309Z * [new branch] shunting-multi-kernel-2 -> origin/shunting-multi-kernel-2 2025-04-25T04:11:52.0679884Z * [new branch] shunting-multi-kernel-3 -> origin/shunting-multi-kernel-3 2025-04-25T04:11:52.0680509Z * [new branch] shunting-triton-pin-update-5 -> origin/shunting-triton-pin-update-5 2025-04-25T04:11:52.0681145Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-04-25T04:11:52.0681701Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-04-25T04:11:52.0682252Z * [new branch] speedup-mps-string-key -> origin/speedup-mps-string-key 2025-04-25T04:11:52.0682786Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-04-25T04:11:52.0683408Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-04-25T04:11:52.0684064Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-04-25T04:11:52.0684610Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-04-25T04:11:52.0685198Z * [new branch] stable-library -> origin/stable-library 2025-04-25T04:11:52.0685743Z * [new branch] stash_v -> origin/stash_v 2025-04-25T04:11:52.0686311Z * [new branch] subscribe_codeowners_lucasllc -> origin/subscribe_codeowners_lucasllc 2025-04-25T04:11:52.0686882Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-04-25T04:11:52.0687384Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-04-25T04:11:52.1064504Z * [new branch] svekars-patch-7 -> origin/svekars-patch-7 2025-04-25T04:11:52.1065065Z * [new branch] switch-bn -> origin/switch-bn 2025-04-25T04:11:52.1065574Z * [new branch] switch-to-new-theme -> origin/switch-to-new-theme 2025-04-25T04:11:52.1066136Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-04-25T04:11:52.1066669Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-04-25T04:11:52.1067138Z * [new branch] teja/dcp_poc -> origin/teja/dcp_poc 2025-04-25T04:11:52.1067656Z * [new branch] tensor_shelf -> origin/tensor_shelf 2025-04-25T04:11:52.1068218Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-04-25T04:11:52.1068775Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-04-25T04:11:52.1070239Z * [new branch] test-torchvision-install-ci -> origin/test-torchvision-install-ci 2025-04-25T04:11:52.1070838Z * [new branch] test/inductor -> origin/test/inductor 2025-04-25T04:11:52.1071337Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-04-25T04:11:52.1071892Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-04-25T04:11:52.1072450Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-04-25T04:11:52.1072987Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-04-25T04:11:52.1073543Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-04-25T04:11:52.1074146Z * [new branch] triton-cpu-arm-expriment -> origin/triton-cpu-arm-expriment 2025-04-25T04:11:52.1074695Z * [new branch] triton-update -> origin/triton-update 2025-04-25T04:11:52.1075170Z * [new branch] triton_kernel -> origin/triton_kernel 2025-04-25T04:11:52.1075665Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-04-25T04:11:52.1076141Z * [new branch] try-runllm -> origin/try-runllm 2025-04-25T04:11:52.1076640Z * [new branch] try-speedup-docbuild -> origin/try-speedup-docbuild 2025-04-25T04:11:52.1077154Z * [new branch] type_dec -> origin/type_dec 2025-04-25T04:11:52.1077804Z * [new branch] update-audio-commit-hash/14232193199-1523-1 -> origin/update-audio-commit-hash/14232193199-1523-1 2025-04-25T04:11:52.1078680Z * [new branch] update-audio-commit-hash/14543755404-1550-1 -> origin/update-audio-commit-hash/14543755404-1550-1 2025-04-25T04:11:52.1079639Z * [new branch] update-audio-commit-hash/14654232188-1560-1 -> origin/update-audio-commit-hash/14654232188-1560-1 2025-04-25T04:11:52.1080441Z * [new branch] update-doc-dependencies-local -> origin/update-doc-dependencies-local 2025-04-25T04:11:52.1081466Z * [new branch] update-executorch-commit-hash/13959284858-1506-1 -> origin/update-executorch-commit-hash/13959284858-1506-1 2025-04-25T04:11:52.1082425Z * [new branch] update-executorch-commit-hash/14013720981-1509-1 -> origin/update-executorch-commit-hash/14013720981-1509-1 2025-04-25T04:11:52.1083388Z * [new branch] update-executorch-commit-hash/14276381372-1527-1 -> origin/update-executorch-commit-hash/14276381372-1527-1 2025-04-25T04:11:52.1084461Z * [new branch] update-executorch-commit-hash/14434844604-1539-1 -> origin/update-executorch-commit-hash/14434844604-1539-1 2025-04-25T04:11:52.1085517Z * [new branch] update-executorch-commit-hash/14458474973-1540-1 -> origin/update-executorch-commit-hash/14458474973-1540-1 2025-04-25T04:11:52.1086477Z * [new branch] update-executorch-commit-hash/14505268217-1543-1 -> origin/update-executorch-commit-hash/14505268217-1543-1 2025-04-25T04:11:52.1087419Z * [new branch] update-executorch-commit-hash/14527153667-1549-1 -> origin/update-executorch-commit-hash/14527153667-1549-1 2025-04-25T04:11:52.1088371Z * [new branch] update-executorch-commit-hash/14543755404-1550-1 -> origin/update-executorch-commit-hash/14543755404-1550-1 2025-04-25T04:11:52.1089254Z * [new branch] update-inductor-perf-nightly-macos -> origin/update-inductor-perf-nightly-macos 2025-04-25T04:11:52.1090082Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-04-25T04:11:52.1090992Z * [new branch] update-vision-commit-hash/6634009725-750-1 -> origin/update-vision-commit-hash/6634009725-750-1 2025-04-25T04:11:52.1091899Z * [new branch] update-vision-commit-hash/6673463792-754-1 -> origin/update-vision-commit-hash/6673463792-754-1 2025-04-25T04:11:52.1092850Z * [new branch] update-vision-commit-hash/6700258936-758-1 -> origin/update-vision-commit-hash/6700258936-758-1 2025-04-25T04:11:52.1462714Z * [new branch] update-vision-commit-hash/6805589684-770-1 -> origin/update-vision-commit-hash/6805589684-770-1 2025-04-25T04:11:52.1463561Z * [new branch] update-vision-commit-hash/6818989957-773-1 -> origin/update-vision-commit-hash/6818989957-773-1 2025-04-25T04:11:52.1464518Z * [new branch] update-vision-commit-hash/6830864778-774-1 -> origin/update-vision-commit-hash/6830864778-774-1 2025-04-25T04:11:52.1465353Z * [new branch] update-vision-commit-hash/6857388096-777-1 -> origin/update-vision-commit-hash/6857388096-777-1 2025-04-25T04:11:52.1466171Z * [new branch] update-vision-commit-hash/6871122584-778-1 -> origin/update-vision-commit-hash/6871122584-778-1 2025-04-25T04:11:52.1467015Z * [new branch] update-vision-commit-hash/6884505667-779-1 -> origin/update-vision-commit-hash/6884505667-779-1 2025-04-25T04:11:52.1467875Z * [new branch] update-vision-commit-hash/9010274985-1089-1 -> origin/update-vision-commit-hash/9010274985-1089-1 2025-04-25T04:11:52.1468690Z * [new branch] update-xla-commit-hash/10140112669-125-1 -> origin/update-xla-commit-hash/10140112669-125-1 2025-04-25T04:11:52.1469476Z * [new branch] update-xla-commit-hash/14440116118-180-1 -> origin/update-xla-commit-hash/14440116118-180-1 2025-04-25T04:11:52.1470365Z * [new branch] update-xla-commit-hash/6377302016-81-1 -> origin/update-xla-commit-hash/6377302016-81-1 2025-04-25T04:11:52.1471116Z * [new branch] update-xla-commit-hash/6610159969-84-1 -> origin/update-xla-commit-hash/6610159969-84-1 2025-04-25T04:11:52.1471866Z * [new branch] update-xla-commit-hash/6689695021-85-1 -> origin/update-xla-commit-hash/6689695021-85-1 2025-04-25T04:11:52.1472611Z * [new branch] update-xla-commit-hash/6767672412-86-1 -> origin/update-xla-commit-hash/6767672412-86-1 2025-04-25T04:11:52.1473529Z * [new branch] update-xla-commit-hash/6846986487-87-1 -> origin/update-xla-commit-hash/6846986487-87-1 2025-04-25T04:11:52.1474166Z * [new branch] update_deps_conda -> origin/update_deps_conda 2025-04-25T04:11:52.1474836Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-04-25T04:11:52.1475531Z * [new branch] update_pin_3 -> origin/update_pin_3 2025-04-25T04:11:52.1476102Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-04-25T04:11:52.1476684Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-04-25T04:11:52.1477261Z * [new branch] update_slow_tests_1742802025 -> origin/update_slow_tests_1742802025 2025-04-25T04:11:52.1477838Z * [new branch] update_slow_tests_1743406827 -> origin/update_slow_tests_1743406827 2025-04-25T04:11:52.1478412Z * [new branch] update_slow_tests_1744616441 -> origin/update_slow_tests_1744616441 2025-04-25T04:11:52.1479005Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-04-25T04:11:52.1479556Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-04-25T04:11:52.1480047Z * [new branch] users -> origin/users 2025-04-25T04:11:52.1480463Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-04-25T04:11:52.1480897Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-04-25T04:11:52.1481337Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-04-25T04:11:52.1481777Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-04-25T04:11:52.1482342Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-04-25T04:11:52.1482771Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-04-25T04:11:52.1483189Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-04-25T04:11:52.1483619Z * [new branch] validate_fn -> origin/validate_fn 2025-04-25T04:11:52.1484190Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-04-25T04:11:52.1484670Z * [new branch] viable/strict -> origin/viable/strict 2025-04-25T04:11:52.1485155Z * [new branch] vmoens-patch-1 -> origin/vmoens-patch-1 2025-04-25T04:11:52.1485675Z * [new branch] voz/fsdp_autograd_merge -> origin/voz/fsdp_autograd_merge 2025-04-25T04:11:52.1486228Z * [new branch] voz/fsdp_autograd_merge2 -> origin/voz/fsdp_autograd_merge2 2025-04-25T04:11:52.1486748Z * [new branch] voz/serde2 -> origin/voz/serde2 2025-04-25T04:11:52.1487308Z * [new branch] voz/soft_fork_autograd_fsdp -> origin/voz/soft_fork_autograd_fsdp 2025-04-25T04:11:52.1487913Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-04-25T04:11:52.1488396Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-04-25T04:11:52.1948412Z * [new branch] wdvr/sccache_nvcc -> origin/wdvr/sccache_nvcc 2025-04-25T04:11:52.1948967Z * [new branch] wdvr/sccache_simplified -> origin/wdvr/sccache_simplified 2025-04-25T04:11:52.1949489Z * [new branch] whc/flight -> origin/whc/flight 2025-04-25T04:11:52.1949944Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-04-25T04:11:52.1950467Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-04-25T04:11:52.1950985Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-04-25T04:11:52.1951656Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-04-25T04:11:52.1952141Z * [new branch] whc/flightbase -> origin/whc/flightbase 2025-04-25T04:11:52.1952625Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-04-25T04:11:52.1953081Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-04-25T04:11:52.1953527Z * [new branch] whc/uneven -> origin/whc/uneven 2025-04-25T04:11:52.1954001Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-04-25T04:11:52.1954502Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-04-25T04:11:52.1954987Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-04-25T04:11:52.1955443Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-04-25T04:11:52.1955910Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-04-25T04:11:52.1956462Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-04-25T04:11:52.1957013Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-04-25T04:11:52.1957495Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-04-25T04:11:52.1957992Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-04-25T04:11:52.1958529Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-04-25T04:11:52.1959019Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-04-25T04:11:52.1959491Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-04-25T04:11:52.1960065Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-04-25T04:11:52.1960542Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-04-25T04:11:52.1961030Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-04-25T04:11:52.1961531Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-04-25T04:11:52.1962128Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-04-25T04:11:52.1962764Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-04-25T04:11:52.1963309Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-04-25T04:11:52.1963818Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-04-25T04:11:52.1964428Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-04-25T04:11:52.1964975Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-04-25T04:11:52.1965513Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-04-25T04:11:52.1966042Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-04-25T04:11:52.1966567Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-04-25T04:11:52.1967064Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-04-25T04:11:52.1967553Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-04-25T04:11:52.1968095Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-04-25T04:11:52.1968620Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-04-25T04:11:52.1969122Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-04-25T04:11:52.1969703Z * [new branch] xmfan/compiled_autograd_bench -> origin/xmfan/compiled_autograd_bench 2025-04-25T04:11:52.1970493Z * [new branch] xmfan/compiled_autograd_bench_base -> origin/xmfan/compiled_autograd_bench_base 2025-04-25T04:11:52.1971207Z * [new branch] xmfan/compiled_autograd_benchmark -> origin/xmfan/compiled_autograd_benchmark 2025-04-25T04:11:52.1971859Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-04-25T04:11:52.1972484Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-04-25T04:11:52.2427691Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-04-25T04:11:52.2428407Z * [new branch] xmfan/compiled_autograd_hud -> origin/xmfan/compiled_autograd_hud 2025-04-25T04:11:52.2429145Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-04-25T04:11:52.2429933Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-04-25T04:11:52.2430586Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-04-25T04:11:52.2431190Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-04-25T04:11:52.2431814Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-04-25T04:11:52.2432525Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-04-25T04:11:52.2433155Z * [new branch] xmfan/fsdp_wraps -> origin/xmfan/fsdp_wraps 2025-04-25T04:11:52.2433659Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-04-25T04:11:52.2434369Z * [new branch] xmfan/oss_benchmark_script -> origin/xmfan/oss_benchmark_script 2025-04-25T04:11:52.2434944Z * [new branch] xmfan/retains_grad_hooks -> origin/xmfan/retains_grad_hooks 2025-04-25T04:11:52.2435490Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-04-25T04:11:52.2435991Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-04-25T04:11:52.2436482Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-04-25T04:11:52.2436944Z * [new branch] xmfan/test -> origin/xmfan/test 2025-04-25T04:11:52.2437402Z * [new branch] xmfan/yolov3_oom -> origin/xmfan/yolov3_oom 2025-04-25T04:11:52.2437935Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-04-25T04:11:52.2438494Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-04-25T04:11:52.2439085Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-04-25T04:11:52.2439869Z * [new branch] yguo/repro-segfault-triton-aoti-cpp-wrapper -> origin/yguo/repro-segfault-triton-aoti-cpp-wrapper 2025-04-25T04:11:52.2440606Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-04-25T04:11:52.2441115Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-04-25T04:11:52.2441605Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-04-25T04:11:52.2442119Z * [new branch] zainr/fix-sev-td -> origin/zainr/fix-sev-td 2025-04-25T04:11:52.2442605Z * [new branch] zainr/lint-fix -> origin/zainr/lint-fix 2025-04-25T04:11:52.2443201Z * [new branch] zainr/metrics-job-id -> origin/zainr/metrics-job-id 2025-04-25T04:11:52.2443815Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-04-25T04:11:52.2444557Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-04-25T04:11:52.2445083Z * [new branch] zainr/td-class -> origin/zainr/td-class 2025-04-25T04:11:52.2445584Z * [new branch] zainr/td-class-metrics -> origin/zainr/td-class-metrics 2025-04-25T04:11:52.2446127Z * [new branch] zainr/td-downgrade -> origin/zainr/td-downgrade 2025-04-25T04:11:52.2446697Z * [new branch] zainr/td-pass-class-times -> origin/zainr/td-pass-class-times 2025-04-25T04:11:52.2447222Z * [new branch] zainr/td-trial -> origin/zainr/td-trial 2025-04-25T04:11:52.2447706Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-04-25T04:11:52.2448203Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-04-25T04:11:52.2448721Z * [new branch] zb2p -> origin/zb2p 2025-04-25T04:11:52.2449198Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-04-25T04:11:52.2449748Z * [new branch] zdevito-patch-2 -> origin/zdevito-patch-2 2025-04-25T04:11:52.2450291Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-04-25T04:11:52.2450844Z * [new branch] zhxchen17/moodycamel -> origin/zhxchen17/moodycamel 2025-04-25T04:11:52.2451382Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-04-25T04:11:52.2451900Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-04-25T04:11:52.2452451Z * [new branch] zhxchen17/sticky_cache/0 -> origin/zhxchen17/sticky_cache/0 2025-04-25T04:11:52.2453012Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-04-25T04:11:52.2453606Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-04-25T04:11:52.2796412Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-04-25T04:11:52.2796993Z * [new branch] zxiiro/editor-config -> origin/zxiiro/editor-config 2025-04-25T04:11:52.2797522Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-04-25T04:11:52.2798040Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-04-25T04:11:52.2798512Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-04-25T04:11:52.2799000Z * [new branch] zxiiro/test-bazel -> origin/zxiiro/test-bazel 2025-04-25T04:11:52.2799494Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-04-25T04:11:52.2799955Z * [new branch] zxiiro/xpu -> origin/zxiiro/xpu 2025-04-25T04:11:52.2800730Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-04-25T04:11:52.2801474Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-04-25T04:11:52.2801904Z * [new tag] ciflow/all/70978 -> ciflow/all/70978 2025-04-25T04:11:52.2802317Z * [new tag] ciflow/all/70979 -> ciflow/all/70979 2025-04-25T04:11:52.2802718Z * [new tag] ciflow/all/70989 -> ciflow/all/70989 2025-04-25T04:11:52.2803156Z * [new tag] ciflow/binaries/120076 -> ciflow/binaries/120076 2025-04-25T04:11:52.2803612Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-04-25T04:11:52.2804218Z * [new tag] ciflow/binaries/145224 -> ciflow/binaries/145224 2025-04-25T04:11:52.2804668Z * [new tag] ciflow/binaries/146717 -> ciflow/binaries/146717 2025-04-25T04:11:52.2805138Z * [new tag] ciflow/binaries/147498 -> ciflow/binaries/147498 2025-04-25T04:11:52.2805755Z * [new tag] ciflow/binaries/147664 -> ciflow/binaries/147664 2025-04-25T04:11:52.2806203Z * [new tag] ciflow/binaries/147917 -> ciflow/binaries/147917 2025-04-25T04:11:52.2806689Z * [new tag] ciflow/binaries/148163 -> ciflow/binaries/148163 2025-04-25T04:11:52.2807146Z * [new tag] ciflow/binaries/148173 -> ciflow/binaries/148173 2025-04-25T04:11:52.2807604Z * [new tag] ciflow/binaries/149192 -> ciflow/binaries/149192 2025-04-25T04:11:52.2808071Z * [new tag] ciflow/binaries/149254 -> ciflow/binaries/149254 2025-04-25T04:11:52.2808519Z * [new tag] ciflow/binaries/150688 -> ciflow/binaries/150688 2025-04-25T04:11:52.2808976Z * [new tag] ciflow/binaries/150705 -> ciflow/binaries/150705 2025-04-25T04:11:52.2809430Z * [new tag] ciflow/binaries/151581 -> ciflow/binaries/151581 2025-04-25T04:11:52.2809894Z * [new tag] ciflow/binaries/152099 -> ciflow/binaries/152099 2025-04-25T04:11:52.2810379Z * [new tag] ciflow/binaries_wheel/138834 -> ciflow/binaries_wheel/138834 2025-04-25T04:11:52.2810902Z * [new tag] ciflow/binaries_wheel/146055 -> ciflow/binaries_wheel/146055 2025-04-25T04:11:52.2811415Z * [new tag] ciflow/binaries_wheel/147455 -> ciflow/binaries_wheel/147455 2025-04-25T04:11:52.2811923Z * [new tag] ciflow/binaries_wheel/148320 -> ciflow/binaries_wheel/148320 2025-04-25T04:11:52.2812434Z * [new tag] ciflow/binaries_wheel/149192 -> ciflow/binaries_wheel/149192 2025-04-25T04:11:52.2812939Z * [new tag] ciflow/binaries_wheel/150329 -> ciflow/binaries_wheel/150329 2025-04-25T04:11:52.2813451Z * [new tag] ciflow/binaries_wheel/150525 -> ciflow/binaries_wheel/150525 2025-04-25T04:11:52.2814068Z * [new tag] ciflow/binaries_wheel/151035 -> ciflow/binaries_wheel/151035 2025-04-25T04:11:52.2814585Z * [new tag] ciflow/binaries_wheel/151429 -> ciflow/binaries_wheel/151429 2025-04-25T04:11:52.2815095Z * [new tag] ciflow/binaries_wheel/151767 -> ciflow/binaries_wheel/151767 2025-04-25T04:11:52.2815602Z * [new tag] ciflow/binaries_wheel/151899 -> ciflow/binaries_wheel/151899 2025-04-25T04:11:52.2816079Z * [new tag] ciflow/cuda/70978 -> ciflow/cuda/70978 2025-04-25T04:11:52.2816505Z * [new tag] ciflow/cuda/70979 -> ciflow/cuda/70979 2025-04-25T04:11:52.2816922Z * [new tag] ciflow/cuda/70989 -> ciflow/cuda/70989 2025-04-25T04:11:52.2817584Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151581 -> ciflow/inductor-micro-benchmark-cpu-x86/151581 2025-04-25T04:11:52.2818474Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151585 -> ciflow/inductor-micro-benchmark-cpu-x86/151585 2025-04-25T04:11:52.2819292Z * [new tag] ciflow/inductor-micro-benchmark/151581 -> ciflow/inductor-micro-benchmark/151581 2025-04-25T04:11:52.2820020Z * [new tag] ciflow/inductor-micro-benchmark/151585 -> ciflow/inductor-micro-benchmark/151585 2025-04-25T04:11:52.3110105Z * [new tag] ciflow/inductor-perf-compare/151581 -> ciflow/inductor-perf-compare/151581 2025-04-25T04:11:52.3110843Z * [new tag] ciflow/inductor-perf-compare/151585 -> ciflow/inductor-perf-compare/151585 2025-04-25T04:11:52.3111680Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/148672 -> ciflow/inductor-perf-test-nightly-rocm/148672 2025-04-25T04:11:52.3112618Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149039 -> ciflow/inductor-perf-test-nightly-rocm/149039 2025-04-25T04:11:52.3113489Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149506 -> ciflow/inductor-perf-test-nightly-rocm/149506 2025-04-25T04:11:52.3114510Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151581 -> ciflow/inductor-perf-test-nightly-rocm/151581 2025-04-25T04:11:52.3115333Z * [new tag] ciflow/inductor-perf-test-nightly/151581 -> ciflow/inductor-perf-test-nightly/151581 2025-04-25T04:11:52.3116014Z * [new tag] ciflow/inductor-periodic/145612 -> ciflow/inductor-periodic/145612 2025-04-25T04:11:52.3116600Z * [new tag] ciflow/inductor-periodic/149949 -> ciflow/inductor-periodic/149949 2025-04-25T04:11:52.3117192Z * [new tag] ciflow/inductor-periodic/150411 -> ciflow/inductor-periodic/150411 2025-04-25T04:11:52.3117863Z * [new tag] ciflow/inductor-periodic/151581 -> ciflow/inductor-periodic/151581 2025-04-25T04:11:52.3118434Z * [new tag] ciflow/inductor-rocm/141309 -> ciflow/inductor-rocm/141309 2025-04-25T04:11:52.3118949Z * [new tag] ciflow/inductor-rocm/146903 -> ciflow/inductor-rocm/146903 2025-04-25T04:11:52.3119455Z * [new tag] ciflow/inductor-rocm/147583 -> ciflow/inductor-rocm/147583 2025-04-25T04:11:52.3119957Z * [new tag] ciflow/inductor-rocm/149041 -> ciflow/inductor-rocm/149041 2025-04-25T04:11:52.3120453Z * [new tag] ciflow/inductor-rocm/151368 -> ciflow/inductor-rocm/151368 2025-04-25T04:11:52.3120965Z * [new tag] ciflow/inductor-rocm/151581 -> ciflow/inductor-rocm/151581 2025-04-25T04:11:52.3121468Z * [new tag] ciflow/inductor-rocm/151708 -> ciflow/inductor-rocm/151708 2025-04-25T04:11:52.3121966Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-04-25T04:11:52.3122453Z * [new tag] ciflow/inductor/110155 -> ciflow/inductor/110155 2025-04-25T04:11:52.3122914Z * [new tag] ciflow/inductor/119496 -> ciflow/inductor/119496 2025-04-25T04:11:52.3123534Z * [new tag] ciflow/inductor/119977 -> ciflow/inductor/119977 2025-04-25T04:11:52.3124154Z * [new tag] ciflow/inductor/120076 -> ciflow/inductor/120076 2025-04-25T04:11:52.3124611Z * [new tag] ciflow/inductor/121445 -> ciflow/inductor/121445 2025-04-25T04:11:52.3125068Z * [new tag] ciflow/inductor/124490 -> ciflow/inductor/124490 2025-04-25T04:11:52.3125509Z * [new tag] ciflow/inductor/125270 -> ciflow/inductor/125270 2025-04-25T04:11:52.3125973Z * [new tag] ciflow/inductor/125326 -> ciflow/inductor/125326 2025-04-25T04:11:52.3126426Z * [new tag] ciflow/inductor/125428 -> ciflow/inductor/125428 2025-04-25T04:11:52.3126885Z * [new tag] ciflow/inductor/125806 -> ciflow/inductor/125806 2025-04-25T04:11:52.3143878Z * [new tag] ciflow/inductor/125888 -> ciflow/inductor/125888 2025-04-25T04:11:52.3144453Z * [new tag] ciflow/inductor/125995 -> ciflow/inductor/125995 2025-04-25T04:11:52.3144983Z * [new tag] ciflow/inductor/126348 -> ciflow/inductor/126348 2025-04-25T04:11:52.3145528Z * [new tag] ciflow/inductor/127171 -> ciflow/inductor/127171 2025-04-25T04:11:52.3146041Z * [new tag] ciflow/inductor/127293 -> ciflow/inductor/127293 2025-04-25T04:11:52.3146555Z * [new tag] ciflow/inductor/127294 -> ciflow/inductor/127294 2025-04-25T04:11:52.3147069Z * [new tag] ciflow/inductor/129352 -> ciflow/inductor/129352 2025-04-25T04:11:52.3147569Z * [new tag] ciflow/inductor/130141 -> ciflow/inductor/130141 2025-04-25T04:11:52.3148089Z * [new tag] ciflow/inductor/130499 -> ciflow/inductor/130499 2025-04-25T04:11:52.3148591Z * [new tag] ciflow/inductor/130887 -> ciflow/inductor/130887 2025-04-25T04:11:52.3149152Z * [new tag] ciflow/inductor/132414 -> ciflow/inductor/132414 2025-04-25T04:11:52.3149870Z * [new tag] ciflow/inductor/133044 -> ciflow/inductor/133044 2025-04-25T04:11:52.3150374Z * [new tag] ciflow/inductor/133121 -> ciflow/inductor/133121 2025-04-25T04:11:52.3150939Z * [new tag] ciflow/inductor/133287 -> ciflow/inductor/133287 2025-04-25T04:11:52.3151449Z * [new tag] ciflow/inductor/133289 -> ciflow/inductor/133289 2025-04-25T04:11:52.3151970Z * [new tag] ciflow/inductor/133296 -> ciflow/inductor/133296 2025-04-25T04:11:52.3152473Z * [new tag] ciflow/inductor/133297 -> ciflow/inductor/133297 2025-04-25T04:11:52.3452152Z * [new tag] ciflow/inductor/133315 -> ciflow/inductor/133315 2025-04-25T04:11:52.3452687Z * [new tag] ciflow/inductor/133392 -> ciflow/inductor/133392 2025-04-25T04:11:52.3453178Z * [new tag] ciflow/inductor/133419 -> ciflow/inductor/133419 2025-04-25T04:11:52.3453659Z * [new tag] ciflow/inductor/133423 -> ciflow/inductor/133423 2025-04-25T04:11:52.3454124Z * [new tag] ciflow/inductor/133667 -> ciflow/inductor/133667 2025-04-25T04:11:52.3454578Z * [new tag] ciflow/inductor/133753 -> ciflow/inductor/133753 2025-04-25T04:11:52.3455043Z * [new tag] ciflow/inductor/134681 -> ciflow/inductor/134681 2025-04-25T04:11:52.3455496Z * [new tag] ciflow/inductor/135708 -> ciflow/inductor/135708 2025-04-25T04:11:52.3455956Z * [new tag] ciflow/inductor/135792 -> ciflow/inductor/135792 2025-04-25T04:11:52.3456403Z * [new tag] ciflow/inductor/136355 -> ciflow/inductor/136355 2025-04-25T04:11:52.3456860Z * [new tag] ciflow/inductor/136702 -> ciflow/inductor/136702 2025-04-25T04:11:52.3457537Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-04-25T04:11:52.3458001Z * [new tag] ciflow/inductor/137568 -> ciflow/inductor/137568 2025-04-25T04:11:52.3458459Z * [new tag] ciflow/inductor/137583 -> ciflow/inductor/137583 2025-04-25T04:11:52.3458904Z * [new tag] ciflow/inductor/137846 -> ciflow/inductor/137846 2025-04-25T04:11:52.3459372Z * [new tag] ciflow/inductor/137884 -> ciflow/inductor/137884 2025-04-25T04:11:52.3459838Z * [new tag] ciflow/inductor/138202 -> ciflow/inductor/138202 2025-04-25T04:11:52.3460287Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-04-25T04:11:52.3460744Z * [new tag] ciflow/inductor/138388 -> ciflow/inductor/138388 2025-04-25T04:11:52.3461199Z * [new tag] ciflow/inductor/138513 -> ciflow/inductor/138513 2025-04-25T04:11:52.3461670Z * [new tag] ciflow/inductor/138519 -> ciflow/inductor/138519 2025-04-25T04:11:52.3462130Z * [new tag] ciflow/inductor/138626 -> ciflow/inductor/138626 2025-04-25T04:11:52.3462587Z * [new tag] ciflow/inductor/139094 -> ciflow/inductor/139094 2025-04-25T04:11:52.3463047Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-04-25T04:11:52.3463507Z * [new tag] ciflow/inductor/139975 -> ciflow/inductor/139975 2025-04-25T04:11:52.3463982Z * [new tag] ciflow/inductor/140032 -> ciflow/inductor/140032 2025-04-25T04:11:52.3464445Z * [new tag] ciflow/inductor/140159 -> ciflow/inductor/140159 2025-04-25T04:11:52.3464898Z * [new tag] ciflow/inductor/140756 -> ciflow/inductor/140756 2025-04-25T04:11:52.3465373Z * [new tag] ciflow/inductor/140979 -> ciflow/inductor/140979 2025-04-25T04:11:52.3465832Z * [new tag] ciflow/inductor/141213 -> ciflow/inductor/141213 2025-04-25T04:11:52.3466427Z * [new tag] ciflow/inductor/141309 -> ciflow/inductor/141309 2025-04-25T04:11:52.3466896Z * [new tag] ciflow/inductor/141684 -> ciflow/inductor/141684 2025-04-25T04:11:52.3467357Z * [new tag] ciflow/inductor/141700 -> ciflow/inductor/141700 2025-04-25T04:11:52.3467827Z * [new tag] ciflow/inductor/141730 -> ciflow/inductor/141730 2025-04-25T04:11:52.3468290Z * [new tag] ciflow/inductor/141842 -> ciflow/inductor/141842 2025-04-25T04:11:52.3468764Z * [new tag] ciflow/inductor/141961 -> ciflow/inductor/141961 2025-04-25T04:11:52.3469229Z * [new tag] ciflow/inductor/142295 -> ciflow/inductor/142295 2025-04-25T04:11:52.3469700Z * [new tag] ciflow/inductor/142372 -> ciflow/inductor/142372 2025-04-25T04:11:52.3470170Z * [new tag] ciflow/inductor/143457 -> ciflow/inductor/143457 2025-04-25T04:11:52.3470631Z * [new tag] ciflow/inductor/143527 -> ciflow/inductor/143527 2025-04-25T04:11:52.3471099Z * [new tag] ciflow/inductor/143544 -> ciflow/inductor/143544 2025-04-25T04:11:52.3471547Z * [new tag] ciflow/inductor/143666 -> ciflow/inductor/143666 2025-04-25T04:11:52.3471997Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-04-25T04:11:52.3472453Z * [new tag] ciflow/inductor/143812 -> ciflow/inductor/143812 2025-04-25T04:11:52.3472900Z * [new tag] ciflow/inductor/143833 -> ciflow/inductor/143833 2025-04-25T04:11:52.3473355Z * [new tag] ciflow/inductor/143987 -> ciflow/inductor/143987 2025-04-25T04:11:52.3473800Z * [new tag] ciflow/inductor/144272 -> ciflow/inductor/144272 2025-04-25T04:11:52.3474365Z * [new tag] ciflow/inductor/144293 -> ciflow/inductor/144293 2025-04-25T04:11:52.3474819Z * [new tag] ciflow/inductor/144332 -> ciflow/inductor/144332 2025-04-25T04:11:52.3825811Z * [new tag] ciflow/inductor/144333 -> ciflow/inductor/144333 2025-04-25T04:11:52.3826302Z * [new tag] ciflow/inductor/144353 -> ciflow/inductor/144353 2025-04-25T04:11:52.3826753Z * [new tag] ciflow/inductor/144365 -> ciflow/inductor/144365 2025-04-25T04:11:52.3827239Z * [new tag] ciflow/inductor/144366 -> ciflow/inductor/144366 2025-04-25T04:11:52.3827704Z * [new tag] ciflow/inductor/144405 -> ciflow/inductor/144405 2025-04-25T04:11:52.3828150Z * [new tag] ciflow/inductor/144438 -> ciflow/inductor/144438 2025-04-25T04:11:52.3828608Z * [new tag] ciflow/inductor/144501 -> ciflow/inductor/144501 2025-04-25T04:11:52.3829093Z * [new tag] ciflow/inductor/144505 -> ciflow/inductor/144505 2025-04-25T04:11:52.3829568Z * [new tag] ciflow/inductor/144507 -> ciflow/inductor/144507 2025-04-25T04:11:52.3830019Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-04-25T04:11:52.3830465Z * [new tag] ciflow/inductor/144542 -> ciflow/inductor/144542 2025-04-25T04:11:52.3830923Z * [new tag] ciflow/inductor/144548 -> ciflow/inductor/144548 2025-04-25T04:11:52.3831375Z * [new tag] ciflow/inductor/144551 -> ciflow/inductor/144551 2025-04-25T04:11:52.3831852Z * [new tag] ciflow/inductor/144553 -> ciflow/inductor/144553 2025-04-25T04:11:52.3832305Z * [new tag] ciflow/inductor/144555 -> ciflow/inductor/144555 2025-04-25T04:11:52.3832751Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-04-25T04:11:52.3833226Z * [new tag] ciflow/inductor/144721 -> ciflow/inductor/144721 2025-04-25T04:11:52.3833862Z * [new tag] ciflow/inductor/144765 -> ciflow/inductor/144765 2025-04-25T04:11:52.3834336Z * [new tag] ciflow/inductor/144905 -> ciflow/inductor/144905 2025-04-25T04:11:52.3834788Z * [new tag] ciflow/inductor/144925 -> ciflow/inductor/144925 2025-04-25T04:11:52.3835256Z * [new tag] ciflow/inductor/144992 -> ciflow/inductor/144992 2025-04-25T04:11:52.3835714Z * [new tag] ciflow/inductor/145024 -> ciflow/inductor/145024 2025-04-25T04:11:52.3836158Z * [new tag] ciflow/inductor/145153 -> ciflow/inductor/145153 2025-04-25T04:11:52.3836617Z * [new tag] ciflow/inductor/145353 -> ciflow/inductor/145353 2025-04-25T04:11:52.3837073Z * [new tag] ciflow/inductor/145475 -> ciflow/inductor/145475 2025-04-25T04:11:52.3837536Z * [new tag] ciflow/inductor/145540 -> ciflow/inductor/145540 2025-04-25T04:11:52.3837994Z * [new tag] ciflow/inductor/145559 -> ciflow/inductor/145559 2025-04-25T04:11:52.3838459Z * [new tag] ciflow/inductor/145594 -> ciflow/inductor/145594 2025-04-25T04:11:52.3838903Z * [new tag] ciflow/inductor/145595 -> ciflow/inductor/145595 2025-04-25T04:11:52.3839354Z * [new tag] ciflow/inductor/145612 -> ciflow/inductor/145612 2025-04-25T04:11:52.3839802Z * [new tag] ciflow/inductor/145647 -> ciflow/inductor/145647 2025-04-25T04:11:52.3840243Z * [new tag] ciflow/inductor/145681 -> ciflow/inductor/145681 2025-04-25T04:11:52.3840708Z * [new tag] ciflow/inductor/145865 -> ciflow/inductor/145865 2025-04-25T04:11:52.3841153Z * [new tag] ciflow/inductor/145885 -> ciflow/inductor/145885 2025-04-25T04:11:52.3841722Z * [new tag] ciflow/inductor/145911 -> ciflow/inductor/145911 2025-04-25T04:11:52.3842190Z * [new tag] ciflow/inductor/145922 -> ciflow/inductor/145922 2025-04-25T04:11:52.3842636Z * [new tag] ciflow/inductor/145936 -> ciflow/inductor/145936 2025-04-25T04:11:52.3843089Z * [new tag] ciflow/inductor/145969 -> ciflow/inductor/145969 2025-04-25T04:11:52.3843544Z * [new tag] ciflow/inductor/145979 -> ciflow/inductor/145979 2025-04-25T04:11:52.3844095Z * [new tag] ciflow/inductor/145992 -> ciflow/inductor/145992 2025-04-25T04:11:52.3844549Z * [new tag] ciflow/inductor/146063 -> ciflow/inductor/146063 2025-04-25T04:11:52.3845005Z * [new tag] ciflow/inductor/146101 -> ciflow/inductor/146101 2025-04-25T04:11:52.3845473Z * [new tag] ciflow/inductor/146115 -> ciflow/inductor/146115 2025-04-25T04:11:52.3845921Z * [new tag] ciflow/inductor/146172 -> ciflow/inductor/146172 2025-04-25T04:11:52.3846376Z * [new tag] ciflow/inductor/146180 -> ciflow/inductor/146180 2025-04-25T04:11:52.3846818Z * [new tag] ciflow/inductor/146218 -> ciflow/inductor/146218 2025-04-25T04:11:52.3847282Z * [new tag] ciflow/inductor/146228 -> ciflow/inductor/146228 2025-04-25T04:11:52.3847739Z * [new tag] ciflow/inductor/146267 -> ciflow/inductor/146267 2025-04-25T04:11:52.3848182Z * [new tag] ciflow/inductor/146275 -> ciflow/inductor/146275 2025-04-25T04:11:52.4190685Z * [new tag] ciflow/inductor/146280 -> ciflow/inductor/146280 2025-04-25T04:11:52.4191231Z * [new tag] ciflow/inductor/146288 -> ciflow/inductor/146288 2025-04-25T04:11:52.4191836Z * [new tag] ciflow/inductor/146319 -> ciflow/inductor/146319 2025-04-25T04:11:52.4192464Z * [new tag] ciflow/inductor/146335 -> ciflow/inductor/146335 2025-04-25T04:11:52.4193251Z * [new tag] ciflow/inductor/146341 -> ciflow/inductor/146341 2025-04-25T04:11:52.4193768Z * [new tag] ciflow/inductor/146395 -> ciflow/inductor/146395 2025-04-25T04:11:52.4194273Z * [new tag] ciflow/inductor/146415 -> ciflow/inductor/146415 2025-04-25T04:11:52.4194783Z * [new tag] ciflow/inductor/146436 -> ciflow/inductor/146436 2025-04-25T04:11:52.4195335Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-04-25T04:11:52.4195840Z * [new tag] ciflow/inductor/146526 -> ciflow/inductor/146526 2025-04-25T04:11:52.4196354Z * [new tag] ciflow/inductor/146530 -> ciflow/inductor/146530 2025-04-25T04:11:52.4196853Z * [new tag] ciflow/inductor/146535 -> ciflow/inductor/146535 2025-04-25T04:11:52.4197374Z * [new tag] ciflow/inductor/146558 -> ciflow/inductor/146558 2025-04-25T04:11:52.4197890Z * [new tag] ciflow/inductor/146561 -> ciflow/inductor/146561 2025-04-25T04:11:52.4198391Z * [new tag] ciflow/inductor/146562 -> ciflow/inductor/146562 2025-04-25T04:11:52.4198949Z * [new tag] ciflow/inductor/146661 -> ciflow/inductor/146661 2025-04-25T04:11:52.4199450Z * [new tag] ciflow/inductor/146678 -> ciflow/inductor/146678 2025-04-25T04:11:52.4199951Z * [new tag] ciflow/inductor/146718 -> ciflow/inductor/146718 2025-04-25T04:11:52.4200457Z * [new tag] ciflow/inductor/146779 -> ciflow/inductor/146779 2025-04-25T04:11:52.4200962Z * [new tag] ciflow/inductor/146781 -> ciflow/inductor/146781 2025-04-25T04:11:52.4201469Z * [new tag] ciflow/inductor/146844 -> ciflow/inductor/146844 2025-04-25T04:11:52.4202008Z * [new tag] ciflow/inductor/146845 -> ciflow/inductor/146845 2025-04-25T04:11:52.4202654Z * [new tag] ciflow/inductor/146850 -> ciflow/inductor/146850 2025-04-25T04:11:52.4203160Z * [new tag] ciflow/inductor/146864 -> ciflow/inductor/146864 2025-04-25T04:11:52.4203680Z * [new tag] ciflow/inductor/146874 -> ciflow/inductor/146874 2025-04-25T04:11:52.4204347Z * [new tag] ciflow/inductor/146894 -> ciflow/inductor/146894 2025-04-25T04:11:52.4204848Z * [new tag] ciflow/inductor/146895 -> ciflow/inductor/146895 2025-04-25T04:11:52.4205352Z * [new tag] ciflow/inductor/146935 -> ciflow/inductor/146935 2025-04-25T04:11:52.4205852Z * [new tag] ciflow/inductor/146942 -> ciflow/inductor/146942 2025-04-25T04:11:52.4206358Z * [new tag] ciflow/inductor/146962 -> ciflow/inductor/146962 2025-04-25T04:11:52.4206863Z * [new tag] ciflow/inductor/146983 -> ciflow/inductor/146983 2025-04-25T04:11:52.4207370Z * [new tag] ciflow/inductor/146989 -> ciflow/inductor/146989 2025-04-25T04:11:52.4207928Z * [new tag] ciflow/inductor/147007 -> ciflow/inductor/147007 2025-04-25T04:11:52.4208437Z * [new tag] ciflow/inductor/147021 -> ciflow/inductor/147021 2025-04-25T04:11:52.4208946Z * [new tag] ciflow/inductor/147036 -> ciflow/inductor/147036 2025-04-25T04:11:52.4209446Z * [new tag] ciflow/inductor/147049 -> ciflow/inductor/147049 2025-04-25T04:11:52.4209947Z * [new tag] ciflow/inductor/147146 -> ciflow/inductor/147146 2025-04-25T04:11:52.4210454Z * [new tag] ciflow/inductor/147155 -> ciflow/inductor/147155 2025-04-25T04:11:52.4210981Z * [new tag] ciflow/inductor/147178 -> ciflow/inductor/147178 2025-04-25T04:11:52.4211516Z * [new tag] ciflow/inductor/147314 -> ciflow/inductor/147314 2025-04-25T04:11:52.4212027Z * [new tag] ciflow/inductor/147341 -> ciflow/inductor/147341 2025-04-25T04:11:52.4212658Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-04-25T04:11:52.4213204Z * [new tag] ciflow/inductor/147368 -> ciflow/inductor/147368 2025-04-25T04:11:52.4213732Z * [new tag] ciflow/inductor/147410 -> ciflow/inductor/147410 2025-04-25T04:11:52.4214252Z * [new tag] ciflow/inductor/147414 -> ciflow/inductor/147414 2025-04-25T04:11:52.4214706Z * [new tag] ciflow/inductor/147415 -> ciflow/inductor/147415 2025-04-25T04:11:52.4215188Z * [new tag] ciflow/inductor/147481 -> ciflow/inductor/147481 2025-04-25T04:11:52.4215634Z * [new tag] ciflow/inductor/147498 -> ciflow/inductor/147498 2025-04-25T04:11:52.4216085Z * [new tag] ciflow/inductor/147514 -> ciflow/inductor/147514 2025-04-25T04:11:52.4216538Z * [new tag] ciflow/inductor/147528 -> ciflow/inductor/147528 2025-04-25T04:11:52.4523102Z * [new tag] ciflow/inductor/147562 -> ciflow/inductor/147562 2025-04-25T04:11:52.4523694Z * [new tag] ciflow/inductor/147583 -> ciflow/inductor/147583 2025-04-25T04:11:52.4524222Z * [new tag] ciflow/inductor/147603 -> ciflow/inductor/147603 2025-04-25T04:11:52.4524673Z * [new tag] ciflow/inductor/147745 -> ciflow/inductor/147745 2025-04-25T04:11:52.4525125Z * [new tag] ciflow/inductor/147797 -> ciflow/inductor/147797 2025-04-25T04:11:52.4525578Z * [new tag] ciflow/inductor/147800 -> ciflow/inductor/147800 2025-04-25T04:11:52.4526032Z * [new tag] ciflow/inductor/147881 -> ciflow/inductor/147881 2025-04-25T04:11:52.4526477Z * [new tag] ciflow/inductor/147899 -> ciflow/inductor/147899 2025-04-25T04:11:52.4527126Z * [new tag] ciflow/inductor/147902 -> ciflow/inductor/147902 2025-04-25T04:11:52.4527594Z * [new tag] ciflow/inductor/147903 -> ciflow/inductor/147903 2025-04-25T04:11:52.4528041Z * [new tag] ciflow/inductor/147908 -> ciflow/inductor/147908 2025-04-25T04:11:52.4528505Z * [new tag] ciflow/inductor/147910 -> ciflow/inductor/147910 2025-04-25T04:11:52.4528957Z * [new tag] ciflow/inductor/147915 -> ciflow/inductor/147915 2025-04-25T04:11:52.4529410Z * [new tag] ciflow/inductor/147917 -> ciflow/inductor/147917 2025-04-25T04:11:52.4529858Z * [new tag] ciflow/inductor/147927 -> ciflow/inductor/147927 2025-04-25T04:11:52.4530311Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-04-25T04:11:52.4530764Z * [new tag] ciflow/inductor/148008 -> ciflow/inductor/148008 2025-04-25T04:11:52.4531219Z * [new tag] ciflow/inductor/148010 -> ciflow/inductor/148010 2025-04-25T04:11:52.4531679Z * [new tag] ciflow/inductor/148104 -> ciflow/inductor/148104 2025-04-25T04:11:52.4532271Z * [new tag] ciflow/inductor/148160 -> ciflow/inductor/148160 2025-04-25T04:11:52.4532746Z * [new tag] ciflow/inductor/148163 -> ciflow/inductor/148163 2025-04-25T04:11:52.4533200Z * [new tag] ciflow/inductor/148173 -> ciflow/inductor/148173 2025-04-25T04:11:52.4533645Z * [new tag] ciflow/inductor/148186 -> ciflow/inductor/148186 2025-04-25T04:11:52.4534100Z * [new tag] ciflow/inductor/148202 -> ciflow/inductor/148202 2025-04-25T04:11:52.4534551Z * [new tag] ciflow/inductor/148206 -> ciflow/inductor/148206 2025-04-25T04:11:52.4535010Z * [new tag] ciflow/inductor/148234 -> ciflow/inductor/148234 2025-04-25T04:11:52.4535463Z * [new tag] ciflow/inductor/148235 -> ciflow/inductor/148235 2025-04-25T04:11:52.4536054Z * [new tag] ciflow/inductor/148294 -> ciflow/inductor/148294 2025-04-25T04:11:52.4536510Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-04-25T04:11:52.4536960Z * [new tag] ciflow/inductor/148357 -> ciflow/inductor/148357 2025-04-25T04:11:52.4537418Z * [new tag] ciflow/inductor/148380 -> ciflow/inductor/148380 2025-04-25T04:11:52.4537871Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-04-25T04:11:52.4538328Z * [new tag] ciflow/inductor/148413 -> ciflow/inductor/148413 2025-04-25T04:11:52.4538793Z * [new tag] ciflow/inductor/148414 -> ciflow/inductor/148414 2025-04-25T04:11:52.4539242Z * [new tag] ciflow/inductor/148415 -> ciflow/inductor/148415 2025-04-25T04:11:52.4539702Z * [new tag] ciflow/inductor/148418 -> ciflow/inductor/148418 2025-04-25T04:11:52.4540158Z * [new tag] ciflow/inductor/148424 -> ciflow/inductor/148424 2025-04-25T04:11:52.4540614Z * [new tag] ciflow/inductor/148459 -> ciflow/inductor/148459 2025-04-25T04:11:52.4541071Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-04-25T04:11:52.4541517Z * [new tag] ciflow/inductor/148485 -> ciflow/inductor/148485 2025-04-25T04:11:52.4541967Z * [new tag] ciflow/inductor/148488 -> ciflow/inductor/148488 2025-04-25T04:11:52.4542411Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-04-25T04:11:52.4542869Z * [new tag] ciflow/inductor/148502 -> ciflow/inductor/148502 2025-04-25T04:11:52.4543318Z * [new tag] ciflow/inductor/148529 -> ciflow/inductor/148529 2025-04-25T04:11:52.4543878Z * [new tag] ciflow/inductor/148569 -> ciflow/inductor/148569 2025-04-25T04:11:52.4544354Z * [new tag] ciflow/inductor/148613 -> ciflow/inductor/148613 2025-04-25T04:11:52.4544800Z * [new tag] ciflow/inductor/148618 -> ciflow/inductor/148618 2025-04-25T04:11:52.4545255Z * [new tag] ciflow/inductor/148630 -> ciflow/inductor/148630 2025-04-25T04:11:52.4545715Z * [new tag] ciflow/inductor/148684 -> ciflow/inductor/148684 2025-04-25T04:11:52.5432222Z * [new tag] ciflow/inductor/148694 -> ciflow/inductor/148694 2025-04-25T04:11:52.5433064Z * [new tag] ciflow/inductor/148710 -> ciflow/inductor/148710 2025-04-25T04:11:52.5433846Z * [new tag] ciflow/inductor/148712 -> ciflow/inductor/148712 2025-04-25T04:11:52.5434645Z * [new tag] ciflow/inductor/148731 -> ciflow/inductor/148731 2025-04-25T04:11:52.5435454Z * [new tag] ciflow/inductor/148742 -> ciflow/inductor/148742 2025-04-25T04:11:52.5436233Z * [new tag] ciflow/inductor/148773 -> ciflow/inductor/148773 2025-04-25T04:11:52.5437010Z * [new tag] ciflow/inductor/148780 -> ciflow/inductor/148780 2025-04-25T04:11:52.5437774Z * [new tag] ciflow/inductor/148893 -> ciflow/inductor/148893 2025-04-25T04:11:52.5438549Z * [new tag] ciflow/inductor/148898 -> ciflow/inductor/148898 2025-04-25T04:11:52.5439314Z * [new tag] ciflow/inductor/148932 -> ciflow/inductor/148932 2025-04-25T04:11:52.5440089Z * [new tag] ciflow/inductor/148947 -> ciflow/inductor/148947 2025-04-25T04:11:52.5440858Z * [new tag] ciflow/inductor/148962 -> ciflow/inductor/148962 2025-04-25T04:11:52.5441640Z * [new tag] ciflow/inductor/149003 -> ciflow/inductor/149003 2025-04-25T04:11:52.5442423Z * [new tag] ciflow/inductor/149039 -> ciflow/inductor/149039 2025-04-25T04:11:52.5444203Z * [new tag] ciflow/inductor/149041 -> ciflow/inductor/149041 2025-04-25T04:11:52.5445461Z * [new tag] ciflow/inductor/149055 -> ciflow/inductor/149055 2025-04-25T04:11:52.5446250Z * [new tag] ciflow/inductor/149066 -> ciflow/inductor/149066 2025-04-25T04:11:52.5447020Z * [new tag] ciflow/inductor/149067 -> ciflow/inductor/149067 2025-04-25T04:11:52.5447797Z * [new tag] ciflow/inductor/149068 -> ciflow/inductor/149068 2025-04-25T04:11:52.5448565Z * [new tag] ciflow/inductor/149069 -> ciflow/inductor/149069 2025-04-25T04:11:52.5449347Z * [new tag] ciflow/inductor/149140 -> ciflow/inductor/149140 2025-04-25T04:11:52.5450119Z * [new tag] ciflow/inductor/149167 -> ciflow/inductor/149167 2025-04-25T04:11:52.5450903Z * [new tag] ciflow/inductor/149173 -> ciflow/inductor/149173 2025-04-25T04:11:52.5451684Z * [new tag] ciflow/inductor/149192 -> ciflow/inductor/149192 2025-04-25T04:11:52.5452452Z * [new tag] ciflow/inductor/149267 -> ciflow/inductor/149267 2025-04-25T04:11:52.5453233Z * [new tag] ciflow/inductor/149288 -> ciflow/inductor/149288 2025-04-25T04:11:52.5454000Z * [new tag] ciflow/inductor/149346 -> ciflow/inductor/149346 2025-04-25T04:11:52.5454772Z * [new tag] ciflow/inductor/149348 -> ciflow/inductor/149348 2025-04-25T04:11:52.5455557Z * [new tag] ciflow/inductor/149373 -> ciflow/inductor/149373 2025-04-25T04:11:52.5456327Z * [new tag] ciflow/inductor/149420 -> ciflow/inductor/149420 2025-04-25T04:11:52.5457110Z * [new tag] ciflow/inductor/149426 -> ciflow/inductor/149426 2025-04-25T04:11:52.5458034Z * [new tag] ciflow/inductor/149427 -> ciflow/inductor/149427 2025-04-25T04:11:52.5458830Z * [new tag] ciflow/inductor/149439 -> ciflow/inductor/149439 2025-04-25T04:11:52.5459614Z * [new tag] ciflow/inductor/149486 -> ciflow/inductor/149486 2025-04-25T04:11:52.5460390Z * [new tag] ciflow/inductor/149506 -> ciflow/inductor/149506 2025-04-25T04:11:52.5461182Z * [new tag] ciflow/inductor/149518 -> ciflow/inductor/149518 2025-04-25T04:11:52.5461947Z * [new tag] ciflow/inductor/149547 -> ciflow/inductor/149547 2025-04-25T04:11:52.5462726Z * [new tag] ciflow/inductor/149560 -> ciflow/inductor/149560 2025-04-25T04:11:52.5463503Z * [new tag] ciflow/inductor/149561 -> ciflow/inductor/149561 2025-04-25T04:11:52.5464272Z * [new tag] ciflow/inductor/149562 -> ciflow/inductor/149562 2025-04-25T04:11:52.5465061Z * [new tag] ciflow/inductor/149580 -> ciflow/inductor/149580 2025-04-25T04:11:52.5465835Z * [new tag] ciflow/inductor/149629 -> ciflow/inductor/149629 2025-04-25T04:11:52.5466614Z * [new tag] ciflow/inductor/149643 -> ciflow/inductor/149643 2025-04-25T04:11:52.5467386Z * [new tag] ciflow/inductor/149697 -> ciflow/inductor/149697 2025-04-25T04:11:52.5468167Z * [new tag] ciflow/inductor/149701 -> ciflow/inductor/149701 2025-04-25T04:11:52.5468944Z * [new tag] ciflow/inductor/149706 -> ciflow/inductor/149706 2025-04-25T04:11:52.5469714Z * [new tag] ciflow/inductor/149707 -> ciflow/inductor/149707 2025-04-25T04:11:52.5470488Z * [new tag] ciflow/inductor/149733 -> ciflow/inductor/149733 2025-04-25T04:11:52.5471250Z * [new tag] ciflow/inductor/149748 -> ciflow/inductor/149748 2025-04-25T04:11:52.5472027Z * [new tag] ciflow/inductor/149763 -> ciflow/inductor/149763 2025-04-25T04:11:52.5756870Z * [new tag] ciflow/inductor/149764 -> ciflow/inductor/149764 2025-04-25T04:11:52.5757705Z * [new tag] ciflow/inductor/149769 -> ciflow/inductor/149769 2025-04-25T04:11:52.5758490Z * [new tag] ciflow/inductor/149773 -> ciflow/inductor/149773 2025-04-25T04:11:52.5759260Z * [new tag] ciflow/inductor/149784 -> ciflow/inductor/149784 2025-04-25T04:11:52.5760040Z * [new tag] ciflow/inductor/149898 -> ciflow/inductor/149898 2025-04-25T04:11:52.5760818Z * [new tag] ciflow/inductor/149899 -> ciflow/inductor/149899 2025-04-25T04:11:52.5761593Z * [new tag] ciflow/inductor/149913 -> ciflow/inductor/149913 2025-04-25T04:11:52.5762364Z * [new tag] ciflow/inductor/149949 -> ciflow/inductor/149949 2025-04-25T04:11:52.5763168Z * [new tag] ciflow/inductor/149958 -> ciflow/inductor/149958 2025-04-25T04:11:52.5764069Z * [new tag] ciflow/inductor/149959 -> ciflow/inductor/149959 2025-04-25T04:11:52.5764853Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-04-25T04:11:52.5765619Z * [new tag] ciflow/inductor/149967 -> ciflow/inductor/149967 2025-04-25T04:11:52.5766421Z * [new tag] ciflow/inductor/149998 -> ciflow/inductor/149998 2025-04-25T04:11:52.5767190Z * [new tag] ciflow/inductor/150003 -> ciflow/inductor/150003 2025-04-25T04:11:52.5767968Z * [new tag] ciflow/inductor/150032 -> ciflow/inductor/150032 2025-04-25T04:11:52.5768743Z * [new tag] ciflow/inductor/150044 -> ciflow/inductor/150044 2025-04-25T04:11:52.5769510Z * [new tag] ciflow/inductor/150080 -> ciflow/inductor/150080 2025-04-25T04:11:52.5770290Z * [new tag] ciflow/inductor/150107 -> ciflow/inductor/150107 2025-04-25T04:11:52.5771274Z * [new tag] ciflow/inductor/150108 -> ciflow/inductor/150108 2025-04-25T04:11:52.5772058Z * [new tag] ciflow/inductor/150116 -> ciflow/inductor/150116 2025-04-25T04:11:52.5772852Z * [new tag] ciflow/inductor/150166 -> ciflow/inductor/150166 2025-04-25T04:11:52.5773622Z * [new tag] ciflow/inductor/150241 -> ciflow/inductor/150241 2025-04-25T04:11:52.5774409Z * [new tag] ciflow/inductor/150287 -> ciflow/inductor/150287 2025-04-25T04:11:52.5775178Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-04-25T04:11:52.5775961Z * [new tag] ciflow/inductor/150331 -> ciflow/inductor/150331 2025-04-25T04:11:52.5776728Z * [new tag] ciflow/inductor/150349 -> ciflow/inductor/150349 2025-04-25T04:11:52.5777504Z * [new tag] ciflow/inductor/150355 -> ciflow/inductor/150355 2025-04-25T04:11:52.5778283Z * [new tag] ciflow/inductor/150365 -> ciflow/inductor/150365 2025-04-25T04:11:52.5779056Z * [new tag] ciflow/inductor/150411 -> ciflow/inductor/150411 2025-04-25T04:11:52.5779832Z * [new tag] ciflow/inductor/150415 -> ciflow/inductor/150415 2025-04-25T04:11:52.5780597Z * [new tag] ciflow/inductor/150429 -> ciflow/inductor/150429 2025-04-25T04:11:52.5781376Z * [new tag] ciflow/inductor/150455 -> ciflow/inductor/150455 2025-04-25T04:11:52.5782151Z * [new tag] ciflow/inductor/150466 -> ciflow/inductor/150466 2025-04-25T04:11:52.5782917Z * [new tag] ciflow/inductor/150474 -> ciflow/inductor/150474 2025-04-25T04:11:52.5783702Z * [new tag] ciflow/inductor/150481 -> ciflow/inductor/150481 2025-04-25T04:11:52.5784465Z * [new tag] ciflow/inductor/150483 -> ciflow/inductor/150483 2025-04-25T04:11:52.5785250Z * [new tag] ciflow/inductor/150511 -> ciflow/inductor/150511 2025-04-25T04:11:52.5786173Z * [new tag] ciflow/inductor/150525 -> ciflow/inductor/150525 2025-04-25T04:11:52.5786941Z * [new tag] ciflow/inductor/150527 -> ciflow/inductor/150527 2025-04-25T04:11:52.5787715Z * [new tag] ciflow/inductor/150546 -> ciflow/inductor/150546 2025-04-25T04:11:52.5788492Z * [new tag] ciflow/inductor/150564 -> ciflow/inductor/150564 2025-04-25T04:11:52.5789280Z * [new tag] ciflow/inductor/150567 -> ciflow/inductor/150567 2025-04-25T04:11:52.5790052Z * [new tag] ciflow/inductor/150582 -> ciflow/inductor/150582 2025-04-25T04:11:52.5790838Z * [new tag] ciflow/inductor/150583 -> ciflow/inductor/150583 2025-04-25T04:11:52.5791610Z * [new tag] ciflow/inductor/150634 -> ciflow/inductor/150634 2025-04-25T04:11:52.5792384Z * [new tag] ciflow/inductor/150646 -> ciflow/inductor/150646 2025-04-25T04:11:52.5793162Z * [new tag] ciflow/inductor/150654 -> ciflow/inductor/150654 2025-04-25T04:11:52.5793922Z * [new tag] ciflow/inductor/150669 -> ciflow/inductor/150669 2025-04-25T04:11:52.5794694Z * [new tag] ciflow/inductor/150673 -> ciflow/inductor/150673 2025-04-25T04:11:52.6086127Z * [new tag] ciflow/inductor/150689 -> ciflow/inductor/150689 2025-04-25T04:11:52.6086661Z * [new tag] ciflow/inductor/150704 -> ciflow/inductor/150704 2025-04-25T04:11:52.6087129Z * [new tag] ciflow/inductor/150717 -> ciflow/inductor/150717 2025-04-25T04:11:52.6087587Z * [new tag] ciflow/inductor/150719 -> ciflow/inductor/150719 2025-04-25T04:11:52.6088039Z * [new tag] ciflow/inductor/150720 -> ciflow/inductor/150720 2025-04-25T04:11:52.6089353Z * [new tag] ciflow/inductor/150727 -> ciflow/inductor/150727 2025-04-25T04:11:52.6089852Z * [new tag] ciflow/inductor/150738 -> ciflow/inductor/150738 2025-04-25T04:11:52.6090316Z * [new tag] ciflow/inductor/150739 -> ciflow/inductor/150739 2025-04-25T04:11:52.6090929Z * [new tag] ciflow/inductor/150762 -> ciflow/inductor/150762 2025-04-25T04:11:52.6091435Z * [new tag] ciflow/inductor/150767 -> ciflow/inductor/150767 2025-04-25T04:11:52.6091896Z * [new tag] ciflow/inductor/150787 -> ciflow/inductor/150787 2025-04-25T04:11:52.6092351Z * [new tag] ciflow/inductor/150788 -> ciflow/inductor/150788 2025-04-25T04:11:52.6092822Z * [new tag] ciflow/inductor/150789 -> ciflow/inductor/150789 2025-04-25T04:11:52.6093263Z * [new tag] ciflow/inductor/150790 -> ciflow/inductor/150790 2025-04-25T04:11:52.6093719Z * [new tag] ciflow/inductor/150791 -> ciflow/inductor/150791 2025-04-25T04:11:52.6094183Z * [new tag] ciflow/inductor/150792 -> ciflow/inductor/150792 2025-04-25T04:11:52.6094635Z * [new tag] ciflow/inductor/150793 -> ciflow/inductor/150793 2025-04-25T04:11:52.6095093Z * [new tag] ciflow/inductor/150794 -> ciflow/inductor/150794 2025-04-25T04:11:52.6095537Z * [new tag] ciflow/inductor/150795 -> ciflow/inductor/150795 2025-04-25T04:11:52.6095990Z * [new tag] ciflow/inductor/150796 -> ciflow/inductor/150796 2025-04-25T04:11:52.6096530Z * [new tag] ciflow/inductor/150797 -> ciflow/inductor/150797 2025-04-25T04:11:52.6097018Z * [new tag] ciflow/inductor/150858 -> ciflow/inductor/150858 2025-04-25T04:11:52.6097512Z * [new tag] ciflow/inductor/150869 -> ciflow/inductor/150869 2025-04-25T04:11:52.6097964Z * [new tag] ciflow/inductor/150872 -> ciflow/inductor/150872 2025-04-25T04:11:52.6098599Z * [new tag] ciflow/inductor/150879 -> ciflow/inductor/150879 2025-04-25T04:11:52.6099048Z * [new tag] ciflow/inductor/150899 -> ciflow/inductor/150899 2025-04-25T04:11:52.6099513Z * [new tag] ciflow/inductor/150904 -> ciflow/inductor/150904 2025-04-25T04:11:52.6099985Z * [new tag] ciflow/inductor/150905 -> ciflow/inductor/150905 2025-04-25T04:11:52.6100428Z * [new tag] ciflow/inductor/150906 -> ciflow/inductor/150906 2025-04-25T04:11:52.6100880Z * [new tag] ciflow/inductor/150907 -> ciflow/inductor/150907 2025-04-25T04:11:52.6101325Z * [new tag] ciflow/inductor/150908 -> ciflow/inductor/150908 2025-04-25T04:11:52.6101775Z * [new tag] ciflow/inductor/150909 -> ciflow/inductor/150909 2025-04-25T04:11:52.6102293Z * [new tag] ciflow/inductor/150910 -> ciflow/inductor/150910 2025-04-25T04:11:52.6102823Z * [new tag] ciflow/inductor/150937 -> ciflow/inductor/150937 2025-04-25T04:11:52.6103334Z * [new tag] ciflow/inductor/150944 -> ciflow/inductor/150944 2025-04-25T04:11:52.6103782Z * [new tag] ciflow/inductor/150954 -> ciflow/inductor/150954 2025-04-25T04:11:52.6104237Z * [new tag] ciflow/inductor/150962 -> ciflow/inductor/150962 2025-04-25T04:11:52.6104688Z * [new tag] ciflow/inductor/150968 -> ciflow/inductor/150968 2025-04-25T04:11:52.6105130Z * [new tag] ciflow/inductor/150971 -> ciflow/inductor/150971 2025-04-25T04:11:52.6105593Z * [new tag] ciflow/inductor/151002 -> ciflow/inductor/151002 2025-04-25T04:11:52.6106041Z * [new tag] ciflow/inductor/151009 -> ciflow/inductor/151009 2025-04-25T04:11:52.6106605Z * [new tag] ciflow/inductor/151023 -> ciflow/inductor/151023 2025-04-25T04:11:52.6107063Z * [new tag] ciflow/inductor/151038 -> ciflow/inductor/151038 2025-04-25T04:11:52.6107537Z * [new tag] ciflow/inductor/151041 -> ciflow/inductor/151041 2025-04-25T04:11:52.6107997Z * [new tag] ciflow/inductor/151056 -> ciflow/inductor/151056 2025-04-25T04:11:52.6108578Z * [new tag] ciflow/inductor/151067 -> ciflow/inductor/151067 2025-04-25T04:11:52.6109075Z * [new tag] ciflow/inductor/151109 -> ciflow/inductor/151109 2025-04-25T04:11:52.6109522Z * [new tag] ciflow/inductor/151115 -> ciflow/inductor/151115 2025-04-25T04:11:52.6109976Z * [new tag] ciflow/inductor/151120 -> ciflow/inductor/151120 2025-04-25T04:11:52.6431190Z * [new tag] ciflow/inductor/151135 -> ciflow/inductor/151135 2025-04-25T04:11:52.6431805Z * [new tag] ciflow/inductor/151184 -> ciflow/inductor/151184 2025-04-25T04:11:52.6432300Z * [new tag] ciflow/inductor/151210 -> ciflow/inductor/151210 2025-04-25T04:11:52.6432758Z * [new tag] ciflow/inductor/151217 -> ciflow/inductor/151217 2025-04-25T04:11:52.6433226Z * [new tag] ciflow/inductor/151225 -> ciflow/inductor/151225 2025-04-25T04:11:52.6433681Z * [new tag] ciflow/inductor/151256 -> ciflow/inductor/151256 2025-04-25T04:11:52.6434128Z * [new tag] ciflow/inductor/151265 -> ciflow/inductor/151265 2025-04-25T04:11:52.6434585Z * [new tag] ciflow/inductor/151271 -> ciflow/inductor/151271 2025-04-25T04:11:52.6435041Z * [new tag] ciflow/inductor/151277 -> ciflow/inductor/151277 2025-04-25T04:11:52.6435499Z * [new tag] ciflow/inductor/151278 -> ciflow/inductor/151278 2025-04-25T04:11:52.6435964Z * [new tag] ciflow/inductor/151315 -> ciflow/inductor/151315 2025-04-25T04:11:52.6436610Z * [new tag] ciflow/inductor/151318 -> ciflow/inductor/151318 2025-04-25T04:11:52.6437127Z * [new tag] ciflow/inductor/151343 -> ciflow/inductor/151343 2025-04-25T04:11:52.6437632Z * [new tag] ciflow/inductor/151349 -> ciflow/inductor/151349 2025-04-25T04:11:52.6438085Z * [new tag] ciflow/inductor/151357 -> ciflow/inductor/151357 2025-04-25T04:11:52.6438542Z * [new tag] ciflow/inductor/151405 -> ciflow/inductor/151405 2025-04-25T04:11:52.6438990Z * [new tag] ciflow/inductor/151406 -> ciflow/inductor/151406 2025-04-25T04:11:52.6439450Z * [new tag] ciflow/inductor/151407 -> ciflow/inductor/151407 2025-04-25T04:11:52.6439914Z * [new tag] ciflow/inductor/151421 -> ciflow/inductor/151421 2025-04-25T04:11:52.6440376Z * [new tag] ciflow/inductor/151422 -> ciflow/inductor/151422 2025-04-25T04:11:52.6440840Z * [new tag] ciflow/inductor/151481 -> ciflow/inductor/151481 2025-04-25T04:11:52.6441293Z * [new tag] ciflow/inductor/151495 -> ciflow/inductor/151495 2025-04-25T04:11:52.6441758Z * [new tag] ciflow/inductor/151497 -> ciflow/inductor/151497 2025-04-25T04:11:52.6442216Z * [new tag] ciflow/inductor/151530 -> ciflow/inductor/151530 2025-04-25T04:11:52.6442721Z * [new tag] ciflow/inductor/151533 -> ciflow/inductor/151533 2025-04-25T04:11:52.6443228Z * [new tag] ciflow/inductor/151548 -> ciflow/inductor/151548 2025-04-25T04:11:52.6443694Z * [new tag] ciflow/inductor/151568 -> ciflow/inductor/151568 2025-04-25T04:11:52.6444238Z * [new tag] ciflow/inductor/151581 -> ciflow/inductor/151581 2025-04-25T04:11:52.6444825Z * [new tag] ciflow/inductor/151585 -> ciflow/inductor/151585 2025-04-25T04:11:52.6445307Z * [new tag] ciflow/inductor/151588 -> ciflow/inductor/151588 2025-04-25T04:11:52.6445761Z * [new tag] ciflow/inductor/151604 -> ciflow/inductor/151604 2025-04-25T04:11:52.6446222Z * [new tag] ciflow/inductor/151608 -> ciflow/inductor/151608 2025-04-25T04:11:52.6446690Z * [new tag] ciflow/inductor/151620 -> ciflow/inductor/151620 2025-04-25T04:11:52.6447141Z * [new tag] ciflow/inductor/151655 -> ciflow/inductor/151655 2025-04-25T04:11:52.6447600Z * [new tag] ciflow/inductor/151677 -> ciflow/inductor/151677 2025-04-25T04:11:52.6448053Z * [new tag] ciflow/inductor/151679 -> ciflow/inductor/151679 2025-04-25T04:11:52.6448566Z * [new tag] ciflow/inductor/151691 -> ciflow/inductor/151691 2025-04-25T04:11:52.6449085Z * [new tag] ciflow/inductor/151711 -> ciflow/inductor/151711 2025-04-25T04:11:52.6449552Z * [new tag] ciflow/inductor/151713 -> ciflow/inductor/151713 2025-04-25T04:11:52.6450002Z * [new tag] ciflow/inductor/151718 -> ciflow/inductor/151718 2025-04-25T04:11:52.6450447Z * [new tag] ciflow/inductor/151719 -> ciflow/inductor/151719 2025-04-25T04:11:52.6450904Z * [new tag] ciflow/inductor/151728 -> ciflow/inductor/151728 2025-04-25T04:11:52.6451351Z * [new tag] ciflow/inductor/151731 -> ciflow/inductor/151731 2025-04-25T04:11:52.6451811Z * [new tag] ciflow/inductor/151756 -> ciflow/inductor/151756 2025-04-25T04:11:52.6452264Z * [new tag] ciflow/inductor/151764 -> ciflow/inductor/151764 2025-04-25T04:11:52.6452715Z * [new tag] ciflow/inductor/151770 -> ciflow/inductor/151770 2025-04-25T04:11:52.6453172Z * [new tag] ciflow/inductor/151773 -> ciflow/inductor/151773 2025-04-25T04:11:52.6453724Z * [new tag] ciflow/inductor/151774 -> ciflow/inductor/151774 2025-04-25T04:11:52.6454184Z * [new tag] ciflow/inductor/151775 -> ciflow/inductor/151775 2025-04-25T04:11:52.6454723Z * [new tag] ciflow/inductor/151777 -> ciflow/inductor/151777 2025-04-25T04:11:52.6756701Z * [new tag] ciflow/inductor/151778 -> ciflow/inductor/151778 2025-04-25T04:11:52.6757231Z * [new tag] ciflow/inductor/151822 -> ciflow/inductor/151822 2025-04-25T04:11:52.6757691Z * [new tag] ciflow/inductor/151825 -> ciflow/inductor/151825 2025-04-25T04:11:52.6758152Z * [new tag] ciflow/inductor/151833 -> ciflow/inductor/151833 2025-04-25T04:11:52.6758617Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-04-25T04:11:52.6759100Z * [new tag] ciflow/inductor/151852 -> ciflow/inductor/151852 2025-04-25T04:11:52.6759589Z * [new tag] ciflow/inductor/151854 -> ciflow/inductor/151854 2025-04-25T04:11:52.6760033Z * [new tag] ciflow/inductor/151860 -> ciflow/inductor/151860 2025-04-25T04:11:52.6760483Z * [new tag] ciflow/inductor/151875 -> ciflow/inductor/151875 2025-04-25T04:11:52.6760946Z * [new tag] ciflow/inductor/151885 -> ciflow/inductor/151885 2025-04-25T04:11:52.6761406Z * [new tag] ciflow/inductor/151900 -> ciflow/inductor/151900 2025-04-25T04:11:52.6761859Z * [new tag] ciflow/inductor/151919 -> ciflow/inductor/151919 2025-04-25T04:11:52.6762309Z * [new tag] ciflow/inductor/151920 -> ciflow/inductor/151920 2025-04-25T04:11:52.6762771Z * [new tag] ciflow/inductor/151923 -> ciflow/inductor/151923 2025-04-25T04:11:52.6763224Z * [new tag] ciflow/inductor/151924 -> ciflow/inductor/151924 2025-04-25T04:11:52.6763953Z * [new tag] ciflow/inductor/151928 -> ciflow/inductor/151928 2025-04-25T04:11:52.6764430Z * [new tag] ciflow/inductor/151935 -> ciflow/inductor/151935 2025-04-25T04:11:52.6764880Z * [new tag] ciflow/inductor/151941 -> ciflow/inductor/151941 2025-04-25T04:11:52.6765344Z * [new tag] ciflow/inductor/151948 -> ciflow/inductor/151948 2025-04-25T04:11:52.6765808Z * [new tag] ciflow/inductor/151956 -> ciflow/inductor/151956 2025-04-25T04:11:52.6766254Z * [new tag] ciflow/inductor/151958 -> ciflow/inductor/151958 2025-04-25T04:11:52.6766707Z * [new tag] ciflow/inductor/151962 -> ciflow/inductor/151962 2025-04-25T04:11:52.6767155Z * [new tag] ciflow/inductor/151968 -> ciflow/inductor/151968 2025-04-25T04:11:52.6767614Z * [new tag] ciflow/inductor/151970 -> ciflow/inductor/151970 2025-04-25T04:11:52.6768067Z * [new tag] ciflow/inductor/151971 -> ciflow/inductor/151971 2025-04-25T04:11:52.6768530Z * [new tag] ciflow/inductor/151988 -> ciflow/inductor/151988 2025-04-25T04:11:52.6768991Z * [new tag] ciflow/inductor/151989 -> ciflow/inductor/151989 2025-04-25T04:11:52.6769436Z * [new tag] ciflow/inductor/151990 -> ciflow/inductor/151990 2025-04-25T04:11:52.6769886Z * [new tag] ciflow/inductor/152011 -> ciflow/inductor/152011 2025-04-25T04:11:52.6770328Z * [new tag] ciflow/inductor/152015 -> ciflow/inductor/152015 2025-04-25T04:11:52.6770777Z * [new tag] ciflow/inductor/152035 -> ciflow/inductor/152035 2025-04-25T04:11:52.6771239Z * [new tag] ciflow/inductor/152037 -> ciflow/inductor/152037 2025-04-25T04:11:52.6771690Z * [new tag] ciflow/inductor/152038 -> ciflow/inductor/152038 2025-04-25T04:11:52.6772149Z * [new tag] ciflow/inductor/152041 -> ciflow/inductor/152041 2025-04-25T04:11:52.6772725Z * [new tag] ciflow/inductor/152043 -> ciflow/inductor/152043 2025-04-25T04:11:52.6773190Z * [new tag] ciflow/inductor/152048 -> ciflow/inductor/152048 2025-04-25T04:11:52.6773659Z * [new tag] ciflow/inductor/152060 -> ciflow/inductor/152060 2025-04-25T04:11:52.6774113Z * [new tag] ciflow/inductor/152061 -> ciflow/inductor/152061 2025-04-25T04:11:52.6774579Z * [new tag] ciflow/inductor/152062 -> ciflow/inductor/152062 2025-04-25T04:11:52.6775032Z * [new tag] ciflow/inductor/152066 -> ciflow/inductor/152066 2025-04-25T04:11:52.6775504Z * [new tag] ciflow/inductor/152071 -> ciflow/inductor/152071 2025-04-25T04:11:52.6775954Z * [new tag] ciflow/inductor/152072 -> ciflow/inductor/152072 2025-04-25T04:11:52.6776415Z * [new tag] ciflow/inductor/152073 -> ciflow/inductor/152073 2025-04-25T04:11:52.6776876Z * [new tag] ciflow/inductor/152092 -> ciflow/inductor/152092 2025-04-25T04:11:52.6777321Z * [new tag] ciflow/inductor/152103 -> ciflow/inductor/152103 2025-04-25T04:11:52.6777773Z * [new tag] ciflow/inductor/152119 -> ciflow/inductor/152119 2025-04-25T04:11:52.6778219Z * [new tag] ciflow/inductor/152120 -> ciflow/inductor/152120 2025-04-25T04:11:52.6778674Z * [new tag] ciflow/inductor/152125 -> ciflow/inductor/152125 2025-04-25T04:11:52.6779129Z * [new tag] ciflow/inductor/152136 -> ciflow/inductor/152136 2025-04-25T04:11:52.7060978Z * [new tag] ciflow/inductor/152137 -> ciflow/inductor/152137 2025-04-25T04:11:52.7061857Z * [new tag] ciflow/inductor/152139 -> ciflow/inductor/152139 2025-04-25T04:11:52.7062880Z * [new tag] ciflow/inductor/152142 -> ciflow/inductor/152142 2025-04-25T04:11:52.7063673Z * [new tag] ciflow/inductor/152145 -> ciflow/inductor/152145 2025-04-25T04:11:52.7064476Z * [new tag] ciflow/inductor/152146 -> ciflow/inductor/152146 2025-04-25T04:11:52.7065240Z * [new tag] ciflow/inductor/152147 -> ciflow/inductor/152147 2025-04-25T04:11:52.7066018Z * [new tag] ciflow/inductor/152148 -> ciflow/inductor/152148 2025-04-25T04:11:52.7066780Z * [new tag] ciflow/inductor/152149 -> ciflow/inductor/152149 2025-04-25T04:11:52.7067558Z * [new tag] ciflow/inductor/152153 -> ciflow/inductor/152153 2025-04-25T04:11:52.7068326Z * [new tag] ciflow/inductor/152159 -> ciflow/inductor/152159 2025-04-25T04:11:52.7069112Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-04-25T04:11:52.7069931Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-04-25T04:11:52.7070714Z * [new tag] ciflow/inductor/88106 -> ciflow/inductor/88106 2025-04-25T04:11:52.7071480Z * [new tag] ciflow/inductor/88196 -> ciflow/inductor/88196 2025-04-25T04:11:52.7072237Z * [new tag] ciflow/inductor/88998 -> ciflow/inductor/88998 2025-04-25T04:11:52.7073014Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-04-25T04:11:52.7073850Z * [new tag] ciflow/linux-aarch64/125888 -> ciflow/linux-aarch64/125888 2025-04-25T04:11:52.7074717Z * [new tag] ciflow/linux-aarch64/126050 -> ciflow/linux-aarch64/126050 2025-04-25T04:11:52.7075585Z * [new tag] ciflow/linux-aarch64/126054 -> ciflow/linux-aarch64/126054 2025-04-25T04:11:52.7076546Z * [new tag] ciflow/linux-aarch64/133297 -> ciflow/linux-aarch64/133297 2025-04-25T04:11:52.7078539Z * [new tag] ciflow/linux-aarch64/133315 -> ciflow/linux-aarch64/133315 2025-04-25T04:11:52.7079553Z * [new tag] ciflow/linux-aarch64/133392 -> ciflow/linux-aarch64/133392 2025-04-25T04:11:52.7080462Z * [new tag] ciflow/linux-aarch64/133419 -> ciflow/linux-aarch64/133419 2025-04-25T04:11:52.7081326Z * [new tag] ciflow/linux-aarch64/133423 -> ciflow/linux-aarch64/133423 2025-04-25T04:11:52.7082180Z * [new tag] ciflow/linux-aarch64/133667 -> ciflow/linux-aarch64/133667 2025-04-25T04:11:52.7084196Z * [new tag] ciflow/linux-aarch64/133753 -> ciflow/linux-aarch64/133753 2025-04-25T04:11:52.7085064Z * [new tag] ciflow/linux-aarch64/135792 -> ciflow/linux-aarch64/135792 2025-04-25T04:11:52.7085916Z * [new tag] ciflow/linux-aarch64/136355 -> ciflow/linux-aarch64/136355 2025-04-25T04:11:52.7086803Z * [new tag] ciflow/linux-aarch64/137568 -> ciflow/linux-aarch64/137568 2025-04-25T04:11:52.7087675Z * [new tag] ciflow/linux-aarch64/138388 -> ciflow/linux-aarch64/138388 2025-04-25T04:11:52.7089136Z * [new tag] ciflow/linux-aarch64/140159 -> ciflow/linux-aarch64/140159 2025-04-25T04:11:52.7090460Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-04-25T04:11:52.7091422Z * [new tag] ciflow/linux-aarch64/146895 -> ciflow/linux-aarch64/146895 2025-04-25T04:11:52.7092297Z * [new tag] ciflow/linux-aarch64/147073 -> ciflow/linux-aarch64/147073 2025-04-25T04:11:52.7093152Z * [new tag] ciflow/linux-aarch64/147341 -> ciflow/linux-aarch64/147341 2025-04-25T04:11:52.7094021Z * [new tag] ciflow/linux-aarch64/147359 -> ciflow/linux-aarch64/147359 2025-04-25T04:11:52.7095903Z * [new tag] ciflow/linux-aarch64/147498 -> ciflow/linux-aarch64/147498 2025-04-25T04:11:52.7096905Z * [new tag] ciflow/linux-aarch64/147763 -> ciflow/linux-aarch64/147763 2025-04-25T04:11:52.7097787Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-04-25T04:11:52.7098639Z * [new tag] ciflow/linux-aarch64/147917 -> ciflow/linux-aarch64/147917 2025-04-25T04:11:52.7099517Z * [new tag] ciflow/linux-aarch64/148163 -> ciflow/linux-aarch64/148163 2025-04-25T04:11:52.7101406Z * [new tag] ciflow/linux-aarch64/148173 -> ciflow/linux-aarch64/148173 2025-04-25T04:11:52.7102266Z * [new tag] ciflow/linux-aarch64/148424 -> ciflow/linux-aarch64/148424 2025-04-25T04:11:52.7103144Z * [new tag] ciflow/linux-aarch64/150095 -> ciflow/linux-aarch64/150095 2025-04-25T04:11:52.7104001Z * [new tag] ciflow/linux-aarch64/150525 -> ciflow/linux-aarch64/150525 2025-04-25T04:11:52.7104868Z * [new tag] ciflow/linux-aarch64/151896 -> ciflow/linux-aarch64/151896 2025-04-25T04:11:52.7105730Z * [new tag] ciflow/linux-aarch64/152001 -> ciflow/linux-aarch64/152001 2025-04-25T04:11:52.7395329Z * [new tag] ciflow/mps/102148 -> ciflow/mps/102148 2025-04-25T04:11:52.7396071Z * [new tag] ciflow/mps/119496 -> ciflow/mps/119496 2025-04-25T04:11:52.7396762Z * [new tag] ciflow/mps/120076 -> ciflow/mps/120076 2025-04-25T04:11:52.7397452Z * [new tag] ciflow/mps/133423 -> ciflow/mps/133423 2025-04-25T04:11:52.7398188Z * [new tag] ciflow/mps/133667 -> ciflow/mps/133667 2025-04-25T04:11:52.7398867Z * [new tag] ciflow/mps/138640 -> ciflow/mps/138640 2025-04-25T04:11:52.7399555Z * [new tag] ciflow/mps/140159 -> ciflow/mps/140159 2025-04-25T04:11:52.7400228Z * [new tag] ciflow/mps/142202 -> ciflow/mps/142202 2025-04-25T04:11:52.7400941Z * [new tag] ciflow/mps/143666 -> ciflow/mps/143666 2025-04-25T04:11:52.7401825Z * [new tag] ciflow/mps/144405 -> ciflow/mps/144405 2025-04-25T04:11:52.7402513Z * [new tag] ciflow/mps/145955 -> ciflow/mps/145955 2025-04-25T04:11:52.7403213Z * [new tag] ciflow/mps/146436 -> ciflow/mps/146436 2025-04-25T04:11:52.7403973Z * [new tag] ciflow/mps/146989 -> ciflow/mps/146989 2025-04-25T04:11:52.7404667Z * [new tag] ciflow/mps/147583 -> ciflow/mps/147583 2025-04-25T04:11:52.7405345Z * [new tag] ciflow/mps/147644 -> ciflow/mps/147644 2025-04-25T04:11:52.7406064Z * [new tag] ciflow/mps/147893 -> ciflow/mps/147893 2025-04-25T04:11:52.7406748Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-04-25T04:11:52.7407427Z * [new tag] ciflow/mps/148415 -> ciflow/mps/148415 2025-04-25T04:11:52.7408114Z * [new tag] ciflow/mps/149173 -> ciflow/mps/149173 2025-04-25T04:11:52.7408836Z * [new tag] ciflow/mps/150195 -> ciflow/mps/150195 2025-04-25T04:11:52.7409569Z * [new tag] ciflow/mps/150464 -> ciflow/mps/150464 2025-04-25T04:11:52.7410288Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-04-25T04:11:52.7410975Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-04-25T04:11:52.7411694Z * [new tag] ciflow/mps/150964 -> ciflow/mps/150964 2025-04-25T04:11:52.7412397Z * [new tag] ciflow/mps/151177 -> ciflow/mps/151177 2025-04-25T04:11:52.7413095Z * [new tag] ciflow/mps/151292 -> ciflow/mps/151292 2025-04-25T04:11:52.7413771Z * [new tag] ciflow/mps/151439 -> ciflow/mps/151439 2025-04-25T04:11:52.7414603Z * [new tag] ciflow/mps/151822 -> ciflow/mps/151822 2025-04-25T04:11:52.7415368Z * [new tag] ciflow/mps/151913 -> ciflow/mps/151913 2025-04-25T04:11:52.7416091Z * [new tag] ciflow/mps/151916 -> ciflow/mps/151916 2025-04-25T04:11:52.7416855Z * [new tag] ciflow/nightly/149192 -> ciflow/nightly/149192 2025-04-25T04:11:52.7417648Z * [new tag] ciflow/nightly/151567 -> ciflow/nightly/151567 2025-04-25T04:11:52.7418426Z * [new tag] ciflow/nightly/151581 -> ciflow/nightly/151581 2025-04-25T04:11:52.7419242Z * [new tag] ciflow/op-benchmark/151581 -> ciflow/op-benchmark/151581 2025-04-25T04:11:52.7420100Z * [new tag] ciflow/op-benchmark/151585 -> ciflow/op-benchmark/151585 2025-04-25T04:11:52.7421090Z * [new tag] ciflow/periodic-rocm-mi300/150580 -> ciflow/periodic-rocm-mi300/150580 2025-04-25T04:11:52.7422205Z * [new tag] ciflow/periodic-rocm-mi300/151368 -> ciflow/periodic-rocm-mi300/151368 2025-04-25T04:11:52.7423316Z * [new tag] ciflow/periodic-rocm-mi300/151581 -> ciflow/periodic-rocm-mi300/151581 2025-04-25T04:11:52.7424428Z * [new tag] ciflow/periodic-rocm-mi300/151708 -> ciflow/periodic-rocm-mi300/151708 2025-04-25T04:11:52.7425514Z * [new tag] ciflow/periodic-rocm-mi300/151977 -> ciflow/periodic-rocm-mi300/151977 2025-04-25T04:11:52.7426483Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-04-25T04:11:52.7427291Z * [new tag] ciflow/periodic/123020 -> ciflow/periodic/123020 2025-04-25T04:11:52.7428105Z * [new tag] ciflow/periodic/141309 -> ciflow/periodic/141309 2025-04-25T04:11:52.7428882Z * [new tag] ciflow/periodic/141730 -> ciflow/periodic/141730 2025-04-25T04:11:52.7429669Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-04-25T04:11:52.7430591Z * [new tag] ciflow/periodic/146903 -> ciflow/periodic/146903 2025-04-25T04:11:52.7431371Z * [new tag] ciflow/periodic/148760 -> ciflow/periodic/148760 2025-04-25T04:11:52.7432155Z * [new tag] ciflow/periodic/149192 -> ciflow/periodic/149192 2025-04-25T04:11:52.7432937Z * [new tag] ciflow/periodic/150411 -> ciflow/periodic/150411 2025-04-25T04:11:52.7433720Z * [new tag] ciflow/periodic/150422 -> ciflow/periodic/150422 2025-04-25T04:11:52.7726441Z * [new tag] ciflow/periodic/150434 -> ciflow/periodic/150434 2025-04-25T04:11:52.7727284Z * [new tag] ciflow/periodic/150705 -> ciflow/periodic/150705 2025-04-25T04:11:52.7728085Z * [new tag] ciflow/periodic/150895 -> ciflow/periodic/150895 2025-04-25T04:11:52.7728870Z * [new tag] ciflow/periodic/151292 -> ciflow/periodic/151292 2025-04-25T04:11:52.7729679Z * [new tag] ciflow/periodic/151297 -> ciflow/periodic/151297 2025-04-25T04:11:52.7730473Z * [new tag] ciflow/periodic/151368 -> ciflow/periodic/151368 2025-04-25T04:11:52.7731249Z * [new tag] ciflow/periodic/151581 -> ciflow/periodic/151581 2025-04-25T04:11:52.7732030Z * [new tag] ciflow/periodic/151585 -> ciflow/periodic/151585 2025-04-25T04:11:52.7732847Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-04-25T04:11:52.7733667Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-04-25T04:11:52.7734451Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-04-25T04:11:52.7735218Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-04-25T04:11:52.7736077Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-04-25T04:11:52.7737205Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-04-25T04:11:52.7739769Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-04-25T04:11:52.7740736Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-04-25T04:11:52.7742273Z * [new tag] ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc -> ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc 2025-04-25T04:11:52.7743812Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-04-25T04:11:52.7744792Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-04-25T04:11:52.7745759Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-04-25T04:11:52.7746609Z * [new tag] ciflow/rocm-mi300/139975 -> ciflow/rocm-mi300/139975 2025-04-25T04:11:52.7747397Z * [new tag] ciflow/rocm-mi300/150580 -> ciflow/rocm-mi300/150580 2025-04-25T04:11:52.7748188Z * [new tag] ciflow/rocm-mi300/151368 -> ciflow/rocm-mi300/151368 2025-04-25T04:11:52.7748973Z * [new tag] ciflow/rocm-mi300/151465 -> ciflow/rocm-mi300/151465 2025-04-25T04:11:52.7749756Z * [new tag] ciflow/rocm-mi300/151581 -> ciflow/rocm-mi300/151581 2025-04-25T04:11:52.7767064Z * [new tag] ciflow/rocm-mi300/151708 -> ciflow/rocm-mi300/151708 2025-04-25T04:11:52.7767879Z * [new tag] ciflow/rocm-mi300/151727 -> ciflow/rocm-mi300/151727 2025-04-25T04:11:52.7768642Z * [new tag] ciflow/rocm/124424 -> ciflow/rocm/124424 2025-04-25T04:11:52.7770592Z * [new tag] ciflow/rocm/130522 -> ciflow/rocm/130522 2025-04-25T04:11:52.7771316Z * [new tag] ciflow/rocm/139975 -> ciflow/rocm/139975 2025-04-25T04:11:52.7772036Z * [new tag] ciflow/rocm/141309 -> ciflow/rocm/141309 2025-04-25T04:11:52.7772962Z * [new tag] ciflow/rocm/142859 -> ciflow/rocm/142859 2025-04-25T04:11:52.7773657Z * [new tag] ciflow/rocm/144572 -> ciflow/rocm/144572 2025-04-25T04:11:52.7774344Z * [new tag] ciflow/rocm/145475 -> ciflow/rocm/145475 2025-04-25T04:11:52.7775056Z * [new tag] ciflow/rocm/145584 -> ciflow/rocm/145584 2025-04-25T04:11:52.7775760Z * [new tag] ciflow/rocm/145685 -> ciflow/rocm/145685 2025-04-25T04:11:52.7776453Z * [new tag] ciflow/rocm/146903 -> ciflow/rocm/146903 2025-04-25T04:11:52.7777153Z * [new tag] ciflow/rocm/148037 -> ciflow/rocm/148037 2025-04-25T04:11:52.7777843Z * [new tag] ciflow/rocm/148355 -> ciflow/rocm/148355 2025-04-25T04:11:52.7778558Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-04-25T04:11:52.7779248Z * [new tag] ciflow/rocm/148672 -> ciflow/rocm/148672 2025-04-25T04:11:52.7779950Z * [new tag] ciflow/rocm/148864 -> ciflow/rocm/148864 2025-04-25T04:11:52.7780654Z * [new tag] ciflow/rocm/148880 -> ciflow/rocm/148880 2025-04-25T04:11:52.7781342Z * [new tag] ciflow/rocm/149039 -> ciflow/rocm/149039 2025-04-25T04:11:52.7782050Z * [new tag] ciflow/rocm/149041 -> ciflow/rocm/149041 2025-04-25T04:11:52.7782740Z * [new tag] ciflow/rocm/149466 -> ciflow/rocm/149466 2025-04-25T04:11:52.7783435Z * [new tag] ciflow/rocm/149506 -> ciflow/rocm/149506 2025-04-25T04:11:52.7784138Z * [new tag] ciflow/rocm/151305 -> ciflow/rocm/151305 2025-04-25T04:11:52.7784825Z * [new tag] ciflow/rocm/151326 -> ciflow/rocm/151326 2025-04-25T04:11:52.8069647Z * [new tag] ciflow/rocm/151368 -> ciflow/rocm/151368 2025-04-25T04:11:52.8070397Z * [new tag] ciflow/rocm/151439 -> ciflow/rocm/151439 2025-04-25T04:11:52.8072183Z * [new tag] ciflow/rocm/151465 -> ciflow/rocm/151465 2025-04-25T04:11:52.8072884Z * [new tag] ciflow/rocm/151581 -> ciflow/rocm/151581 2025-04-25T04:11:52.8073591Z * [new tag] ciflow/rocm/151727 -> ciflow/rocm/151727 2025-04-25T04:11:52.8074287Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-04-25T04:11:52.8074976Z * [new tag] ciflow/rocm/152133 -> ciflow/rocm/152133 2025-04-25T04:11:52.8075660Z * [new tag] ciflow/s390/142346 -> ciflow/s390/142346 2025-04-25T04:11:52.8076331Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-04-25T04:11:52.8078018Z * [new tag] ciflow/s390/150116 -> ciflow/s390/150116 2025-04-25T04:11:52.8078712Z * [new tag] ciflow/s390/150195 -> ciflow/s390/150195 2025-04-25T04:11:52.8079388Z * [new tag] ciflow/s390/150297 -> ciflow/s390/150297 2025-04-25T04:11:52.8080064Z * [new tag] ciflow/s390/151581 -> ciflow/s390/151581 2025-04-25T04:11:52.8080740Z * [new tag] ciflow/s390/151585 -> ciflow/s390/151585 2025-04-25T04:11:52.8081436Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-04-25T04:11:52.8082148Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-04-25T04:11:52.8084675Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-04-25T04:11:52.8086122Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-04-25T04:11:52.8086853Z * [new tag] ciflow/slow/139975 -> ciflow/slow/139975 2025-04-25T04:11:52.8087710Z * [new tag] ciflow/slow/146903 -> ciflow/slow/146903 2025-04-25T04:11:52.8088466Z * [new tag] ciflow/slow/149192 -> ciflow/slow/149192 2025-04-25T04:11:52.8090144Z * [new tag] ciflow/slow/151207 -> ciflow/slow/151207 2025-04-25T04:11:52.8090839Z * [new tag] ciflow/slow/151581 -> ciflow/slow/151581 2025-04-25T04:11:52.8091531Z * [new tag] ciflow/slow/151585 -> ciflow/slow/151585 2025-04-25T04:11:52.8092238Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-04-25T04:11:52.8092958Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-04-25T04:11:52.8093666Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-04-25T04:11:52.8095407Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-04-25T04:11:52.8096130Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-04-25T04:11:52.8096845Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-04-25T04:11:52.8097570Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-04-25T04:11:52.8098286Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-04-25T04:11:52.8099655Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-04-25T04:11:52.8102031Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-04-25T04:11:52.8102767Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-04-25T04:11:52.8103495Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-04-25T04:11:52.8104370Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-04-25T04:11:52.8105100Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-04-25T04:11:52.8107532Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-04-25T04:11:52.8108999Z * [new tag] ciflow/torchao/149192 -> ciflow/torchao/149192 2025-04-25T04:11:52.8109799Z * [new tag] ciflow/torchbench/151581 -> ciflow/torchbench/151581 2025-04-25T04:11:52.8110662Z * [new tag] ciflow/torchbench/151585 -> ciflow/torchbench/151585 2025-04-25T04:11:52.8111460Z * [new tag] ciflow/trunk/108303 -> ciflow/trunk/108303 2025-04-25T04:11:52.8113197Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-04-25T04:11:52.8113925Z * [new tag] ciflow/trunk/120076 -> ciflow/trunk/120076 2025-04-25T04:11:52.8114642Z * [new tag] ciflow/trunk/121445 -> ciflow/trunk/121445 2025-04-25T04:11:52.8115382Z * [new tag] ciflow/trunk/123020 -> ciflow/trunk/123020 2025-04-25T04:11:52.8116099Z * [new tag] ciflow/trunk/124424 -> ciflow/trunk/124424 2025-04-25T04:11:52.8116809Z * [new tag] ciflow/trunk/124490 -> ciflow/trunk/124490 2025-04-25T04:11:52.8400513Z * [new tag] ciflow/trunk/125806 -> ciflow/trunk/125806 2025-04-25T04:11:52.8401026Z * [new tag] ciflow/trunk/125888 -> ciflow/trunk/125888 2025-04-25T04:11:52.8401455Z * [new tag] ciflow/trunk/125995 -> ciflow/trunk/125995 2025-04-25T04:11:52.8401895Z * [new tag] ciflow/trunk/126050 -> ciflow/trunk/126050 2025-04-25T04:11:52.8402324Z * [new tag] ciflow/trunk/126054 -> ciflow/trunk/126054 2025-04-25T04:11:52.8402795Z * [new tag] ciflow/trunk/127171 -> ciflow/trunk/127171 2025-04-25T04:11:52.8403435Z * [new tag] ciflow/trunk/127919 -> ciflow/trunk/127919 2025-04-25T04:11:52.8403950Z * [new tag] ciflow/trunk/129352 -> ciflow/trunk/129352 2025-04-25T04:11:52.8404387Z * [new tag] ciflow/trunk/130141 -> ciflow/trunk/130141 2025-04-25T04:11:52.8404812Z * [new tag] ciflow/trunk/130522 -> ciflow/trunk/130522 2025-04-25T04:11:52.8405246Z * [new tag] ciflow/trunk/130752 -> ciflow/trunk/130752 2025-04-25T04:11:52.8405667Z * [new tag] ciflow/trunk/133044 -> ciflow/trunk/133044 2025-04-25T04:11:52.8406097Z * [new tag] ciflow/trunk/133289 -> ciflow/trunk/133289 2025-04-25T04:11:52.8406523Z * [new tag] ciflow/trunk/133296 -> ciflow/trunk/133296 2025-04-25T04:11:52.8406960Z * [new tag] ciflow/trunk/133297 -> ciflow/trunk/133297 2025-04-25T04:11:52.8407385Z * [new tag] ciflow/trunk/133315 -> ciflow/trunk/133315 2025-04-25T04:11:52.8407815Z * [new tag] ciflow/trunk/133392 -> ciflow/trunk/133392 2025-04-25T04:11:52.8408254Z * [new tag] ciflow/trunk/133419 -> ciflow/trunk/133419 2025-04-25T04:11:52.8408670Z * [new tag] ciflow/trunk/133423 -> ciflow/trunk/133423 2025-04-25T04:11:52.8409092Z * [new tag] ciflow/trunk/133667 -> ciflow/trunk/133667 2025-04-25T04:11:52.8409507Z * [new tag] ciflow/trunk/133753 -> ciflow/trunk/133753 2025-04-25T04:11:52.8409924Z * [new tag] ciflow/trunk/135631 -> ciflow/trunk/135631 2025-04-25T04:11:52.8410353Z * [new tag] ciflow/trunk/136780 -> ciflow/trunk/136780 2025-04-25T04:11:52.8410897Z * [new tag] ciflow/trunk/136824 -> ciflow/trunk/136824 2025-04-25T04:11:52.8411336Z * [new tag] ciflow/trunk/136835 -> ciflow/trunk/136835 2025-04-25T04:11:52.8411760Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-04-25T04:11:52.8412187Z * [new tag] ciflow/trunk/138436 -> ciflow/trunk/138436 2025-04-25T04:11:52.8412618Z * [new tag] ciflow/trunk/138626 -> ciflow/trunk/138626 2025-04-25T04:11:52.8413037Z * [new tag] ciflow/trunk/138684 -> ciflow/trunk/138684 2025-04-25T04:11:52.8413471Z * [new tag] ciflow/trunk/138834 -> ciflow/trunk/138834 2025-04-25T04:11:52.8413893Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-04-25T04:11:52.8414315Z * [new tag] ciflow/trunk/139094 -> ciflow/trunk/139094 2025-04-25T04:11:52.8414738Z * [new tag] ciflow/trunk/139171 -> ciflow/trunk/139171 2025-04-25T04:11:52.8415161Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-04-25T04:11:52.8415583Z * [new tag] ciflow/trunk/139975 -> ciflow/trunk/139975 2025-04-25T04:11:52.8415999Z * [new tag] ciflow/trunk/140159 -> ciflow/trunk/140159 2025-04-25T04:11:52.8416421Z * [new tag] ciflow/trunk/140200 -> ciflow/trunk/140200 2025-04-25T04:11:52.8416845Z * [new tag] ciflow/trunk/140323 -> ciflow/trunk/140323 2025-04-25T04:11:52.8417264Z * [new tag] ciflow/trunk/140365 -> ciflow/trunk/140365 2025-04-25T04:11:52.8417690Z * [new tag] ciflow/trunk/140756 -> ciflow/trunk/140756 2025-04-25T04:11:52.8418113Z * [new tag] ciflow/trunk/140979 -> ciflow/trunk/140979 2025-04-25T04:11:52.8418555Z * [new tag] ciflow/trunk/141309 -> ciflow/trunk/141309 2025-04-25T04:11:52.8418980Z * [new tag] ciflow/trunk/141730 -> ciflow/trunk/141730 2025-04-25T04:11:52.8419495Z * [new tag] ciflow/trunk/141842 -> ciflow/trunk/141842 2025-04-25T04:11:52.8419929Z * [new tag] ciflow/trunk/141961 -> ciflow/trunk/141961 2025-04-25T04:11:52.8420352Z * [new tag] ciflow/trunk/142326 -> ciflow/trunk/142326 2025-04-25T04:11:52.8420782Z * [new tag] ciflow/trunk/142346 -> ciflow/trunk/142346 2025-04-25T04:11:52.8421209Z * [new tag] ciflow/trunk/142372 -> ciflow/trunk/142372 2025-04-25T04:11:52.8421636Z * [new tag] ciflow/trunk/142859 -> ciflow/trunk/142859 2025-04-25T04:11:52.8422063Z * [new tag] ciflow/trunk/143666 -> ciflow/trunk/143666 2025-04-25T04:11:52.8422483Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-04-25T04:11:52.8754126Z * [new tag] ciflow/trunk/143833 -> ciflow/trunk/143833 2025-04-25T04:11:52.8754592Z * [new tag] ciflow/trunk/143896 -> ciflow/trunk/143896 2025-04-25T04:11:52.8755020Z * [new tag] ciflow/trunk/144019 -> ciflow/trunk/144019 2025-04-25T04:11:52.8755452Z * [new tag] ciflow/trunk/144268 -> ciflow/trunk/144268 2025-04-25T04:11:52.8755866Z * [new tag] ciflow/trunk/144272 -> ciflow/trunk/144272 2025-04-25T04:11:52.8756288Z * [new tag] ciflow/trunk/144293 -> ciflow/trunk/144293 2025-04-25T04:11:52.8756712Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-04-25T04:11:52.8757135Z * [new tag] ciflow/trunk/144616 -> ciflow/trunk/144616 2025-04-25T04:11:52.8757557Z * [new tag] ciflow/trunk/144721 -> ciflow/trunk/144721 2025-04-25T04:11:52.8757971Z * [new tag] ciflow/trunk/144756 -> ciflow/trunk/144756 2025-04-25T04:11:52.8758740Z * [new tag] ciflow/trunk/144844 -> ciflow/trunk/144844 2025-04-25T04:11:52.8759223Z * [new tag] ciflow/trunk/144925 -> ciflow/trunk/144925 2025-04-25T04:11:52.8759690Z * [new tag] ciflow/trunk/144992 -> ciflow/trunk/144992 2025-04-25T04:11:52.8760105Z * [new tag] ciflow/trunk/145136 -> ciflow/trunk/145136 2025-04-25T04:11:52.8760535Z * [new tag] ciflow/trunk/145153 -> ciflow/trunk/145153 2025-04-25T04:11:52.8760964Z * [new tag] ciflow/trunk/145224 -> ciflow/trunk/145224 2025-04-25T04:11:52.8761384Z * [new tag] ciflow/trunk/145559 -> ciflow/trunk/145559 2025-04-25T04:11:52.8761819Z * [new tag] ciflow/trunk/145677 -> ciflow/trunk/145677 2025-04-25T04:11:52.8762238Z * [new tag] ciflow/trunk/145719 -> ciflow/trunk/145719 2025-04-25T04:11:52.8762665Z * [new tag] ciflow/trunk/145936 -> ciflow/trunk/145936 2025-04-25T04:11:52.8763099Z * [new tag] ciflow/trunk/145979 -> ciflow/trunk/145979 2025-04-25T04:11:52.8763514Z * [new tag] ciflow/trunk/146055 -> ciflow/trunk/146055 2025-04-25T04:11:52.8764003Z * [new tag] ciflow/trunk/146090 -> ciflow/trunk/146090 2025-04-25T04:11:52.8764423Z * [new tag] ciflow/trunk/146115 -> ciflow/trunk/146115 2025-04-25T04:11:52.8764871Z * [new tag] ciflow/trunk/146182 -> ciflow/trunk/146182 2025-04-25T04:11:52.8765291Z * [new tag] ciflow/trunk/146275 -> ciflow/trunk/146275 2025-04-25T04:11:52.8765706Z * [new tag] ciflow/trunk/146289 -> ciflow/trunk/146289 2025-04-25T04:11:52.8766131Z * [new tag] ciflow/trunk/146335 -> ciflow/trunk/146335 2025-04-25T04:11:52.8766554Z * [new tag] ciflow/trunk/146489 -> ciflow/trunk/146489 2025-04-25T04:11:52.8767114Z * [new tag] ciflow/trunk/146530 -> ciflow/trunk/146530 2025-04-25T04:11:52.8767534Z * [new tag] ciflow/trunk/146561 -> ciflow/trunk/146561 2025-04-25T04:11:52.8767964Z * [new tag] ciflow/trunk/146562 -> ciflow/trunk/146562 2025-04-25T04:11:52.8768394Z * [new tag] ciflow/trunk/146622 -> ciflow/trunk/146622 2025-04-25T04:11:52.8768818Z * [new tag] ciflow/trunk/146661 -> ciflow/trunk/146661 2025-04-25T04:11:52.8769241Z * [new tag] ciflow/trunk/146718 -> ciflow/trunk/146718 2025-04-25T04:11:52.8769656Z * [new tag] ciflow/trunk/146777 -> ciflow/trunk/146777 2025-04-25T04:11:52.8770082Z * [new tag] ciflow/trunk/146845 -> ciflow/trunk/146845 2025-04-25T04:11:52.8770512Z * [new tag] ciflow/trunk/146874 -> ciflow/trunk/146874 2025-04-25T04:11:52.8770931Z * [new tag] ciflow/trunk/146903 -> ciflow/trunk/146903 2025-04-25T04:11:52.8771364Z * [new tag] ciflow/trunk/146942 -> ciflow/trunk/146942 2025-04-25T04:11:52.8771781Z * [new tag] ciflow/trunk/147053 -> ciflow/trunk/147053 2025-04-25T04:11:52.8772220Z * [new tag] ciflow/trunk/147095 -> ciflow/trunk/147095 2025-04-25T04:11:52.8772653Z * [new tag] ciflow/trunk/147155 -> ciflow/trunk/147155 2025-04-25T04:11:52.8773081Z * [new tag] ciflow/trunk/147314 -> ciflow/trunk/147314 2025-04-25T04:11:52.8773518Z * [new tag] ciflow/trunk/147368 -> ciflow/trunk/147368 2025-04-25T04:11:52.8773936Z * [new tag] ciflow/trunk/147433 -> ciflow/trunk/147433 2025-04-25T04:11:52.8774367Z * [new tag] ciflow/trunk/147470 -> ciflow/trunk/147470 2025-04-25T04:11:52.8774870Z * [new tag] ciflow/trunk/147481 -> ciflow/trunk/147481 2025-04-25T04:11:52.8775313Z * [new tag] ciflow/trunk/147498 -> ciflow/trunk/147498 2025-04-25T04:11:52.8775753Z * [new tag] ciflow/trunk/147583 -> ciflow/trunk/147583 2025-04-25T04:11:52.8776174Z * [new tag] ciflow/trunk/147664 -> ciflow/trunk/147664 2025-04-25T04:11:52.8776605Z * [new tag] ciflow/trunk/147670 -> ciflow/trunk/147670 2025-04-25T04:11:52.9096450Z * [new tag] ciflow/trunk/147758 -> ciflow/trunk/147758 2025-04-25T04:11:52.9096944Z * [new tag] ciflow/trunk/147797 -> ciflow/trunk/147797 2025-04-25T04:11:52.9097383Z * [new tag] ciflow/trunk/147808 -> ciflow/trunk/147808 2025-04-25T04:11:52.9097846Z * [new tag] ciflow/trunk/147820 -> ciflow/trunk/147820 2025-04-25T04:11:52.9098291Z * [new tag] ciflow/trunk/147881 -> ciflow/trunk/147881 2025-04-25T04:11:52.9098735Z * [new tag] ciflow/trunk/147902 -> ciflow/trunk/147902 2025-04-25T04:11:52.9099150Z * [new tag] ciflow/trunk/147910 -> ciflow/trunk/147910 2025-04-25T04:11:52.9099574Z * [new tag] ciflow/trunk/147917 -> ciflow/trunk/147917 2025-04-25T04:11:52.9099994Z * [new tag] ciflow/trunk/148024 -> ciflow/trunk/148024 2025-04-25T04:11:52.9100422Z * [new tag] ciflow/trunk/148037 -> ciflow/trunk/148037 2025-04-25T04:11:52.9100840Z * [new tag] ciflow/trunk/148104 -> ciflow/trunk/148104 2025-04-25T04:11:52.9101254Z * [new tag] ciflow/trunk/148140 -> ciflow/trunk/148140 2025-04-25T04:11:52.9101675Z * [new tag] ciflow/trunk/148163 -> ciflow/trunk/148163 2025-04-25T04:11:52.9102184Z * [new tag] ciflow/trunk/148173 -> ciflow/trunk/148173 2025-04-25T04:11:52.9102888Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-04-25T04:11:52.9103319Z * [new tag] ciflow/trunk/148206 -> ciflow/trunk/148206 2025-04-25T04:11:52.9103738Z * [new tag] ciflow/trunk/148380 -> ciflow/trunk/148380 2025-04-25T04:11:52.9104175Z * [new tag] ciflow/trunk/148419 -> ciflow/trunk/148419 2025-04-25T04:11:52.9104595Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-04-25T04:11:52.9105033Z * [new tag] ciflow/trunk/148502 -> ciflow/trunk/148502 2025-04-25T04:11:52.9105449Z * [new tag] ciflow/trunk/148590 -> ciflow/trunk/148590 2025-04-25T04:11:52.9105873Z * [new tag] ciflow/trunk/148605 -> ciflow/trunk/148605 2025-04-25T04:11:52.9106291Z * [new tag] ciflow/trunk/148611 -> ciflow/trunk/148611 2025-04-25T04:11:52.9106712Z * [new tag] ciflow/trunk/148684 -> ciflow/trunk/148684 2025-04-25T04:11:52.9107144Z * [new tag] ciflow/trunk/148753 -> ciflow/trunk/148753 2025-04-25T04:11:52.9107560Z * [new tag] ciflow/trunk/148773 -> ciflow/trunk/148773 2025-04-25T04:11:52.9108068Z * [new tag] ciflow/trunk/148864 -> ciflow/trunk/148864 2025-04-25T04:11:52.9108540Z * [new tag] ciflow/trunk/148880 -> ciflow/trunk/148880 2025-04-25T04:11:52.9108994Z * [new tag] ciflow/trunk/148893 -> ciflow/trunk/148893 2025-04-25T04:11:52.9109421Z * [new tag] ciflow/trunk/148900 -> ciflow/trunk/148900 2025-04-25T04:11:52.9109832Z * [new tag] ciflow/trunk/148903 -> ciflow/trunk/148903 2025-04-25T04:11:52.9110259Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-04-25T04:11:52.9110817Z * [new tag] ciflow/trunk/148994 -> ciflow/trunk/148994 2025-04-25T04:11:52.9111251Z * [new tag] ciflow/trunk/149041 -> ciflow/trunk/149041 2025-04-25T04:11:52.9111680Z * [new tag] ciflow/trunk/149069 -> ciflow/trunk/149069 2025-04-25T04:11:52.9112092Z * [new tag] ciflow/trunk/149113 -> ciflow/trunk/149113 2025-04-25T04:11:52.9112526Z * [new tag] ciflow/trunk/149114 -> ciflow/trunk/149114 2025-04-25T04:11:52.9112946Z * [new tag] ciflow/trunk/149144 -> ciflow/trunk/149144 2025-04-25T04:11:52.9113375Z * [new tag] ciflow/trunk/149192 -> ciflow/trunk/149192 2025-04-25T04:11:52.9113808Z * [new tag] ciflow/trunk/149213 -> ciflow/trunk/149213 2025-04-25T04:11:52.9114365Z * [new tag] ciflow/trunk/149254 -> ciflow/trunk/149254 2025-04-25T04:11:52.9114836Z * [new tag] ciflow/trunk/149330 -> ciflow/trunk/149330 2025-04-25T04:11:52.9115265Z * [new tag] ciflow/trunk/149338 -> ciflow/trunk/149338 2025-04-25T04:11:52.9115685Z * [new tag] ciflow/trunk/149346 -> ciflow/trunk/149346 2025-04-25T04:11:52.9116099Z * [new tag] ciflow/trunk/149348 -> ciflow/trunk/149348 2025-04-25T04:11:52.9116527Z * [new tag] ciflow/trunk/149373 -> ciflow/trunk/149373 2025-04-25T04:11:52.9116959Z * [new tag] ciflow/trunk/149427 -> ciflow/trunk/149427 2025-04-25T04:11:52.9117377Z * [new tag] ciflow/trunk/149486 -> ciflow/trunk/149486 2025-04-25T04:11:52.9117802Z * [new tag] ciflow/trunk/149602 -> ciflow/trunk/149602 2025-04-25T04:11:52.9118216Z * [new tag] ciflow/trunk/149744 -> ciflow/trunk/149744 2025-04-25T04:11:52.9118641Z * [new tag] ciflow/trunk/149764 -> ciflow/trunk/149764 2025-04-25T04:11:52.9802768Z * [new tag] ciflow/trunk/149769 -> ciflow/trunk/149769 2025-04-25T04:11:52.9803562Z * [new tag] ciflow/trunk/149814 -> ciflow/trunk/149814 2025-04-25T04:11:52.9804163Z * [new tag] ciflow/trunk/149843 -> ciflow/trunk/149843 2025-04-25T04:11:52.9804688Z * [new tag] ciflow/trunk/149949 -> ciflow/trunk/149949 2025-04-25T04:11:52.9805170Z * [new tag] ciflow/trunk/149967 -> ciflow/trunk/149967 2025-04-25T04:11:52.9805658Z * [new tag] ciflow/trunk/150032 -> ciflow/trunk/150032 2025-04-25T04:11:52.9806199Z * [new tag] ciflow/trunk/150079 -> ciflow/trunk/150079 2025-04-25T04:11:52.9806680Z * [new tag] ciflow/trunk/150095 -> ciflow/trunk/150095 2025-04-25T04:11:52.9807159Z * [new tag] ciflow/trunk/150105 -> ciflow/trunk/150105 2025-04-25T04:11:52.9807662Z * [new tag] ciflow/trunk/150107 -> ciflow/trunk/150107 2025-04-25T04:11:52.9808147Z * [new tag] ciflow/trunk/150108 -> ciflow/trunk/150108 2025-04-25T04:11:52.9808621Z * [new tag] ciflow/trunk/150116 -> ciflow/trunk/150116 2025-04-25T04:11:52.9809101Z * [new tag] ciflow/trunk/150166 -> ciflow/trunk/150166 2025-04-25T04:11:52.9809577Z * [new tag] ciflow/trunk/150227 -> ciflow/trunk/150227 2025-04-25T04:11:52.9810062Z * [new tag] ciflow/trunk/150297 -> ciflow/trunk/150297 2025-04-25T04:11:52.9810542Z * [new tag] ciflow/trunk/150318 -> ciflow/trunk/150318 2025-04-25T04:11:52.9811028Z * [new tag] ciflow/trunk/150338 -> ciflow/trunk/150338 2025-04-25T04:11:52.9811546Z * [new tag] ciflow/trunk/150365 -> ciflow/trunk/150365 2025-04-25T04:11:52.9812173Z * [new tag] ciflow/trunk/150383 -> ciflow/trunk/150383 2025-04-25T04:11:52.9812674Z * [new tag] ciflow/trunk/150415 -> ciflow/trunk/150415 2025-04-25T04:11:52.9813150Z * [new tag] ciflow/trunk/150429 -> ciflow/trunk/150429 2025-04-25T04:11:52.9813644Z * [new tag] ciflow/trunk/150511 -> ciflow/trunk/150511 2025-04-25T04:11:52.9814076Z * [new tag] ciflow/trunk/150546 -> ciflow/trunk/150546 2025-04-25T04:11:52.9814497Z * [new tag] ciflow/trunk/150583 -> ciflow/trunk/150583 2025-04-25T04:11:52.9814929Z * [new tag] ciflow/trunk/150634 -> ciflow/trunk/150634 2025-04-25T04:11:52.9815348Z * [new tag] ciflow/trunk/150669 -> ciflow/trunk/150669 2025-04-25T04:11:52.9815778Z * [new tag] ciflow/trunk/150678 -> ciflow/trunk/150678 2025-04-25T04:11:52.9816220Z * [new tag] ciflow/trunk/150705 -> ciflow/trunk/150705 2025-04-25T04:11:52.9816653Z * [new tag] ciflow/trunk/150717 -> ciflow/trunk/150717 2025-04-25T04:11:52.9817089Z * [new tag] ciflow/trunk/150719 -> ciflow/trunk/150719 2025-04-25T04:11:52.9817518Z * [new tag] ciflow/trunk/150732 -> ciflow/trunk/150732 2025-04-25T04:11:52.9817958Z * [new tag] ciflow/trunk/150738 -> ciflow/trunk/150738 2025-04-25T04:11:52.9818379Z * [new tag] ciflow/trunk/150739 -> ciflow/trunk/150739 2025-04-25T04:11:52.9818861Z * [new tag] ciflow/trunk/150827 -> ciflow/trunk/150827 2025-04-25T04:11:52.9819338Z * [new tag] ciflow/trunk/150872 -> ciflow/trunk/150872 2025-04-25T04:11:52.9819810Z * [new tag] ciflow/trunk/150897 -> ciflow/trunk/150897 2025-04-25T04:11:52.9820235Z * [new tag] ciflow/trunk/150904 -> ciflow/trunk/150904 2025-04-25T04:11:52.9820659Z * [new tag] ciflow/trunk/150905 -> ciflow/trunk/150905 2025-04-25T04:11:52.9821830Z * [new tag] ciflow/trunk/150937 -> ciflow/trunk/150937 2025-04-25T04:11:52.9822264Z * [new tag] ciflow/trunk/150954 -> ciflow/trunk/150954 2025-04-25T04:11:52.9822686Z * [new tag] ciflow/trunk/150979 -> ciflow/trunk/150979 2025-04-25T04:11:52.9823116Z * [new tag] ciflow/trunk/151002 -> ciflow/trunk/151002 2025-04-25T04:11:52.9823538Z * [new tag] ciflow/trunk/151023 -> ciflow/trunk/151023 2025-04-25T04:11:52.9823967Z * [new tag] ciflow/trunk/151034 -> ciflow/trunk/151034 2025-04-25T04:11:52.9824388Z * [new tag] ciflow/trunk/151041 -> ciflow/trunk/151041 2025-04-25T04:11:52.9824813Z * [new tag] ciflow/trunk/151069 -> ciflow/trunk/151069 2025-04-25T04:11:52.9825316Z * [new tag] ciflow/trunk/151079 -> ciflow/trunk/151079 2025-04-25T04:11:52.9825802Z * [new tag] ciflow/trunk/151109 -> ciflow/trunk/151109 2025-04-25T04:11:52.9826282Z * [new tag] ciflow/trunk/151125 -> ciflow/trunk/151125 2025-04-25T04:11:52.9826698Z * [new tag] ciflow/trunk/151126 -> ciflow/trunk/151126 2025-04-25T04:11:52.9827123Z * [new tag] ciflow/trunk/151146 -> ciflow/trunk/151146 2025-04-25T04:11:53.0159854Z * [new tag] ciflow/trunk/151150 -> ciflow/trunk/151150 2025-04-25T04:11:53.0160332Z * [new tag] ciflow/trunk/151177 -> ciflow/trunk/151177 2025-04-25T04:11:53.0160779Z * [new tag] ciflow/trunk/151184 -> ciflow/trunk/151184 2025-04-25T04:11:53.0161209Z * [new tag] ciflow/trunk/151207 -> ciflow/trunk/151207 2025-04-25T04:11:53.0161990Z * [new tag] ciflow/trunk/151210 -> ciflow/trunk/151210 2025-04-25T04:11:53.0162486Z * [new tag] ciflow/trunk/151221 -> ciflow/trunk/151221 2025-04-25T04:11:53.0162900Z * [new tag] ciflow/trunk/151226 -> ciflow/trunk/151226 2025-04-25T04:11:53.0163324Z * [new tag] ciflow/trunk/151253 -> ciflow/trunk/151253 2025-04-25T04:11:53.0163744Z * [new tag] ciflow/trunk/151256 -> ciflow/trunk/151256 2025-04-25T04:11:53.0164320Z * [new tag] ciflow/trunk/151292 -> ciflow/trunk/151292 2025-04-25T04:11:53.0164749Z * [new tag] ciflow/trunk/151305 -> ciflow/trunk/151305 2025-04-25T04:11:53.0165165Z * [new tag] ciflow/trunk/151318 -> ciflow/trunk/151318 2025-04-25T04:11:53.0165590Z * [new tag] ciflow/trunk/151343 -> ciflow/trunk/151343 2025-04-25T04:11:53.0166010Z * [new tag] ciflow/trunk/151349 -> ciflow/trunk/151349 2025-04-25T04:11:53.0166444Z * [new tag] ciflow/trunk/151357 -> ciflow/trunk/151357 2025-04-25T04:11:53.0166860Z * [new tag] ciflow/trunk/151407 -> ciflow/trunk/151407 2025-04-25T04:11:53.0167284Z * [new tag] ciflow/trunk/151411 -> ciflow/trunk/151411 2025-04-25T04:11:53.0167847Z * [new tag] ciflow/trunk/151439 -> ciflow/trunk/151439 2025-04-25T04:11:53.0168301Z * [new tag] ciflow/trunk/151456 -> ciflow/trunk/151456 2025-04-25T04:11:53.0168725Z * [new tag] ciflow/trunk/151464 -> ciflow/trunk/151464 2025-04-25T04:11:53.0169142Z * [new tag] ciflow/trunk/151473 -> ciflow/trunk/151473 2025-04-25T04:11:53.0169560Z * [new tag] ciflow/trunk/151481 -> ciflow/trunk/151481 2025-04-25T04:11:53.0169982Z * [new tag] ciflow/trunk/151527 -> ciflow/trunk/151527 2025-04-25T04:11:53.0170403Z * [new tag] ciflow/trunk/151530 -> ciflow/trunk/151530 2025-04-25T04:11:53.0170976Z * [new tag] ciflow/trunk/151548 -> ciflow/trunk/151548 2025-04-25T04:11:53.0171392Z * [new tag] ciflow/trunk/151557 -> ciflow/trunk/151557 2025-04-25T04:11:53.0171811Z * [new tag] ciflow/trunk/151567 -> ciflow/trunk/151567 2025-04-25T04:11:53.0172252Z * [new tag] ciflow/trunk/151581 -> ciflow/trunk/151581 2025-04-25T04:11:53.0172667Z * [new tag] ciflow/trunk/151585 -> ciflow/trunk/151585 2025-04-25T04:11:53.0173094Z * [new tag] ciflow/trunk/151596 -> ciflow/trunk/151596 2025-04-25T04:11:53.0173659Z * [new tag] ciflow/trunk/151647 -> ciflow/trunk/151647 2025-04-25T04:11:53.0174084Z * [new tag] ciflow/trunk/151655 -> ciflow/trunk/151655 2025-04-25T04:11:53.0174551Z * [new tag] ciflow/trunk/151676 -> ciflow/trunk/151676 2025-04-25T04:11:53.0174987Z * [new tag] ciflow/trunk/151677 -> ciflow/trunk/151677 2025-04-25T04:11:53.0175430Z * [new tag] ciflow/trunk/151691 -> ciflow/trunk/151691 2025-04-25T04:11:53.0175860Z * [new tag] ciflow/trunk/151728 -> ciflow/trunk/151728 2025-04-25T04:11:53.0176309Z * [new tag] ciflow/trunk/151752 -> ciflow/trunk/151752 2025-04-25T04:11:53.0176734Z * [new tag] ciflow/trunk/151764 -> ciflow/trunk/151764 2025-04-25T04:11:53.0177175Z * [new tag] ciflow/trunk/151774 -> ciflow/trunk/151774 2025-04-25T04:11:53.0177613Z * [new tag] ciflow/trunk/151777 -> ciflow/trunk/151777 2025-04-25T04:11:53.0178040Z * [new tag] ciflow/trunk/151795 -> ciflow/trunk/151795 2025-04-25T04:11:53.0178484Z * [new tag] ciflow/trunk/151817 -> ciflow/trunk/151817 2025-04-25T04:11:53.0179682Z * [new tag] ciflow/trunk/151849 -> ciflow/trunk/151849 2025-04-25T04:11:53.0180214Z * [new tag] ciflow/trunk/151850 -> ciflow/trunk/151850 2025-04-25T04:11:53.0180634Z * [new tag] ciflow/trunk/151852 -> ciflow/trunk/151852 2025-04-25T04:11:53.0181065Z * [new tag] ciflow/trunk/151875 -> ciflow/trunk/151875 2025-04-25T04:11:53.0181490Z * [new tag] ciflow/trunk/151920 -> ciflow/trunk/151920 2025-04-25T04:11:53.0181909Z * [new tag] ciflow/trunk/151943 -> ciflow/trunk/151943 2025-04-25T04:11:53.0182343Z * [new tag] ciflow/trunk/151968 -> ciflow/trunk/151968 2025-04-25T04:11:53.0182766Z * [new tag] ciflow/trunk/151974 -> ciflow/trunk/151974 2025-04-25T04:11:53.0183192Z * [new tag] ciflow/trunk/152026 -> ciflow/trunk/152026 2025-04-25T04:11:53.0538005Z * [new tag] ciflow/trunk/152030 -> ciflow/trunk/152030 2025-04-25T04:11:53.0538529Z * [new tag] ciflow/trunk/152038 -> ciflow/trunk/152038 2025-04-25T04:11:53.0538967Z * [new tag] ciflow/trunk/152041 -> ciflow/trunk/152041 2025-04-25T04:11:53.0539465Z * [new tag] ciflow/trunk/152045 -> ciflow/trunk/152045 2025-04-25T04:11:53.0539942Z * [new tag] ciflow/trunk/152048 -> ciflow/trunk/152048 2025-04-25T04:11:53.0540378Z * [new tag] ciflow/trunk/152060 -> ciflow/trunk/152060 2025-04-25T04:11:53.0540798Z * [new tag] ciflow/trunk/152062 -> ciflow/trunk/152062 2025-04-25T04:11:53.0541228Z * [new tag] ciflow/trunk/152066 -> ciflow/trunk/152066 2025-04-25T04:11:53.0541649Z * [new tag] ciflow/trunk/152069 -> ciflow/trunk/152069 2025-04-25T04:11:53.0542074Z * [new tag] ciflow/trunk/152076 -> ciflow/trunk/152076 2025-04-25T04:11:53.0542714Z * [new tag] ciflow/trunk/152092 -> ciflow/trunk/152092 2025-04-25T04:11:53.0543134Z * [new tag] ciflow/trunk/152103 -> ciflow/trunk/152103 2025-04-25T04:11:53.0543572Z * [new tag] ciflow/trunk/152111 -> ciflow/trunk/152111 2025-04-25T04:11:53.0543998Z * [new tag] ciflow/trunk/152125 -> ciflow/trunk/152125 2025-04-25T04:11:53.0544435Z * [new tag] ciflow/trunk/152133 -> ciflow/trunk/152133 2025-04-25T04:11:53.0544864Z * [new tag] ciflow/trunk/152139 -> ciflow/trunk/152139 2025-04-25T04:11:53.0545342Z * [new tag] ciflow/trunk/152145 -> ciflow/trunk/152145 2025-04-25T04:11:53.0545822Z * [new tag] ciflow/trunk/152148 -> ciflow/trunk/152148 2025-04-25T04:11:53.0546238Z * [new tag] ciflow/trunk/152149 -> ciflow/trunk/152149 2025-04-25T04:11:53.0546674Z * [new tag] ciflow/trunk/152151 -> ciflow/trunk/152151 2025-04-25T04:11:53.0547097Z * [new tag] ciflow/trunk/70978 -> ciflow/trunk/70978 2025-04-25T04:11:53.0547529Z * [new tag] ciflow/trunk/70979 -> ciflow/trunk/70979 2025-04-25T04:11:53.0547961Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-04-25T04:11:53.0548404Z * [new tag] ciflow/unstable/146104 -> ciflow/unstable/146104 2025-04-25T04:11:53.0548853Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-04-25T04:11:53.0549267Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-04-25T04:11:53.0549708Z * [new tag] ciflow/xpu/140365 -> ciflow/xpu/140365 2025-04-25T04:11:53.0550115Z * [new tag] ciflow/xpu/140372 -> ciflow/xpu/140372 2025-04-25T04:11:53.0550657Z * [new tag] ciflow/xpu/143833 -> ciflow/xpu/143833 2025-04-25T04:11:53.0551123Z * [new tag] ciflow/xpu/147355 -> ciflow/xpu/147355 2025-04-25T04:11:53.0551549Z * [new tag] ciflow/xpu/147498 -> ciflow/xpu/147498 2025-04-25T04:11:53.0552016Z * [new tag] ciflow/xpu/147583 -> ciflow/xpu/147583 2025-04-25T04:11:53.0552426Z * [new tag] ciflow/xpu/147593 -> ciflow/xpu/147593 2025-04-25T04:11:53.0552844Z * [new tag] ciflow/xpu/147664 -> ciflow/xpu/147664 2025-04-25T04:11:53.0553249Z * [new tag] ciflow/xpu/148864 -> ciflow/xpu/148864 2025-04-25T04:11:53.0553666Z * [new tag] ciflow/xpu/148880 -> ciflow/xpu/148880 2025-04-25T04:11:53.0554074Z * [new tag] ciflow/xpu/149113 -> ciflow/xpu/149113 2025-04-25T04:11:53.0554490Z * [new tag] ciflow/xpu/149114 -> ciflow/xpu/149114 2025-04-25T04:11:53.0554913Z * [new tag] ciflow/xpu/150095 -> ciflow/xpu/150095 2025-04-25T04:11:53.0555319Z * [new tag] ciflow/xpu/150525 -> ciflow/xpu/150525 2025-04-25T04:11:53.0555738Z * [new tag] ciflow/xpu/150673 -> ciflow/xpu/150673 2025-04-25T04:11:53.0556143Z * [new tag] ciflow/xpu/150827 -> ciflow/xpu/150827 2025-04-25T04:11:53.0556557Z * [new tag] ciflow/xpu/150927 -> ciflow/xpu/150927 2025-04-25T04:11:53.0556969Z * [new tag] ciflow/xpu/150983 -> ciflow/xpu/150983 2025-04-25T04:11:53.0557432Z * [new tag] ciflow/xpu/151116 -> ciflow/xpu/151116 2025-04-25T04:11:53.0557902Z * [new tag] ciflow/xpu/151226 -> ciflow/xpu/151226 2025-04-25T04:11:53.0558304Z * [new tag] ciflow/xpu/151420 -> ciflow/xpu/151420 2025-04-25T04:11:53.0558721Z * [new tag] ciflow/xpu/151439 -> ciflow/xpu/151439 2025-04-25T04:11:53.0559240Z * [new tag] ciflow/xpu/151533 -> ciflow/xpu/151533 2025-04-25T04:11:53.0559670Z * [new tag] ciflow/xpu/151560 -> ciflow/xpu/151560 2025-04-25T04:11:53.0560090Z * [new tag] ciflow/xpu/151581 -> ciflow/xpu/151581 2025-04-25T04:11:53.0560494Z * [new tag] ciflow/xpu/151596 -> ciflow/xpu/151596 2025-04-25T04:11:53.0961586Z * [new tag] ciflow/xpu/151655 -> ciflow/xpu/151655 2025-04-25T04:11:53.0962061Z * [new tag] ciflow/xpu/151767 -> ciflow/xpu/151767 2025-04-25T04:11:53.0962483Z * [new tag] ciflow/xpu/151777 -> ciflow/xpu/151777 2025-04-25T04:11:53.0962913Z * [new tag] ciflow/xpu/151976 -> ciflow/xpu/151976 2025-04-25T04:11:53.0963350Z * [new tag] ciflow/xpu/152001 -> ciflow/xpu/152001 2025-04-25T04:11:53.0963769Z * [new tag] cslpull75 -> cslpull75 2025-04-25T04:11:53.0964248Z * [new tag] cslpull76 -> cslpull76 2025-04-25T04:11:53.0964643Z * [new tag] cslpull77 -> cslpull77 2025-04-25T04:11:53.0965036Z * [new tag] cslpull78 -> cslpull78 2025-04-25T04:11:53.0965410Z * [new tag] cslpull79 -> cslpull79 2025-04-25T04:11:53.0965790Z * [new tag] cslpull80 -> cslpull80 2025-04-25T04:11:53.0966170Z * [new tag] cslpull81 -> cslpull81 2025-04-25T04:11:53.0966553Z * [new tag] cslpull82 -> cslpull82 2025-04-25T04:11:53.0966928Z * [new tag] cslpull83 -> cslpull83 2025-04-25T04:11:53.0967312Z * [new tag] cslpull84 -> cslpull84 2025-04-25T04:11:53.0967878Z * [new tag] cslpull85 -> cslpull85 2025-04-25T04:11:53.0968269Z * [new tag] cslpull86 -> cslpull86 2025-04-25T04:11:53.0968655Z * [new tag] cslpull87 -> cslpull87 2025-04-25T04:11:53.0969022Z * [new tag] cslpull88 -> cslpull88 2025-04-25T04:11:53.0969398Z * [new tag] cslpull89 -> cslpull89 2025-04-25T04:11:53.0969800Z * [new tag] cslpull90 -> cslpull90 2025-04-25T04:11:53.0970171Z * [new tag] cslpull91 -> cslpull91 2025-04-25T04:11:53.0970552Z * [new tag] cslpull92 -> cslpull92 2025-04-25T04:11:53.0970922Z * [new tag] flight_5 -> flight_5 2025-04-25T04:11:53.0971307Z * [new tag] flight_5.1 -> flight_5.1 2025-04-25T04:11:53.0971695Z * [new tag] flight_5.2 -> flight_5.2 2025-04-25T04:11:53.0972072Z * [new tag] flight_5.3 -> flight_5.3 2025-04-25T04:11:53.0972445Z * [new tag] forpull1 -> forpull1 2025-04-25T04:11:53.0972844Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-04-25T04:11:53.0973288Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-04-25T04:11:53.0973715Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-04-25T04:11:53.0974146Z * [new tag] nightly-binary -> nightly-binary 2025-04-25T04:11:53.0974591Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-04-25T04:11:53.0975020Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-04-25T04:11:53.0975420Z * [new tag] v0.1.1 -> v0.1.1 2025-04-25T04:11:53.0975787Z * [new tag] v0.1.10 -> v0.1.10 2025-04-25T04:11:53.0976280Z * [new tag] v0.1.11 -> v0.1.11 2025-04-25T04:11:53.0976652Z * [new tag] v0.1.12 -> v0.1.12 2025-04-25T04:11:53.0977008Z * [new tag] v0.1.2 -> v0.1.2 2025-04-25T04:11:53.0977372Z * [new tag] v0.1.3 -> v0.1.3 2025-04-25T04:11:53.0977722Z * [new tag] v0.1.4 -> v0.1.4 2025-04-25T04:11:53.0978089Z * [new tag] v0.1.5 -> v0.1.5 2025-04-25T04:11:53.0978437Z * [new tag] v0.1.6 -> v0.1.6 2025-04-25T04:11:53.0978791Z * [new tag] v0.1.7 -> v0.1.7 2025-04-25T04:11:53.0979146Z * [new tag] v0.1.8 -> v0.1.8 2025-04-25T04:11:53.0979488Z * [new tag] v0.1.9 -> v0.1.9 2025-04-25T04:11:53.0979837Z * [new tag] v0.2.0 -> v0.2.0 2025-04-25T04:11:53.0980183Z * [new tag] v0.3.0 -> v0.3.0 2025-04-25T04:11:53.0980534Z * [new tag] v0.3.1 -> v0.3.1 2025-04-25T04:11:53.0980880Z * [new tag] v0.4.0 -> v0.4.0 2025-04-25T04:11:53.0981240Z * [new tag] v0.4.1 -> v0.4.1 2025-04-25T04:11:53.0981598Z * [new tag] v1.0.0 -> v1.0.0 2025-04-25T04:11:53.0981960Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-04-25T04:11:53.0982326Z * [new tag] v1.0.1 -> v1.0.1 2025-04-25T04:11:53.0982675Z * [new tag] v1.0rc0 -> v1.0rc0 2025-04-25T04:11:53.0983040Z * [new tag] v1.0rc1 -> v1.0rc1 2025-04-25T04:11:53.0983497Z * [new tag] v1.1.0 -> v1.1.0 2025-04-25T04:11:53.0983880Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-04-25T04:11:53.1387778Z * [new tag] v1.10.0 -> v1.10.0 2025-04-25T04:11:53.1388222Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-04-25T04:11:53.1388610Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-04-25T04:11:53.1389002Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-04-25T04:11:53.1389508Z * [new tag] v1.10.1 -> v1.10.1 2025-04-25T04:11:53.1389887Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-04-25T04:11:53.1390293Z * [new tag] v1.10.2 -> v1.10.2 2025-04-25T04:11:53.1390665Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-04-25T04:11:53.1391057Z * [new tag] v1.11.0 -> v1.11.0 2025-04-25T04:11:53.1391437Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-04-25T04:11:53.1391811Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-04-25T04:11:53.1392180Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-04-25T04:11:53.1392561Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-04-25T04:11:53.1392931Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-04-25T04:11:53.1393310Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-04-25T04:11:53.1393679Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-04-25T04:11:53.1394049Z * [new tag] v1.12.0 -> v1.12.0 2025-04-25T04:11:53.1394419Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-04-25T04:11:53.1394789Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-04-25T04:11:53.1395469Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-04-25T04:11:53.1395883Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-04-25T04:11:53.1396307Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-04-25T04:11:53.1396684Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-04-25T04:11:53.1397048Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-04-25T04:11:53.1397416Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-04-25T04:11:53.1397777Z * [new tag] v1.12.1 -> v1.12.1 2025-04-25T04:11:53.1398152Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-04-25T04:11:53.1398520Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-04-25T04:11:53.1398906Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-04-25T04:11:53.1399282Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-04-25T04:11:53.1399645Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-04-25T04:11:53.1400013Z * [new tag] v1.13.0 -> v1.13.0 2025-04-25T04:11:53.1400372Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-04-25T04:11:53.1400744Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-04-25T04:11:53.1401113Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-04-25T04:11:53.1401611Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-04-25T04:11:53.1401989Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-04-25T04:11:53.1402400Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-04-25T04:11:53.1402906Z * [new tag] v1.13.1 -> v1.13.1 2025-04-25T04:11:53.1403273Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-04-25T04:11:53.1403643Z * [new tag] v1.2.0 -> v1.2.0 2025-04-25T04:11:53.1404102Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-04-25T04:11:53.1404463Z * [new tag] v1.3.0 -> v1.3.0 2025-04-25T04:11:53.1404833Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-04-25T04:11:53.1405189Z * [new tag] v1.3.1 -> v1.3.1 2025-04-25T04:11:53.1405547Z * [new tag] v1.4.0 -> v1.4.0 2025-04-25T04:11:53.1405901Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-04-25T04:11:53.1406266Z * [new tag] v1.4.1 -> v1.4.1 2025-04-25T04:11:53.1406619Z * [new tag] v1.5.0 -> v1.5.0 2025-04-25T04:11:53.1406984Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-04-25T04:11:53.1407389Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-04-25T04:11:53.1407890Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-04-25T04:11:53.1408272Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-04-25T04:11:53.1408676Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-04-25T04:11:53.1409049Z * [new tag] v1.5.1 -> v1.5.1 2025-04-25T04:11:53.1409415Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-04-25T04:11:53.1409775Z * [new tag] v1.6.0 -> v1.6.0 2025-04-25T04:11:53.1410138Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-04-25T04:11:53.1831661Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-04-25T04:11:53.1832153Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-04-25T04:11:53.1832748Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-04-25T04:11:53.1833129Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-04-25T04:11:53.1833508Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-04-25T04:11:53.1833878Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-04-25T04:11:53.1834267Z * [new tag] v1.7.0 -> v1.7.0 2025-04-25T04:11:53.1834641Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-04-25T04:11:53.1835008Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-04-25T04:11:53.1835383Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-04-25T04:11:53.1835746Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-04-25T04:11:53.1836114Z * [new tag] v1.7.1 -> v1.7.1 2025-04-25T04:11:53.1836478Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-04-25T04:11:53.1836853Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-04-25T04:11:53.1837224Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-04-25T04:11:53.1837584Z * [new tag] v1.8.0 -> v1.8.0 2025-04-25T04:11:53.1837951Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-04-25T04:11:53.1838315Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-04-25T04:11:53.1838685Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-04-25T04:11:53.1839058Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-04-25T04:11:53.1839426Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-04-25T04:11:53.1839920Z * [new tag] v1.8.1 -> v1.8.1 2025-04-25T04:11:53.1840336Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-04-25T04:11:53.1840832Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-04-25T04:11:53.1841244Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-04-25T04:11:53.1841624Z * [new tag] v1.8.2 -> v1.8.2 2025-04-25T04:11:53.1841991Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-04-25T04:11:53.1842351Z * [new tag] v1.9.0 -> v1.9.0 2025-04-25T04:11:53.1842723Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-04-25T04:11:53.1843089Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-04-25T04:11:53.1843463Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-04-25T04:11:53.1843937Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-04-25T04:11:53.1844329Z * [new tag] v1.9.1 -> v1.9.1 2025-04-25T04:11:53.1844699Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-04-25T04:11:53.1845070Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-04-25T04:11:53.1845446Z * [new tag] v2.0.0 -> v2.0.0 2025-04-25T04:11:53.1845806Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-04-25T04:11:53.1846185Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-04-25T04:11:53.1846548Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-04-25T04:11:53.1846919Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-04-25T04:11:53.1847288Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-04-25T04:11:53.1847651Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-04-25T04:11:53.1848023Z * [new tag] v2.0.1 -> v2.0.1 2025-04-25T04:11:53.1848512Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-04-25T04:11:53.1848891Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-04-25T04:11:53.1849268Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-04-25T04:11:53.1849636Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-04-25T04:11:53.1850015Z * [new tag] v2.1.0 -> v2.1.0 2025-04-25T04:11:53.1850379Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-04-25T04:11:53.1850749Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-04-25T04:11:53.1851115Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-04-25T04:11:53.1851481Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-04-25T04:11:53.1851858Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-04-25T04:11:53.1852227Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-04-25T04:11:53.1852616Z * [new tag] v2.1.1 -> v2.1.1 2025-04-25T04:11:53.1852974Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-04-25T04:11:53.1853347Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-04-25T04:11:53.1853710Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-04-25T04:11:53.1854082Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-04-25T04:11:53.2228315Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-04-25T04:11:53.2228756Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-04-25T04:11:53.2229176Z * [new tag] v2.1.2 -> v2.1.2 2025-04-25T04:11:53.2229786Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-04-25T04:11:53.2230234Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-04-25T04:11:53.2230676Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-04-25T04:11:53.2231076Z * [new tag] v2.2.0 -> v2.2.0 2025-04-25T04:11:53.2231443Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-04-25T04:11:53.2231854Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-04-25T04:11:53.2232267Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-04-25T04:11:53.2232635Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-04-25T04:11:53.2233040Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-04-25T04:11:53.2233453Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-04-25T04:11:53.2233867Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-04-25T04:11:53.2234249Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-04-25T04:11:53.2234652Z * [new tag] v2.2.1 -> v2.2.1 2025-04-25T04:11:53.2235061Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-04-25T04:11:53.2235431Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-04-25T04:11:53.2235839Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-04-25T04:11:53.2236249Z * [new tag] v2.2.2 -> v2.2.2 2025-04-25T04:11:53.2236649Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-04-25T04:11:53.2237023Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-04-25T04:11:53.2237444Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-04-25T04:11:53.2237844Z * [new tag] v2.3.0 -> v2.3.0 2025-04-25T04:11:53.2238253Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-04-25T04:11:53.2238769Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-04-25T04:11:53.2239205Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-04-25T04:11:53.2239623Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-04-25T04:11:53.2240046Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-04-25T04:11:53.2258169Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-04-25T04:11:53.2258622Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-04-25T04:11:53.2259053Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-04-25T04:11:53.2259463Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-04-25T04:11:53.2259843Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-04-25T04:11:53.2260285Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-04-25T04:11:53.2260714Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-04-25T04:11:53.2261123Z * [new tag] v2.3.1 -> v2.3.1 2025-04-25T04:11:53.2261493Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-04-25T04:11:53.2261912Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-04-25T04:11:53.2262318Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-04-25T04:11:53.2262730Z * [new tag] v2.4.0 -> v2.4.0 2025-04-25T04:11:53.2263108Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-04-25T04:11:53.2263515Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-04-25T04:11:53.2263924Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-04-25T04:11:53.2264502Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-04-25T04:11:53.2264932Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-04-25T04:11:53.2265310Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-04-25T04:11:53.2265715Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-04-25T04:11:53.2266126Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-04-25T04:11:53.2266493Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-04-25T04:11:53.2266906Z * [new tag] v2.4.1 -> v2.4.1 2025-04-25T04:11:53.2267304Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-04-25T04:11:53.2267689Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-04-25T04:11:53.2268055Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-04-25T04:11:53.2268418Z * [new tag] v2.5.0 -> v2.5.0 2025-04-25T04:11:53.2268798Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-04-25T04:11:53.2269176Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-04-25T04:11:53.2269560Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-04-25T04:11:53.5225416Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-04-25T04:11:53.5226001Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-04-25T04:11:53.5226430Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-04-25T04:11:53.5226810Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-04-25T04:11:53.5227179Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-04-25T04:11:53.5227561Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-04-25T04:11:53.5227984Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-04-25T04:11:53.5228560Z * [new tag] v2.5.1 -> v2.5.1 2025-04-25T04:11:53.5228946Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-04-25T04:11:53.5229307Z * [new tag] v2.6.0 -> v2.6.0 2025-04-25T04:11:53.5229691Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-04-25T04:11:53.5230070Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-04-25T04:11:53.5230440Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-04-25T04:11:53.5230816Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-04-25T04:11:53.5231184Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-04-25T04:11:53.5231700Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-04-25T04:11:53.5232104Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-04-25T04:11:53.5232495Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-04-25T04:11:53.5232871Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-04-25T04:11:53.5233230Z * [new tag] v2.7.0 -> v2.7.0 2025-04-25T04:11:53.5233599Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-04-25T04:11:53.5233969Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-04-25T04:11:53.5234348Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-04-25T04:11:53.5234719Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-04-25T04:11:53.5235093Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-04-25T04:11:53.5235471Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-04-25T04:11:53.5235833Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-04-25T04:11:53.5236357Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-04-25T04:11:53.5236740Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-04-25T04:11:53.5237185Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-04-25T04:11:53.5237671Z * [new tag] whc_flight_1 -> whc_flight_1 2025-04-25T04:11:53.5238108Z * [new tag] whc_flight_2 -> whc_flight_2 2025-04-25T04:11:53.5238550Z * [new tag] whc_flight_4 -> whc_flight_4 2025-04-25T04:11:53.5425033Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet b68c0effe97351b0c24b2f7aef671559be6aa977^{object} 2025-04-25T04:11:53.5647251Z b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:11:53.5685966Z ##[endgroup] 2025-04-25T04:11:53.5686365Z ##[group]Determining the checkout info 2025-04-25T04:11:53.5687857Z ##[endgroup] 2025-04-25T04:11:53.5698731Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-04-25T04:11:53.5991178Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-04-25T04:11:53.6246412Z ##[group]Checking out the ref 2025-04-25T04:11:53.6257689Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:11:54.7094480Z Updating files: 9% (1570/16547) 2025-04-25T04:11:54.7661057Z Updating files: 10% (1655/16547) 2025-04-25T04:11:54.8297423Z Updating files: 11% (1821/16547) 2025-04-25T04:11:54.8949856Z Updating files: 12% (1986/16547) 2025-04-25T04:11:54.9886368Z Updating files: 13% (2152/16547) 2025-04-25T04:11:55.0548393Z Updating files: 14% (2317/16547) 2025-04-25T04:11:55.1151241Z Updating files: 15% (2483/16547) 2025-04-25T04:11:55.1887269Z Updating files: 16% (2648/16547) 2025-04-25T04:11:55.2448701Z Updating files: 17% (2813/16547) 2025-04-25T04:11:55.2987528Z Updating files: 18% (2979/16547) 2025-04-25T04:11:55.3612424Z Updating files: 19% (3144/16547) 2025-04-25T04:11:55.4313572Z Updating files: 20% (3310/16547) 2025-04-25T04:11:55.4994421Z Updating files: 21% (3475/16547) 2025-04-25T04:11:55.5757257Z Updating files: 22% (3641/16547) 2025-04-25T04:11:55.6527197Z Updating files: 23% (3806/16547) 2025-04-25T04:11:55.6761512Z Updating files: 24% (3972/16547) 2025-04-25T04:11:56.1233582Z Updating files: 24% (4018/16547) 2025-04-25T04:11:56.1988504Z Updating files: 25% (4137/16547) 2025-04-25T04:11:56.3385143Z Updating files: 26% (4303/16547) 2025-04-25T04:11:56.4520561Z Updating files: 27% (4468/16547) 2025-04-25T04:11:56.5294567Z Updating files: 28% (4634/16547) 2025-04-25T04:11:56.6039086Z Updating files: 29% (4799/16547) 2025-04-25T04:11:56.6847696Z Updating files: 30% (4965/16547) 2025-04-25T04:11:56.7061901Z Updating files: 30% (5073/16547) 2025-04-25T04:11:56.8253900Z Updating files: 31% (5130/16547) 2025-04-25T04:11:56.9570644Z Updating files: 32% (5296/16547) 2025-04-25T04:11:57.0108473Z Updating files: 33% (5461/16547) 2025-04-25T04:11:57.0449709Z Updating files: 34% (5626/16547) 2025-04-25T04:11:57.1145859Z Updating files: 35% (5792/16547) 2025-04-25T04:11:57.1470116Z Updating files: 36% (5957/16547) 2025-04-25T04:11:57.1791351Z Updating files: 37% (6123/16547) 2025-04-25T04:11:57.2993532Z Updating files: 38% (6288/16547) 2025-04-25T04:11:57.3383213Z Updating files: 39% (6454/16547) 2025-04-25T04:11:57.3839804Z Updating files: 40% (6619/16547) 2025-04-25T04:11:57.4573210Z Updating files: 41% (6785/16547) 2025-04-25T04:11:57.4935041Z Updating files: 42% (6950/16547) 2025-04-25T04:11:57.5342769Z Updating files: 43% (7116/16547) 2025-04-25T04:11:57.6099943Z Updating files: 44% (7281/16547) 2025-04-25T04:11:57.6455494Z Updating files: 45% (7447/16547) 2025-04-25T04:11:57.6827461Z Updating files: 46% (7612/16547) 2025-04-25T04:11:57.6932360Z Updating files: 47% (7778/16547) 2025-04-25T04:11:57.7219348Z Updating files: 47% (7814/16547) 2025-04-25T04:11:57.8011991Z Updating files: 48% (7943/16547) 2025-04-25T04:11:57.8406310Z Updating files: 49% (8109/16547) 2025-04-25T04:11:57.8781818Z Updating files: 50% (8274/16547) 2025-04-25T04:11:57.9631192Z Updating files: 51% (8439/16547) 2025-04-25T04:11:58.0043627Z Updating files: 52% (8605/16547) 2025-04-25T04:11:58.0467664Z Updating files: 53% (8770/16547) 2025-04-25T04:11:58.1262660Z Updating files: 54% (8936/16547) 2025-04-25T04:11:58.1654376Z Updating files: 55% (9101/16547) 2025-04-25T04:11:58.2079360Z Updating files: 56% (9267/16547) 2025-04-25T04:11:58.3077082Z Updating files: 57% (9432/16547) 2025-04-25T04:11:58.3492492Z Updating files: 58% (9598/16547) 2025-04-25T04:11:58.3886972Z Updating files: 59% (9763/16547) 2025-04-25T04:11:58.4630289Z Updating files: 60% (9929/16547) 2025-04-25T04:11:58.5023951Z Updating files: 61% (10094/16547) 2025-04-25T04:11:58.5434849Z Updating files: 62% (10260/16547) 2025-04-25T04:11:58.5839016Z Updating files: 63% (10425/16547) 2025-04-25T04:11:58.6310306Z Updating files: 64% (10591/16547) 2025-04-25T04:11:58.6880008Z Updating files: 65% (10756/16547) 2025-04-25T04:11:58.7013069Z Updating files: 66% (10922/16547) 2025-04-25T04:11:58.8291773Z Updating files: 66% (10945/16547) 2025-04-25T04:11:58.9030372Z Updating files: 67% (11087/16547) 2025-04-25T04:11:58.9402134Z Updating files: 68% (11252/16547) 2025-04-25T04:11:59.1203236Z Updating files: 69% (11418/16547) 2025-04-25T04:11:59.2113003Z Updating files: 70% (11583/16547) 2025-04-25T04:11:59.4110304Z Updating files: 71% (11749/16547) 2025-04-25T04:11:59.6193057Z Updating files: 72% (11914/16547) 2025-04-25T04:11:59.7012597Z Updating files: 73% (12080/16547) 2025-04-25T04:11:59.7160575Z Updating files: 73% (12193/16547) 2025-04-25T04:11:59.7925039Z Updating files: 74% (12245/16547) 2025-04-25T04:11:59.8844317Z Updating files: 75% (12411/16547) 2025-04-25T04:11:59.9616201Z Updating files: 76% (12576/16547) 2025-04-25T04:12:00.0342904Z Updating files: 77% (12742/16547) 2025-04-25T04:12:00.1348896Z Updating files: 78% (12907/16547) 2025-04-25T04:12:00.2361429Z Updating files: 79% (13073/16547) 2025-04-25T04:12:00.3303248Z Updating files: 80% (13238/16547) 2025-04-25T04:12:00.4116556Z Updating files: 81% (13404/16547) 2025-04-25T04:12:00.4828903Z Updating files: 82% (13569/16547) 2025-04-25T04:12:00.5662446Z Updating files: 83% (13735/16547) 2025-04-25T04:12:00.7504257Z Updating files: 84% (13900/16547) 2025-04-25T04:12:00.7856178Z Updating files: 84% (13993/16547) 2025-04-25T04:12:00.8679976Z Updating files: 85% (14065/16547) 2025-04-25T04:12:01.3024050Z Updating files: 86% (14231/16547) 2025-04-25T04:12:01.3684679Z Updating files: 87% (14396/16547) 2025-04-25T04:12:01.4361899Z Updating files: 88% (14562/16547) 2025-04-25T04:12:01.5222119Z Updating files: 89% (14727/16547) 2025-04-25T04:12:01.6347489Z Updating files: 90% (14893/16547) 2025-04-25T04:12:01.7029578Z Updating files: 91% (15058/16547) 2025-04-25T04:12:01.7080212Z Updating files: 91% (15215/16547) 2025-04-25T04:12:01.7976154Z Updating files: 92% (15224/16547) 2025-04-25T04:12:01.8903552Z Updating files: 93% (15389/16547) 2025-04-25T04:12:01.9803944Z Updating files: 94% (15555/16547) 2025-04-25T04:12:02.0719825Z Updating files: 95% (15720/16547) 2025-04-25T04:12:02.1534550Z Updating files: 96% (15886/16547) 2025-04-25T04:12:02.2630397Z Updating files: 97% (16051/16547) 2025-04-25T04:12:02.3490215Z Updating files: 98% (16217/16547) 2025-04-25T04:12:02.4324841Z Updating files: 99% (16382/16547) 2025-04-25T04:12:02.4325317Z Updating files: 100% (16547/16547) 2025-04-25T04:12:02.4325746Z Updating files: 100% (16547/16547), done. 2025-04-25T04:12:02.4761271Z Note: switching to 'b68c0effe97351b0c24b2f7aef671559be6aa977'. 2025-04-25T04:12:02.4761896Z 2025-04-25T04:12:02.4762242Z You are in 'detached HEAD' state. You can look around, make experimental 2025-04-25T04:12:02.4764321Z changes and commit them, and you can discard any commits you make in this 2025-04-25T04:12:02.4765530Z state without impacting any branches by switching back to a branch. 2025-04-25T04:12:02.4766125Z 2025-04-25T04:12:02.4766455Z If you want to create a new branch to retain commits you create, you may 2025-04-25T04:12:02.4767280Z do so (now or later) by using -c with the switch command. Example: 2025-04-25T04:12:02.4767787Z 2025-04-25T04:12:02.4767941Z git switch -c 2025-04-25T04:12:02.4768251Z 2025-04-25T04:12:02.4768375Z Or undo this operation with: 2025-04-25T04:12:02.4768649Z 2025-04-25T04:12:02.4768732Z git switch - 2025-04-25T04:12:02.4768901Z 2025-04-25T04:12:02.4770344Z Turn off this advice by setting config variable advice.detachedHead to false 2025-04-25T04:12:02.4770980Z 2025-04-25T04:12:02.4771768Z HEAD is now at b68c0effe97 Update on "use statically known true instead of guard size oblivious in bmm and mm decompositions . " 2025-04-25T04:12:02.4933355Z ##[endgroup] 2025-04-25T04:12:02.4934025Z ##[group]Setting up auth for fetching submodules 2025-04-25T04:12:02.4945468Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-04-25T04:12:02.5212008Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-04-25T04:12:02.5467267Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-04-25T04:12:02.5745593Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-04-25T04:12:02.6030412Z ##[endgroup] 2025-04-25T04:12:02.6030941Z ##[group]Fetching submodules 2025-04-25T04:12:02.6040098Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-04-25T04:12:03.0541287Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-04-25T04:12:03.6339851Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-04-25T04:12:03.6341112Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-04-25T04:12:03.6342090Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-04-25T04:12:03.6343058Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-04-25T04:12:03.6343997Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-04-25T04:12:03.6345226Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-04-25T04:12:03.6346443Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-04-25T04:12:03.6347367Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-04-25T04:12:03.6348414Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-04-25T04:12:03.6349489Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-04-25T04:12:03.6350547Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-04-25T04:12:03.6351541Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-04-25T04:12:03.6352509Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-04-25T04:12:03.6353522Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2025-04-25T04:12:03.6354380Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-04-25T04:12:03.6355357Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-04-25T04:12:03.6356532Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-04-25T04:12:03.6357415Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-04-25T04:12:03.6358367Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:12:03.6359362Z Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' 2025-04-25T04:12:03.6360293Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-04-25T04:12:03.6361188Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-04-25T04:12:03.6362056Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-04-25T04:12:03.6363055Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-04-25T04:12:03.6363973Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-04-25T04:12:03.6364926Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-04-25T04:12:03.6365859Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-04-25T04:12:03.6366717Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-04-25T04:12:03.6367906Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-04-25T04:12:03.6369073Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-04-25T04:12:03.6370042Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-04-25T04:12:03.6371048Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-04-25T04:12:03.6372133Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-04-25T04:12:03.6416454Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-04-25T04:12:03.6417461Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-04-25T04:12:03.6418397Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-04-25T04:12:03.6419300Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-04-25T04:12:03.7044506Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-04-25T04:12:05.0236807Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-04-25T04:12:05.0238147Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-04-25T04:12:05.0255839Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-04-25T04:12:11.0005296Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-04-25T04:12:11.0006718Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-04-25T04:12:11.0007860Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-04-25T04:12:11.0008900Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-04-25T04:12:11.0009911Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-04-25T04:12:11.0010935Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-04-25T04:12:11.0011958Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-04-25T04:12:11.0013092Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-04-25T04:12:11.0014163Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-04-25T04:12:11.0015010Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-04-25T04:12:11.0015906Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-04-25T04:12:12.7136571Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-04-25T04:12:32.3908491Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-04-25T04:12:32.3909666Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-04-25T04:12:32.3910894Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-04-25T04:12:32.3912124Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-04-25T04:12:32.3913210Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-04-25T04:12:32.3914293Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-04-25T04:12:32.3915366Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-04-25T04:12:32.3916382Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-04-25T04:12:32.3917488Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-04-25T04:12:32.3918877Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-04-25T04:12:32.3920032Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-04-25T04:12:32.3921209Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-04-25T04:12:32.3922241Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/eigen'... 2025-04-25T04:12:32.3923244Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-04-25T04:12:32.3924339Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-04-25T04:12:32.3925501Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-04-25T04:12:32.3926574Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-04-25T04:12:32.3927596Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-04-25T04:12:32.3928624Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-04-25T04:12:32.3929762Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-04-25T04:12:32.3930920Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-04-25T04:12:32.4957941Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-04-25T04:12:32.5949958Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-04-25T04:12:32.6690950Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-04-25T04:12:32.8571689Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-04-25T04:12:33.1365510Z Submodule path 'third_party/NVTX': checked out 'e170594ac7cf1dac584da473d4ca9301087090c1' 2025-04-25T04:12:33.6592598Z Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-04-25T04:12:48.9926558Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-04-25T04:12:49.3843459Z Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' 2025-04-25T04:12:55.9209465Z Submodule path 'third_party/composable_kernel': checked out '8086bbe3a78d931eb96fe12fdc014082e18d18d3' 2025-04-25T04:12:56.2061164Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2025-04-25T04:12:57.8757275Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-04-25T04:12:58.5387783Z Submodule path 'third_party/cudnn_frontend': checked out '8801fd7b31c2f798732ed1e1dd4711a9cde4217d' 2025-04-25T04:13:04.7880371Z Submodule path 'third_party/cutlass': checked out 'afa1772203677c5118fcd82537a9c8fefbcc7008' 2025-04-25T04:13:06.0997311Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-04-25T04:13:08.3076836Z Submodule path 'third_party/fbgemm': checked out 'dbc3157bf256f1339b3fa1fef2be89ac4078be0e' 2025-04-25T04:13:08.3253635Z Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:13:08.3254710Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:13:08.3255747Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:13:08.3256817Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:13:08.3258053Z 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:13:12.2479500Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/asmjit'... 2025-04-25T04:13:12.2480407Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/hipify_torch'... 2025-04-25T04:13:12.2481869Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cpuinfo'... 2025-04-25T04:13:12.2482652Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cutlass'... 2025-04-25T04:13:12.2483416Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/googletest'... 2025-04-25T04:13:12.4610399Z Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' 2025-04-25T04:13:12.9320241Z Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' 2025-04-25T04:13:16.6989920Z Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' 2025-04-25T04:13:17.0112473Z Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' 2025-04-25T04:13:17.0996600Z Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '23f53b025b466d8ec3c45d52290d3442f7fbe6b1' 2025-04-25T04:13:17.8723041Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-04-25T04:13:17.8843865Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:13:17.8845036Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:13:22.2155056Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-04-25T04:13:22.2156924Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-04-25T04:13:26.7258824Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-04-25T04:13:31.0045670Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-04-25T04:13:32.7915905Z Submodule path 'third_party/flatbuffers': checked out '01834de25e4bf3975a9a00e816292b1ad0fe184b' 2025-04-25T04:13:32.9451766Z Submodule path 'third_party/fmt': checked out '123913715afeb8a437e6388b4473fcc4753e1c9a' 2025-04-25T04:13:33.3402443Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-04-25T04:13:33.5259671Z Submodule path 'third_party/gloo': checked out 'c61070427610ccd923efe3e7f8b3eca12bbcc31a' 2025-04-25T04:13:33.7781763Z Submodule path 'third_party/googletest': checked out 'b514bdc898e2951020cbdca1304b75f5950d1f59' 2025-04-25T04:13:33.8699095Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-04-25T04:13:33.8795244Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-04-25T04:13:46.2406693Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-04-25T04:13:50.0561180Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-04-25T04:13:50.2874912Z Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' 2025-04-25T04:13:50.5944483Z Submodule path 'third_party/kineto': checked out '5fa4bd8c8fb581a621f72957d0cb11431cc4714f' 2025-04-25T04:13:50.6087847Z 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:50.6090383Z 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:50.6093672Z 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:53.1076762Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-04-25T04:13:53.1077696Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-04-25T04:13:53.1078580Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-04-25T04:13:53.4339561Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-04-25T04:13:53.4568083Z 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:53.4569411Z 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:53.4570612Z 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:53.4571818Z 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:53.4573059Z 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:53.4574463Z 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:53.4575976Z 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:53.4577227Z 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:53.5023835Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-04-25T04:14:02.1987960Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-04-25T04:14:02.1990050Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-04-25T04:14:02.1992006Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-04-25T04:14:02.1993934Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-04-25T04:14:02.1995938Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-04-25T04:14:02.1997960Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-04-25T04:14:02.1999976Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-04-25T04:14:03.2421601Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-04-25T04:14:03.3663376Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-04-25T04:14:03.5385552Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-04-25T04:14:03.6261089Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-04-25T04:14:03.6365824Z 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:14:04.2183535Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-04-25T04:14:04.2741899Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-04-25T04:14:04.3804882Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-04-25T04:14:04.6039411Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-04-25T04:14:05.1957626Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-04-25T04:14:05.3063340Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-04-25T04:14:05.4607740Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-04-25T04:14:05.6989821Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-04-25T04:14:06.0232090Z Submodule path 'third_party/kleidiai': checked out 'ef685a13cfbe8d418aa2ed34350e21e4938358b6' 2025-04-25T04:14:06.2341393Z Submodule path 'third_party/mimalloc': checked out 'b66e3214d8a104669c2ec05ae91ebc26a8f5ab78' 2025-04-25T04:14:07.3811199Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2025-04-25T04:14:12.6802200Z Submodule path 'third_party/onnx': checked out 'b8baa8446686496da4cc8fda09f2b6fe65c2a02c' 2025-04-25T04:14:12.6929428Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:14.2330696Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-04-25T04:14:14.4667131Z Submodule path 'third_party/onnx/third_party/pybind11': checked out '3e9dfa2866941655c56877882565e7577de6fc7b' 2025-04-25T04:14:15.1040059Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-04-25T04:14:15.1297503Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:15.1298767Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:15.1299969Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:15.1301128Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:15.1302519Z 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:14:15.1304029Z 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:14:15.1305429Z 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:14:15.1306590Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:15.1808009Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-04-25T04:14:25.9909089Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-04-25T04:14:25.9910055Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-04-25T04:14:25.9910950Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-04-25T04:14:25.9911840Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-04-25T04:14:25.9912790Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-04-25T04:14:25.9913797Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-04-25T04:14:25.9914672Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-04-25T04:14:26.1286269Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-04-25T04:14:26.4495369Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-04-25T04:14:26.5432908Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-04-25T04:14:27.3249308Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-04-25T04:14:27.4304250Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-04-25T04:14:27.6598757Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-04-25T04:14:27.8489918Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-04-25T04:14:27.8649381Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:27.8650792Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:31.0935523Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-04-25T04:14:31.0936781Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-04-25T04:14:31.9565904Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-04-25T04:14:32.2105661Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-04-25T04:14:38.8767504Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-04-25T04:14:38.9636930Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2025-04-25T04:14:40.2973439Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-04-25T04:14:40.3091330Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:40.3092521Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:41.8502410Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-04-25T04:14:41.8503280Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-04-25T04:14:41.9312105Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-04-25T04:14:42.2176951Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-04-25T04:14:42.2861856Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-04-25T04:14:42.3702337Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-04-25T04:14:42.5528551Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-04-25T04:14:42.6992052Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-04-25T04:14:42.8841396Z Submodule path 'third_party/sleef': checked out '56e1f79cb140fb9326d612d0be06b5250565cade' 2025-04-25T04:14:43.1954585Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-04-25T04:14:43.2112604Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:43.2114878Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:43.2116904Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:43.2119494Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:45.9621417Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-04-25T04:14:45.9622415Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-04-25T04:14:45.9623212Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-04-25T04:14:45.9624014Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-04-25T04:14:46.2135913Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-04-25T04:14:46.5872596Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-04-25T04:14:47.1278488Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-04-25T04:14:47.3618597Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-04-25T04:14:47.3722944Z 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:47.7878120Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-04-25T04:14:47.8414766Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-04-25T04:14:47.8652047Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-04-25T04:14:48.2301016Z Entering 'android/libs/fbjni' 2025-04-25T04:14:48.2680938Z Entering 'third_party/FP16' 2025-04-25T04:14:48.3048509Z Entering 'third_party/FXdiv' 2025-04-25T04:14:48.3445897Z Entering 'third_party/NNPACK' 2025-04-25T04:14:48.3853843Z Entering 'third_party/NVTX' 2025-04-25T04:14:48.4224871Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:48.4658804Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:48.5050856Z Entering 'third_party/benchmark' 2025-04-25T04:14:48.5422529Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:48.5843060Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:48.6226616Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:48.6625181Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:48.7020185Z Entering 'third_party/cutlass' 2025-04-25T04:14:48.7412473Z Entering 'third_party/eigen' 2025-04-25T04:14:48.7781100Z Entering 'third_party/fbgemm' 2025-04-25T04:14:48.8155878Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:48.8589284Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:48.8998027Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:48.9396552Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:48.9770657Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:49.0164289Z Entering 'third_party/flash-attention' 2025-04-25T04:14:49.0538725Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:49.0949840Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:49.1385807Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:49.1766715Z Entering 'third_party/fmt' 2025-04-25T04:14:49.2225547Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:49.2607400Z Entering 'third_party/gloo' 2025-04-25T04:14:49.3028788Z Entering 'third_party/googletest' 2025-04-25T04:14:49.3413141Z Entering 'third_party/ideep' 2025-04-25T04:14:49.3765160Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:49.4198460Z Entering 'third_party/ittapi' 2025-04-25T04:14:49.4565588Z Entering 'third_party/kineto' 2025-04-25T04:14:49.4934451Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:49.5341869Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:49.5716066Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:49.6085448Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:49.6495296Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:49.6882967Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:49.7285778Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:49.7659642Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:49.8066568Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:49.8446668Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:49.8841520Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:49.9258985Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:49.9671179Z Entering 'third_party/kleidiai' 2025-04-25T04:14:50.0057769Z Entering 'third_party/mimalloc' 2025-04-25T04:14:50.0456175Z Entering 'third_party/nlohmann' 2025-04-25T04:14:50.0829209Z Entering 'third_party/onnx' 2025-04-25T04:14:50.1209201Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:50.1644008Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:50.2014351Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:50.2424702Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:50.2804677Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:50.3177643Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:50.7753870Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:50.8132539Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:50.8514425Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:50.8900356Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:50.9287673Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:50.9693400Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:51.0134025Z Entering 'third_party/pocketfft' 2025-04-25T04:14:51.0517383Z Entering 'third_party/protobuf' 2025-04-25T04:14:51.0904195Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:51.1282646Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:51.1683608Z Entering 'third_party/psimd' 2025-04-25T04:14:51.2103000Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:51.2490707Z Entering 'third_party/pybind11' 2025-04-25T04:14:51.2871568Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:51.3254541Z Entering 'third_party/sleef' 2025-04-25T04:14:51.3639469Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:51.4019648Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:51.4409827Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:51.4784229Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:51.5221253Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:51.5583222Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:51.6126906Z ##[endgroup] 2025-04-25T04:14:51.6127325Z ##[group]Persisting credentials for submodules 2025-04-25T04:14:51.6142346Z [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:51.9754954Z Entering 'android/libs/fbjni' 2025-04-25T04:14:52.0342251Z Entering 'third_party/FP16' 2025-04-25T04:14:52.0938948Z Entering 'third_party/FXdiv' 2025-04-25T04:14:52.1577529Z Entering 'third_party/NNPACK' 2025-04-25T04:14:52.2200924Z Entering 'third_party/NVTX' 2025-04-25T04:14:52.2828732Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:52.3472822Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:52.4078786Z Entering 'third_party/benchmark' 2025-04-25T04:14:52.4695343Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:52.5302089Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:52.5891492Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:52.6475812Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:52.7079745Z Entering 'third_party/cutlass' 2025-04-25T04:14:52.7707240Z Entering 'third_party/eigen' 2025-04-25T04:14:52.8283967Z Entering 'third_party/fbgemm' 2025-04-25T04:14:52.8867887Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:52.9459276Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:53.0079655Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:53.0678607Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:53.1264404Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:53.1864698Z Entering 'third_party/flash-attention' 2025-04-25T04:14:53.2457124Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:53.3108227Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:53.3719976Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:53.4310946Z Entering 'third_party/fmt' 2025-04-25T04:14:53.4930940Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:53.5587145Z Entering 'third_party/gloo' 2025-04-25T04:14:53.6200058Z Entering 'third_party/googletest' 2025-04-25T04:14:53.6779925Z Entering 'third_party/ideep' 2025-04-25T04:14:53.7347840Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:53.7955303Z Entering 'third_party/ittapi' 2025-04-25T04:14:53.8525302Z Entering 'third_party/kineto' 2025-04-25T04:14:53.9130062Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:53.9715416Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:54.0312367Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:54.0912495Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:54.1496088Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:54.2088244Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:54.2742198Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:54.3325340Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:54.3955572Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:54.4509917Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:54.5146858Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:54.5750870Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:54.6350878Z Entering 'third_party/kleidiai' 2025-04-25T04:14:54.6929321Z Entering 'third_party/mimalloc' 2025-04-25T04:14:54.7538231Z Entering 'third_party/nlohmann' 2025-04-25T04:14:54.8140346Z Entering 'third_party/onnx' 2025-04-25T04:14:54.8727499Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:14:54.9331989Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:14:54.9896618Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:14:55.0535532Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:14:55.1134847Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:14:55.1737394Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:14:55.2332439Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:14:55.2907806Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:14:55.3500394Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:14:55.4122334Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:14:55.4735870Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:14:55.5357679Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:14:55.6029483Z Entering 'third_party/pocketfft' 2025-04-25T04:14:55.6611553Z Entering 'third_party/protobuf' 2025-04-25T04:14:55.7235347Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:14:55.7873411Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:14:55.8478500Z Entering 'third_party/psimd' 2025-04-25T04:14:55.9051446Z Entering 'third_party/pthreadpool' 2025-04-25T04:14:55.9649578Z Entering 'third_party/pybind11' 2025-04-25T04:14:56.0233664Z Entering 'third_party/python-peachpy' 2025-04-25T04:14:56.0811983Z Entering 'third_party/sleef' 2025-04-25T04:14:56.1384670Z Entering 'third_party/tensorpipe' 2025-04-25T04:14:56.1938614Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:14:56.2518744Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:14:56.3093083Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:14:56.3735663Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:14:56.4382008Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:14:56.5119693Z [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:56.8883450Z Entering 'android/libs/fbjni' 2025-04-25T04:14:56.9440697Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-04-25T04:14:56.9572226Z Entering 'third_party/FP16' 2025-04-25T04:14:57.0133952Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-04-25T04:14:57.0270025Z Entering 'third_party/FXdiv' 2025-04-25T04:14:57.0842007Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-04-25T04:14:57.0967764Z Entering 'third_party/NNPACK' 2025-04-25T04:14:57.1513596Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-04-25T04:14:57.1646387Z Entering 'third_party/NVTX' 2025-04-25T04:14:57.2185437Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-04-25T04:14:57.2320493Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:14:57.2860414Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-04-25T04:14:57.2995908Z Entering 'third_party/XNNPACK' 2025-04-25T04:14:57.3544551Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-04-25T04:14:57.3697658Z Entering 'third_party/benchmark' 2025-04-25T04:14:57.4244439Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-04-25T04:14:57.4382227Z Entering 'third_party/composable_kernel' 2025-04-25T04:14:57.4935462Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-04-25T04:14:57.5076924Z Entering 'third_party/cpp-httplib' 2025-04-25T04:14:57.5625313Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-04-25T04:14:57.5760551Z Entering 'third_party/cpuinfo' 2025-04-25T04:14:57.6322320Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-04-25T04:14:57.6458851Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:14:57.7007835Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-04-25T04:14:57.7141071Z Entering 'third_party/cutlass' 2025-04-25T04:14:57.7744474Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-04-25T04:14:57.7895934Z Entering 'third_party/eigen' 2025-04-25T04:14:57.8451346Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2025-04-25T04:14:57.8602245Z Entering 'third_party/fbgemm' 2025-04-25T04:14:57.9160335Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-04-25T04:14:57.9282691Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:14:57.9853309Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/asmjit/config remote.origin.url 2025-04-25T04:14:58.0007313Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:14:58.0585849Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cpuinfo/config remote.origin.url 2025-04-25T04:14:58.0720139Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:14:58.1277624Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cutlass/config remote.origin.url 2025-04-25T04:14:58.1441041Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:14:58.2046894Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:58.2186882Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:14:58.2746666Z 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:58.2900683Z Entering 'third_party/flash-attention' 2025-04-25T04:14:58.3478675Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-04-25T04:14:58.3600031Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:14:58.4165845Z 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:58.4309805Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:14:58.4865868Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-04-25T04:14:58.5091553Z Entering 'third_party/flatbuffers' 2025-04-25T04:14:58.5653688Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-04-25T04:14:58.5794768Z Entering 'third_party/fmt' 2025-04-25T04:14:58.6362875Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-04-25T04:14:58.6498793Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:14:58.7076913Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-04-25T04:14:58.7209279Z Entering 'third_party/gloo' 2025-04-25T04:14:58.7757871Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-04-25T04:14:58.7902966Z Entering 'third_party/googletest' 2025-04-25T04:14:58.8462108Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:14:58.8603060Z Entering 'third_party/ideep' 2025-04-25T04:14:58.9182953Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-04-25T04:14:58.9302037Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:14:58.9868299Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-04-25T04:14:59.0048352Z Entering 'third_party/ittapi' 2025-04-25T04:14:59.0596840Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-04-25T04:14:59.0726520Z Entering 'third_party/kineto' 2025-04-25T04:14:59.1291695Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-04-25T04:14:59.1412742Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:14:59.1984328Z 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:59.2103347Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:14:59.2683416Z 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:59.2818365Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:14:59.3356553Z 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:59.3489710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:14:59.4042383Z 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:59.4169533Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:14:59.4712097Z 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:59.4830794Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:14:59.5374985Z 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:59.5523132Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:14:59.6062858Z 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:59.6196332Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:14:59.6772964Z 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:59.6900131Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:14:59.7438593Z 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:59.7571287Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:14:59.8116572Z 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:59.8265306Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:14:59.8810473Z 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:59.8947149Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:14:59.9516208Z 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:59.9679944Z Entering 'third_party/kleidiai' 2025-04-25T04:15:00.0289569Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-04-25T04:15:00.0429259Z Entering 'third_party/mimalloc' 2025-04-25T04:15:00.0971052Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-04-25T04:15:00.1116728Z Entering 'third_party/nlohmann' 2025-04-25T04:15:00.1703337Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-04-25T04:15:00.1838217Z Entering 'third_party/onnx' 2025-04-25T04:15:00.2368339Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-04-25T04:15:00.2501856Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:15:00.3083630Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-04-25T04:15:00.3233713Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:15:00.3768249Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-04-25T04:15:00.3886708Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:15:00.4418593Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-04-25T04:15:00.4576874Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:15:00.5111471Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:15:00.5239702Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:15:00.5776669Z 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:15:00.5909177Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:15:00.6448803Z 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:15:00.6582896Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:15:00.7114331Z 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:15:00.7258144Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:15:00.7798704Z 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:15:00.7927572Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:15:00.9190067Z 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:15:00.9306466Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:15:00.9848803Z 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:15:00.9985815Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:15:01.0527088Z 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:15:01.0699614Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:15:01.1242169Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-04-25T04:15:01.1414721Z Entering 'third_party/pocketfft' 2025-04-25T04:15:01.1960504Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-04-25T04:15:01.2094596Z Entering 'third_party/protobuf' 2025-04-25T04:15:01.3486187Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-04-25T04:15:01.3608456Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:15:01.4153611Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-04-25T04:15:01.4283247Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:15:01.4824212Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:15:01.4971822Z Entering 'third_party/psimd' 2025-04-25T04:15:01.5504209Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-04-25T04:15:01.5633053Z Entering 'third_party/pthreadpool' 2025-04-25T04:15:01.6183318Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-04-25T04:15:01.6316422Z Entering 'third_party/pybind11' 2025-04-25T04:15:01.6862884Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-04-25T04:15:01.6997702Z Entering 'third_party/python-peachpy' 2025-04-25T04:15:01.7552986Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-04-25T04:15:01.7694214Z Entering 'third_party/sleef' 2025-04-25T04:15:01.8249458Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-04-25T04:15:01.8383422Z Entering 'third_party/tensorpipe' 2025-04-25T04:15:01.8939383Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-04-25T04:15:01.9059128Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:15:01.9624607Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-04-25T04:15:01.9758287Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:15:02.0319364Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-04-25T04:15:02.0450692Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:15:02.1017531Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-04-25T04:15:02.1180324Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:15:02.1752065Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-04-25T04:15:02.1869891Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:15:02.2443711Z 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:15:02.3057965Z [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:15:02.6777901Z Entering 'android/libs/fbjni' 2025-04-25T04:15:02.7159423Z Entering 'third_party/FP16' 2025-04-25T04:15:02.7556268Z Entering 'third_party/FXdiv' 2025-04-25T04:15:02.7929265Z Entering 'third_party/NNPACK' 2025-04-25T04:15:02.8304072Z Entering 'third_party/NVTX' 2025-04-25T04:15:02.8687218Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:15:02.9063283Z Entering 'third_party/XNNPACK' 2025-04-25T04:15:02.9467591Z Entering 'third_party/benchmark' 2025-04-25T04:15:02.9839972Z Entering 'third_party/composable_kernel' 2025-04-25T04:15:03.0240094Z Entering 'third_party/cpp-httplib' 2025-04-25T04:15:03.0632646Z Entering 'third_party/cpuinfo' 2025-04-25T04:15:03.1000098Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:15:03.1378888Z Entering 'third_party/cutlass' 2025-04-25T04:15:03.1778655Z Entering 'third_party/eigen' 2025-04-25T04:15:03.2154352Z Entering 'third_party/fbgemm' 2025-04-25T04:15:03.2541507Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:15:03.2917405Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:15:03.3298490Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:15:03.3691175Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:15:03.4071117Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:15:03.4514340Z Entering 'third_party/flash-attention' 2025-04-25T04:15:03.4908127Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:15:03.5293449Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:15:03.5686325Z Entering 'third_party/flatbuffers' 2025-04-25T04:15:03.6061629Z Entering 'third_party/fmt' 2025-04-25T04:15:03.6437621Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:15:03.6803382Z Entering 'third_party/gloo' 2025-04-25T04:15:03.7180039Z Entering 'third_party/googletest' 2025-04-25T04:15:03.7547720Z Entering 'third_party/ideep' 2025-04-25T04:15:03.7917967Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:15:03.8320785Z Entering 'third_party/ittapi' 2025-04-25T04:15:03.8684005Z Entering 'third_party/kineto' 2025-04-25T04:15:03.9038624Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:15:03.9404439Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:15:03.9790757Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:15:04.0165978Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:15:04.0550318Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:15:04.0922259Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:15:04.1334938Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:15:04.1712462Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:15:04.2096496Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:15:04.2477325Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:15:04.2868825Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:15:04.3253705Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:15:04.3651034Z Entering 'third_party/kleidiai' 2025-04-25T04:15:04.4023770Z Entering 'third_party/mimalloc' 2025-04-25T04:15:04.4402934Z Entering 'third_party/nlohmann' 2025-04-25T04:15:04.4775179Z Entering 'third_party/onnx' 2025-04-25T04:15:04.5165692Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:15:04.5554441Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:15:04.5933357Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:15:04.6321397Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:15:04.6681853Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:15:04.7110258Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:15:04.7490390Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:15:04.7888910Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:15:04.8257636Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:15:04.8616358Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:15:04.9044872Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:15:04.9456241Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:15:04.9881940Z Entering 'third_party/pocketfft' 2025-04-25T04:15:05.0266248Z Entering 'third_party/protobuf' 2025-04-25T04:15:05.0627586Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:15:05.1022791Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:15:05.1420455Z Entering 'third_party/psimd' 2025-04-25T04:15:05.1786405Z Entering 'third_party/pthreadpool' 2025-04-25T04:15:05.2171575Z Entering 'third_party/pybind11' 2025-04-25T04:15:05.2546965Z Entering 'third_party/python-peachpy' 2025-04-25T04:15:05.2925835Z Entering 'third_party/sleef' 2025-04-25T04:15:05.3293737Z Entering 'third_party/tensorpipe' 2025-04-25T04:15:05.3665116Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:15:05.4089672Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:15:05.4482403Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:15:05.4863104Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:15:05.5253984Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:15:05.5770912Z [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:15:05.9490483Z Entering 'android/libs/fbjni' 2025-04-25T04:15:05.9884597Z Entering 'third_party/FP16' 2025-04-25T04:15:06.0295022Z Entering 'third_party/FXdiv' 2025-04-25T04:15:06.0680770Z Entering 'third_party/NNPACK' 2025-04-25T04:15:06.1061150Z Entering 'third_party/NVTX' 2025-04-25T04:15:06.1461372Z Entering 'third_party/VulkanMemoryAllocator' 2025-04-25T04:15:06.1855121Z Entering 'third_party/XNNPACK' 2025-04-25T04:15:06.2263032Z Entering 'third_party/benchmark' 2025-04-25T04:15:06.2701379Z Entering 'third_party/composable_kernel' 2025-04-25T04:15:06.3106240Z Entering 'third_party/cpp-httplib' 2025-04-25T04:15:06.3471124Z Entering 'third_party/cpuinfo' 2025-04-25T04:15:06.3866321Z Entering 'third_party/cudnn_frontend' 2025-04-25T04:15:06.4256559Z Entering 'third_party/cutlass' 2025-04-25T04:15:06.4647934Z Entering 'third_party/eigen' 2025-04-25T04:15:06.5049813Z Entering 'third_party/fbgemm' 2025-04-25T04:15:06.5413104Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-04-25T04:15:06.5799165Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-04-25T04:15:06.6222442Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-04-25T04:15:06.6611860Z Entering 'third_party/fbgemm/third_party/googletest' 2025-04-25T04:15:06.7024740Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-04-25T04:15:06.7430841Z Entering 'third_party/flash-attention' 2025-04-25T04:15:06.7799085Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-04-25T04:15:06.8245681Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-04-25T04:15:06.8649778Z Entering 'third_party/flatbuffers' 2025-04-25T04:15:06.9069644Z Entering 'third_party/fmt' 2025-04-25T04:15:06.9443109Z Entering 'third_party/gemmlowp/gemmlowp' 2025-04-25T04:15:06.9818619Z Entering 'third_party/gloo' 2025-04-25T04:15:07.0248764Z Entering 'third_party/googletest' 2025-04-25T04:15:07.0621231Z Entering 'third_party/ideep' 2025-04-25T04:15:07.0983082Z Entering 'third_party/ideep/mkl-dnn' 2025-04-25T04:15:07.1402992Z Entering 'third_party/ittapi' 2025-04-25T04:15:07.1771928Z Entering 'third_party/kineto' 2025-04-25T04:15:07.2140356Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-04-25T04:15:07.2508840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-04-25T04:15:07.2897824Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-04-25T04:15:07.3285533Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-04-25T04:15:07.3671618Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-04-25T04:15:07.4028240Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-04-25T04:15:07.4447100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-04-25T04:15:07.4836298Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-04-25T04:15:07.5287354Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-04-25T04:15:07.5677119Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-04-25T04:15:07.6088733Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-04-25T04:15:07.6506734Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-04-25T04:15:07.6909724Z Entering 'third_party/kleidiai' 2025-04-25T04:15:07.7280911Z Entering 'third_party/mimalloc' 2025-04-25T04:15:07.7696149Z Entering 'third_party/nlohmann' 2025-04-25T04:15:07.8069240Z Entering 'third_party/onnx' 2025-04-25T04:15:07.8443972Z Entering 'third_party/onnx/third_party/pybind11' 2025-04-25T04:15:07.8858133Z Entering 'third_party/opentelemetry-cpp' 2025-04-25T04:15:07.9226977Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-04-25T04:15:07.9637062Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-04-25T04:15:08.0022132Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-04-25T04:15:08.0401229Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-04-25T04:15:08.0789300Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-04-25T04:15:08.1177671Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-04-25T04:15:08.1645188Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-04-25T04:15:08.2014810Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-04-25T04:15:08.2400708Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-04-25T04:15:08.2837696Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-04-25T04:15:08.3259411Z Entering 'third_party/pocketfft' 2025-04-25T04:15:08.3637980Z Entering 'third_party/protobuf' 2025-04-25T04:15:08.4004038Z Entering 'third_party/protobuf/third_party/benchmark' 2025-04-25T04:15:08.4386292Z Entering 'third_party/protobuf/third_party/googletest' 2025-04-25T04:15:08.4804399Z Entering 'third_party/psimd' 2025-04-25T04:15:08.5215292Z Entering 'third_party/pthreadpool' 2025-04-25T04:15:08.5592902Z Entering 'third_party/pybind11' 2025-04-25T04:15:08.6008980Z Entering 'third_party/python-peachpy' 2025-04-25T04:15:08.6388906Z Entering 'third_party/sleef' 2025-04-25T04:15:08.6774872Z Entering 'third_party/tensorpipe' 2025-04-25T04:15:08.7191380Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-04-25T04:15:08.7829001Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-04-25T04:15:08.8226232Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-04-25T04:15:08.8602348Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-04-25T04:15:08.8963120Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-04-25T04:15:08.9696538Z ##[endgroup] 2025-04-25T04:15:08.9984940Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-04-25T04:15:09.0210668Z b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:15:09.0550688Z Prepare all required actions 2025-04-25T04:15:09.0619785Z ##[group]Run ./.github/actions/setup-win 2025-04-25T04:15:09.0620090Z with: 2025-04-25T04:15:09.0620275Z cuda-version: 12.6 2025-04-25T04:15:09.0620491Z env: 2025-04-25T04:15:09.0620669Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:09.0620903Z ##[endgroup] 2025-04-25T04:15:09.0704538Z ##[group]Run set -euo pipefail 2025-04-25T04:15:09.0704869Z set -euo pipefail 2025-04-25T04:15:09.0705151Z function get_ec2_metadata() { 2025-04-25T04:15:09.0705507Z  # Pulled from instance metadata endpoint for EC2 2025-04-25T04:15:09.0706126Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-04-25T04:15:09.0706666Z  category=$1 2025-04-25T04:15:09.0707591Z  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:15:09.0708491Z } 2025-04-25T04:15:09.0708736Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-04-25T04:15:09.0709142Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-04-25T04:15:09.0709594Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-04-25T04:15:09.0709993Z echo "system info $(uname -a)" 2025-04-25T04:15:09.0730599Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:09.0731126Z env: 2025-04-25T04:15:09.0731330Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:09.0731571Z ##[endgroup] 2025-04-25T04:15:09.1640375Z ami-id: ami-047591c381c19028d 2025-04-25T04:15:09.2086569Z instance-id: i-011f9a5b269b95681 2025-04-25T04:15:09.2598835Z instance-type: c5d.4xlarge 2025-04-25T04:15:09.2853188Z 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:15:09.2955928Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-04-25T04:15:09.2956986Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-04-25T04:15:09.2973729Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:15:09.2974214Z env: 2025-04-25T04:15:09.2974411Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:09.2974661Z ##[endgroup] 2025-04-25T04:15:09.6754309Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:15:09.6806644Z Finished 2025-04-25T04:15:09.7164002Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-04-25T04:15:09.7166365Z # Windows conda is baked into the AMI at this location 2025-04-25T04:15:09.7167099Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-04-25T04:15:09.7167654Z  2025-04-25T04:15:09.7168081Z { 2025-04-25T04:15:09.7168489Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-04-25T04:15:09.7169157Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-04-25T04:15:09.7169758Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-04-25T04:15:09.7170267Z } >> "${GITHUB_ENV}" 2025-04-25T04:15:09.7198252Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:09.7199030Z env: 2025-04-25T04:15:09.7199272Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:09.7199622Z ##[endgroup] 2025-04-25T04:15:09.7496069Z ##[group]Run set +e 2025-04-25T04:15:09.7496334Z set +e 2025-04-25T04:15:09.7496541Z set -x 2025-04-25T04:15:09.7496729Z  2025-04-25T04:15:09.7496954Z PYTHON3=$(${CONDA_RUN} which python3) 2025-04-25T04:15:09.7497261Z EXIT_CODE=$? 2025-04-25T04:15:09.7497465Z  2025-04-25T04:15:09.7499010Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-04-25T04:15:09.7499455Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-04-25T04:15:09.7499836Z  2025-04-25T04:15:09.7500044Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-04-25T04:15:09.7500467Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-04-25T04:15:09.7500769Z else 2025-04-25T04:15:09.7501392Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-04-25T04:15:09.7502127Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-04-25T04:15:09.7502814Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-04-25T04:15:09.7503402Z  # needed. In both cases, Python binary is just called python 2025-04-25T04:15:09.7503811Z  PYTHON=$(${CONDA_RUN} which python) 2025-04-25T04:15:09.7504106Z  EXIT_CODE=$? 2025-04-25T04:15:09.7504341Z  2025-04-25T04:15:09.7504539Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-04-25T04:15:09.7504994Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-04-25T04:15:09.7505419Z  2025-04-25T04:15:09.7505688Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-04-25T04:15:09.7506278Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-04-25T04:15:09.7506759Z  # here pointing to Python 2025-04-25T04:15:09.7507129Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-04-25T04:15:09.7507402Z  2025-04-25T04:15:09.7507623Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-04-25T04:15:09.7507966Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-04-25T04:15:09.7508274Z  else 2025-04-25T04:15:09.7508516Z  echo "Found no Python using ${CONDA_RUN}" 2025-04-25T04:15:09.7508841Z  fi 2025-04-25T04:15:09.7509030Z fi 2025-04-25T04:15:09.7528650Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:09.7529099Z env: 2025-04-25T04:15:09.7529307Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:09.7529769Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:09.7530368Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:09.7530871Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:09.7531230Z ##[endgroup] 2025-04-25T04:15:09.7794434Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-04-25T04:15:18.4167845Z 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:15:18.4214742Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-04-25T04:15:18.5001407Z + PYTHON3= 2025-04-25T04:15:18.5001659Z + EXIT_CODE=1 2025-04-25T04:15:18.5001943Z + [[ 1 == \0 ]] 2025-04-25T04:15:18.5065495Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-04-25T04:15:20.3458286Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-04-25T04:15:20.3458790Z + EXIT_CODE=0 2025-04-25T04:15:20.3459022Z + [[ 0 == \0 ]] 2025-04-25T04:15:20.3459869Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-04-25T04:15:20.3462107Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-04-25T04:15:20.3582166Z ++ echo /c/Jenkins/Miniconda3/python 2025-04-25T04:15:20.3638307Z ++ sed s/python/python3/ 2025-04-25T04:15:20.3719474Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-04-25T04:15:20.3719986Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-04-25T04:15:20.3915564Z ++ dirname /c/Jenkins/Miniconda3/python 2025-04-25T04:15:20.3992015Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-04-25T04:15:20.3992411Z + echo /c/Jenkins/Miniconda3 2025-04-25T04:15:20.4103444Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-04-25T04:15:20.4104127Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-04-25T04:15:20.4104634Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-04-25T04:15:20.4127515Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:20.4128046Z env: 2025-04-25T04:15:20.4128248Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:20.4128634Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:20.4129161Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:20.4129647Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:20.4130003Z ##[endgroup] 2025-04-25T04:15:20.5273179Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-04-25T04:15:20.5274190Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-04-25T04:15:20.5275012Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-04-25T04:15:20.5275499Z # that it doesn't interfere 2025-04-25T04:15:20.5275988Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-04-25T04:15:20.5292713Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:15:20.5293193Z env: 2025-04-25T04:15:20.5293389Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:20.5293792Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:20.5294411Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:20.5294986Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:20.5295414Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:20.5295715Z ##[endgroup] 2025-04-25T04:15:20.8988473Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:15:20.9061635Z Finished 2025-04-25T04:15:21.3722600Z ##[group]Run choco install handle -y 2025-04-25T04:15:21.3722941Z choco install handle -y 2025-04-25T04:15:21.3723261Z handle C:\actions-runner\_work\ 2025-04-25T04:15:21.3740135Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:15:21.3740608Z env: 2025-04-25T04:15:21.3740824Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:21.3741207Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:21.3741751Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:21.3742251Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:21.3742661Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:21.3742977Z ##[endgroup] 2025-04-25T04:15:21.7392309Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:15:21.7448640Z Finished 2025-04-25T04:15:24.7067382Z Chocolatey v2.4.2 2025-04-25T04:15:24.8850483Z Installing the following packages: 2025-04-25T04:15:24.8855943Z handle 2025-04-25T04:15:24.8860528Z By installing, you accept licenses for the packages. 2025-04-25T04:15:26.3451368Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-04-25T04:15:26.4804818Z 2025-04-25T04:15:26.4805527Z Progress: Downloading Handle 5.0... 15% 2025-04-25T04:15:26.4806385Z Progress: Downloading Handle 5.0... 45% 2025-04-25T04:15:26.4807605Z Progress: Downloading Handle 5.0... 75% 2025-04-25T04:15:26.4807976Z Progress: Downloading Handle 5.0... 100% 2025-04-25T04:15:26.6982473Z 2025-04-25T04:15:26.6982862Z handle v5.0.0 [Approved] 2025-04-25T04:15:26.7192988Z handle package files install completed. Performing other installation steps. 2025-04-25T04:15:28.6722971Z Downloading Handle 2025-04-25T04:15:28.6723377Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-04-25T04:15:28.7734686Z 2025-04-25T04:15:28.7873330Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-04-25T04:15:28.7890808Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-04-25T04:15:28.7908795Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-04-25T04:15:28.7929671Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-04-25T04:15:28.7933765Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-04-25T04:15:28.7941631Z Download of Handle.zip (729.82 KB) completed. 2025-04-25T04:15:31.8792266Z Hashes match. 2025-04-25T04:15:31.9078694Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-04-25T04:15:32.4513174Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-04-25T04:15:32.4687956Z HKEY_CURRENT_USER\Software\Sysinternals 2025-04-25T04:15:32.4721571Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-04-25T04:15:32.9689790Z ShimGen has successfully created a shim for handle.exe 2025-04-25T04:15:33.1637703Z ShimGen has successfully created a shim for handle64.exe 2025-04-25T04:15:33.3623776Z ShimGen has successfully created a shim for handle64a.exe 2025-04-25T04:15:33.3902639Z The install of handle was successful. 2025-04-25T04:15:33.3905674Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-04-25T04:15:33.4011890Z 2025-04-25T04:15:33.4012285Z Chocolatey installed 1/1 packages. 2025-04-25T04:15:33.4012819Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-04-25T04:15:33.5105189Z 2025-04-25T04:15:33.5105617Z Nthandle v5.0 - Handle viewer 2025-04-25T04:15:33.5105964Z Copyright (C) 1997-2022 Mark Russinovich 2025-04-25T04:15:33.5106365Z Sysinternals - www.sysinternals.com 2025-04-25T04:15:33.5106574Z 2025-04-25T04:15:33.5777036Z powershell.exe pid: 3612 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:15:33.5777707Z handle.exe pid: 5200 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:15:33.5778343Z handle.exe pid: 3144 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:15:33.5778982Z handle64.exe pid: 5900 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:15:33.6129920Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-04-25T04:15:33.6130353Z python3 .github/scripts/parse_ref.py 2025-04-25T04:15:33.6150721Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:33.6151170Z env: 2025-04-25T04:15:33.6151391Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:33.6151802Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:33.6152429Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:33.6153004Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:33.6153422Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:33.6153745Z ##[endgroup] 2025-04-25T04:15:33.7046141Z Prepare all required actions 2025-04-25T04:15:33.7082797Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-04-25T04:15:33.7083142Z with: 2025-04-25T04:15:33.7083810Z github-token: *** 2025-04-25T04:15:33.7084036Z env: 2025-04-25T04:15:33.7084227Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:33.7084718Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:33.7085331Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:33.7085830Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:33.7086260Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:33.7086564Z ##[endgroup] 2025-04-25T04:15:33.7173217Z ##[group]Run set -eux 2025-04-25T04:15:33.7173472Z set -eux 2025-04-25T04:15:33.7173881Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-04-25T04:15:33.7194005Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:33.7194452Z env: 2025-04-25T04:15:33.7194655Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:33.7195050Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:33.7195588Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:33.7196066Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:33.7196473Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:33.7197030Z GITHUB_TOKEN: *** 2025-04-25T04:15:33.7197234Z ##[endgroup] 2025-04-25T04:15:33.7392503Z + python3 .github/scripts/get_workflow_job_id.py 14656749847 i-011f9a5b269b95681 2025-04-25T04:15:34.2664718Z setting job-id=41133079877 2025-04-25T04:15:34.2665077Z setting job-name=win-vs2022-cuda12.6-py3 / build 2025-04-25T04:15:34.3052701Z Prepare all required actions 2025-04-25T04:15:34.3053133Z Getting action download info 2025-04-25T04:15:34.4824883Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-04-25T04:15:34.7118286Z ##[group]Run ./.github/actions/filter-test-configs 2025-04-25T04:15:34.7118814Z with: 2025-04-25T04:15:34.7119382Z github-token: *** 2025-04-25T04:15:34.7119713Z job-name: win-vs2022-cuda12.6-py3 / build 2025-04-25T04:15:34.7120150Z env: 2025-04-25T04:15:34.7120374Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:34.7121006Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:34.7121959Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:34.7122820Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:34.7124548Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:34.7125023Z ##[endgroup] 2025-04-25T04:15:34.7235460Z ##[group]Run nick-fields/retry@v3.0.0 2025-04-25T04:15:34.7235735Z with: 2025-04-25T04:15:34.7235922Z shell: bash 2025-04-25T04:15:34.7236174Z timeout_minutes: 10 2025-04-25T04:15:34.7236397Z max_attempts: 5 2025-04-25T04:15:34.7236652Z retry_wait_seconds: 30 2025-04-25T04:15:34.7237431Z 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:15:34.7238427Z polling_interval_seconds: 1 2025-04-25T04:15:34.7238685Z warning_on_retry: true 2025-04-25T04:15:34.7238932Z continue_on_error: false 2025-04-25T04:15:34.7239154Z env: 2025-04-25T04:15:34.7239339Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:34.7239719Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:34.7240269Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:34.7240765Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:34.7241165Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:34.7241707Z GITHUB_TOKEN: *** 2025-04-25T04:15:34.7241968Z ##[endgroup] 2025-04-25T04:15:34.8490475Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-04-25T04:15:39.2543340Z Collecting requests==2.27.1 2025-04-25T04:15:39.4494389Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-04-25T04:15:39.5732564Z Collecting pyyaml==6.0.1 2025-04-25T04:15:39.5797004Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-04-25T04:15:39.6030847Z 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:15:39.6037083Z 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:15:39.6049922Z 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:15:39.6064867Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-04-25T04:15:39.6393799Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-04-25T04:15:39.7032572Z ---------------------------------------- 63.1/63.1 kB 839.6 kB/s eta 0:00:00 2025-04-25T04:15:39.7112077Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-04-25T04:15:39.7563952Z ---------------------------------------- 152.8/152.8 kB 4.5 MB/s eta 0:00:00 2025-04-25T04:15:41.0288908Z Installing collected packages: requests, pyyaml 2025-04-25T04:15:41.0289754Z Attempting uninstall: requests 2025-04-25T04:15:41.0301505Z Found existing installation: requests 2.32.3 2025-04-25T04:15:41.0378318Z Uninstalling requests-2.32.3: 2025-04-25T04:15:41.0402007Z Successfully uninstalled requests-2.32.3 2025-04-25T04:15:41.1122025Z Attempting uninstall: pyyaml 2025-04-25T04:15:41.1128964Z Found existing installation: PyYAML 6.0.2 2025-04-25T04:15:41.1220876Z Uninstalling PyYAML-6.0.2: 2025-04-25T04:15:41.1245848Z Successfully uninstalled PyYAML-6.0.2 2025-04-25T04:15:41.2392998Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-04-25T04:15:41.8537902Z Command completed after 1 attempt(s). 2025-04-25T04:15:41.8692989Z ##[group]Run set -x 2025-04-25T04:15:41.8693232Z set -x 2025-04-25T04:15:41.8693420Z  2025-04-25T04:15:41.8693785Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-04-25T04:15:41.8694253Z # in runner workspace 2025-04-25T04:15:41.8694624Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-04-25T04:15:41.8715010Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:41.8715656Z env: 2025-04-25T04:15:41.8715854Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:41.8716313Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:41.8716850Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:41.8717344Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:41.8717760Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:41.8718251Z ##[endgroup] 2025-04-25T04:15:42.5054090Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-04-25T04:15:42.5707057Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-04-25T04:15:42.5707653Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-04-25T04:15:42.5708157Z echo "Job name: ${JOB_NAME}" 2025-04-25T04:15:42.5708554Z  2025-04-25T04:15:42.5709121Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-04-25T04:15:42.5709935Z # in runner workspace 2025-04-25T04:15:42.5710631Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-04-25T04:15:42.5711425Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-04-25T04:15:42.5711906Z  --job-name "${JOB_NAME}" \ 2025-04-25T04:15:42.5712334Z  --test-matrix "" \ 2025-04-25T04:15:42.5712746Z  --selected-test-configs "" \ 2025-04-25T04:15:42.5713223Z  --pr-number "${PR_NUMBER}" \ 2025-04-25T04:15:42.5713654Z  --tag "${TAG}" \ 2025-04-25T04:15:42.5714053Z  --event-name "${EVENT_NAME}" \ 2025-04-25T04:15:42.5714520Z  --schedule "${SCHEDULE}" \ 2025-04-25T04:15:42.5714959Z  --branch "${HEAD_BRANCH}" 2025-04-25T04:15:42.5736182Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:42.5737075Z env: 2025-04-25T04:15:42.5737317Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:42.5737972Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:42.5738923Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:42.5739787Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:42.5740483Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:42.5741297Z GITHUB_TOKEN: *** 2025-04-25T04:15:42.5741653Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-04-25T04:15:42.5742095Z PR_NUMBER: 2025-04-25T04:15:42.5742377Z TAG: ciflow/trunk/148893 2025-04-25T04:15:42.5742717Z EVENT_NAME: push 2025-04-25T04:15:42.5742993Z SCHEDULE: 2025-04-25T04:15:42.5743222Z HEAD_BRANCH: 2025-04-25T04:15:42.5743483Z ##[endgroup] 2025-04-25T04:15:42.5952139Z Workflow: trunk 2025-04-25T04:15:42.5952435Z Job name: win-vs2022-cuda12.6-py3 / build 2025-04-25T04:15:42.7240081Z C:\actions-runner\_work\pytorch\pytorch\.github\scripts\filter_test_configs.py:555: UserWarning: Invalid test matrix input '', exiting 2025-04-25T04:15:42.7241631Z warnings.warn(f"Invalid test matrix input '{args.test_matrix}', exiting") 2025-04-25T04:15:42.7478178Z ##[group]Run echo "Filtered matrix:" 2025-04-25T04:15:42.7478552Z echo "Filtered matrix:" 2025-04-25T04:15:42.7478811Z echo "" 2025-04-25T04:15:42.7478999Z  2025-04-25T04:15:42.7479182Z echo 2025-04-25T04:15:42.7479430Z echo "Is the current job unstable? " 2025-04-25T04:15:42.7479726Z  2025-04-25T04:15:42.7479897Z echo 2025-04-25T04:15:42.7480108Z echo "Is keep-going label set? " 2025-04-25T04:15:42.7480391Z  2025-04-25T04:15:42.7480557Z echo 2025-04-25T04:15:42.7480761Z echo "Renabled issues? " 2025-04-25T04:15:42.7501113Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:42.7501606Z env: 2025-04-25T04:15:42.7501792Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:42.7502200Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:42.7502731Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:42.7503220Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:42.7503635Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:42.7503933Z ##[endgroup] 2025-04-25T04:15:42.7719721Z Filtered matrix: 2025-04-25T04:15:42.7720000Z 2025-04-25T04:15:42.7720006Z 2025-04-25T04:15:42.7720148Z Is the current job unstable? 2025-04-25T04:15:42.7720334Z 2025-04-25T04:15:42.7720437Z Is keep-going label set? 2025-04-25T04:15:42.7720593Z 2025-04-25T04:15:42.7720673Z Renabled issues? 2025-04-25T04:15:42.7891927Z Prepare all required actions 2025-04-25T04:15:42.7892534Z Getting action download info 2025-04-25T04:15:42.9010752Z ##[group]Run ./.github/actions/pytest-cache-download 2025-04-25T04:15:42.9012255Z with: 2025-04-25T04:15:42.9012497Z cache_dir: .pytest_cache 2025-04-25T04:15:42.9012902Z job_identifier: trunk_win-vs2022-cuda12.6-py3 2025-04-25T04:15:42.9013401Z s3_bucket: gha-artifacts 2025-04-25T04:15:42.9013712Z env: 2025-04-25T04:15:42.9013961Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:42.9014581Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:42.9015546Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:42.9016587Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:42.9018283Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:42.9018752Z ##[endgroup] 2025-04-25T04:15:42.9123767Z ##[group]Run nick-fields/retry@v3.0.0 2025-04-25T04:15:42.9124090Z with: 2025-04-25T04:15:42.9124259Z shell: bash 2025-04-25T04:15:42.9124453Z timeout_minutes: 5 2025-04-25T04:15:42.9124658Z max_attempts: 5 2025-04-25T04:15:42.9124866Z retry_wait_seconds: 30 2025-04-25T04:15:42.9125162Z command: set -eu python3 -m pip install boto3==1.35.42 2025-04-25T04:15:42.9125523Z polling_interval_seconds: 1 2025-04-25T04:15:42.9125773Z warning_on_retry: true 2025-04-25T04:15:42.9125996Z continue_on_error: false 2025-04-25T04:15:42.9126223Z env: 2025-04-25T04:15:42.9126396Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:42.9126779Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:42.9127330Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:42.9127834Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:42.9128235Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:42.9128532Z ##[endgroup] 2025-04-25T04:15:44.4870328Z Collecting boto3==1.35.42 2025-04-25T04:15:44.7446052Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-04-25T04:15:45.5025558Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-04-25T04:15:45.5080902Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-04-25T04:15:45.5150618Z 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:15:45.5440352Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-04-25T04:15:45.5491018Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-04-25T04:15:45.5640801Z 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:15:45.5654931Z 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:15:45.8206817Z 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:15:45.8466400Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-04-25T04:15:45.9760419Z ---------------------------------------- 139.2/139.2 kB 1.2 MB/s eta 0:00:00 2025-04-25T04:15:45.9810981Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-04-25T04:15:46.0996422Z ---------------------------------------- 13.3/13.3 MB 131.0 MB/s eta 0:00:00 2025-04-25T04:15:46.1048373Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-04-25T04:15:46.1140886Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-04-25T04:15:47.0184031Z Installing collected packages: botocore, s3transfer, boto3 2025-04-25T04:15:47.0184952Z Attempting uninstall: botocore 2025-04-25T04:15:47.0194128Z Found existing installation: botocore 1.36.3 2025-04-25T04:15:47.2325993Z Uninstalling botocore-1.36.3: 2025-04-25T04:15:47.3272635Z Successfully uninstalled botocore-1.36.3 2025-04-25T04:15:49.7461076Z Attempting uninstall: s3transfer 2025-04-25T04:15:49.7471457Z Found existing installation: s3transfer 0.11.2 2025-04-25T04:15:49.7549671Z Uninstalling s3transfer-0.11.2: 2025-04-25T04:15:49.7572777Z Successfully uninstalled s3transfer-0.11.2 2025-04-25T04:15:49.8376162Z Attempting uninstall: boto3 2025-04-25T04:15:49.8384988Z Found existing installation: boto3 1.36.3 2025-04-25T04:15:49.8565398Z Uninstalling boto3-1.36.3: 2025-04-25T04:15:49.8625188Z Successfully uninstalled boto3-1.36.3 2025-04-25T04:15:50.4639358Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-04-25T04:15:51.0359524Z Command completed after 1 attempt(s). 2025-04-25T04:15:51.0529742Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-04-25T04:15:51.0530193Z python3 .github/scripts/pytest_cache.py \ 2025-04-25T04:15:51.0530540Z  --download \ 2025-04-25T04:15:51.0530819Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-04-25T04:15:51.0531166Z  --pr_identifier $GITHUB_REF \ 2025-04-25T04:15:51.0531482Z  --job_identifier $JOB_IDENTIFIER \ 2025-04-25T04:15:51.0531796Z  --temp_dir $RUNNER_TEMP \ 2025-04-25T04:15:51.0532072Z  --repo $REPO \ 2025-04-25T04:15:51.0532318Z  --bucket $BUCKET \ 2025-04-25T04:15:51.0551665Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:51.0552115Z env: 2025-04-25T04:15:51.0552307Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:51.0552741Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:51.0553287Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:51.0553769Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:51.0554195Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:51.0554494Z CACHE_DIR: .pytest_cache 2025-04-25T04:15:51.0554774Z JOB_IDENTIFIER: trunk_win-vs2022-cuda12.6-py3 2025-04-25T04:15:51.0555090Z REPO: pytorch/pytorch 2025-04-25T04:15:51.0555309Z BUCKET: gha-artifacts 2025-04-25T04:15:51.0555523Z ##[endgroup] 2025-04-25T04:15:51.9660764Z PR identifier for `refs/tags/ciflow/trunk/148893` is `30779d575b8a47fc2a1c4cbc49ad63f8` 2025-04-25T04:15:51.9662539Z 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-cuda12.6-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:51.9664637Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/30779d575b8a47fc2a1c4cbc49ad63f8/trunk_win-vs2022-cuda12_6-py3` in bucket `gha-artifacts` 2025-04-25T04:15:52.0412251Z ##[group]Run .ci/pytorch/win-build.sh 2025-04-25T04:15:52.0412765Z .ci/pytorch/win-build.sh 2025-04-25T04:15:52.0433961Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:15:52.0434727Z env: 2025-04-25T04:15:52.0434956Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:15:52.0435594Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:15:52.0436540Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:15:52.0437413Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:15:52.0438273Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:15:52.0438899Z PYTORCH_FINAL_PACKAGE_DIR: /c/14656749847/build-results/ 2025-04-25T04:15:52.0439450Z BRANCH: 2025-04-25T04:15:52.0439737Z BUILD_ENVIRONMENT: win-vs2022-cuda12.6-py3 2025-04-25T04:15:52.0440209Z BUILD_WHEEL: 1 2025-04-25T04:15:52.0440465Z MAX_JOBS: 8 2025-04-25T04:15:52.0440749Z CUDA_VERSION: 12.6 2025-04-25T04:15:52.0441041Z PYTHON_VERSION: 3.9 2025-04-25T04:15:52.0441387Z SCCACHE_BUCKET: ossci-compiler-cache 2025-04-25T04:15:52.0441832Z SCCACHE_S3_KEY_PREFIX: trunk 2025-04-25T04:15:52.0442210Z SCCACHE_REGION: us-east-1 2025-04-25T04:15:52.0442555Z VC_PRODUCT: BuildTools 2025-04-25T04:15:52.0442877Z VC_VERSION: 2025-04-25T04:15:52.0443120Z VC_YEAR: 2019 2025-04-25T04:15:52.0443643Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-04-25T04:15:52.0444353Z AWS_DEFAULT_REGION: us-east-1 2025-04-25T04:15:52.0444714Z PR_NUMBER: 2025-04-25T04:15:52.0445046Z SHA1: b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:15:52.0445497Z DEBUG: 0 2025-04-25T04:15:52.0445757Z TORCH_CUDA_ARCH_LIST: 8.6 2025-04-25T04:15:52.0446080Z USE_CUDA: 1 2025-04-25T04:15:52.0446319Z USE_XPU: 0 2025-04-25T04:15:52.0446551Z XPU_VERSION: 2025-04-25T04:15:52.0446823Z OUR_GITHUB_JOB_ID: 41133079877 2025-04-25T04:15:52.0447189Z ##[endgroup] 2025-04-25T04:15:52.1230736Z ++ [[ win-vs2022-cuda12.6-py3 == *rocm* ]] 2025-04-25T04:15:52.1231114Z ++ BUILD_TEST_LIBTORCH=0 2025-04-25T04:15:52.1231513Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-04-25T04:15:52.1233397Z ++ [[ win-vs2022-cuda12.6-py3 != *win-* ]] 2025-04-25T04:15:52.1233820Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:52.1234310Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:52.1294608Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:15:52.1396266Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-04-25T04:15:52.1396703Z + export TMP_DIR_WIN 2025-04-25T04:15:52.1397027Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/14656749847/build-results/ 2025-04-25T04:15:52.1397474Z + PYTORCH_FINAL_PACKAGE_DIR=/c/14656749847/build-results/ 2025-04-25T04:15:52.1397870Z + [[ -n /c/14656749847/build-results/ ]] 2025-04-25T04:15:52.1398168Z + mkdir -p /c/14656749847/build-results/ 2025-04-25T04:15:52.1564454Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-04-25T04:15:52.1565281Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-04-25T04:15:52.1565750Z + set +ex 2025-04-25T04:15:53.2498461Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-04-25T04:15:53.2645877Z 2025-04-25T04:15:53.2646734Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-04-25T04:15:53.2649811Z 2025-04-25T04:15:53.2654205Z 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:53.2656970Z 2025-04-25T04:15:53.2657521Z 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:53.2658179Z 2025-04-25T04:15:53.2658731Z 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:53.2667997Z 2025-04-25T04:15:53.2668391Z C:\actions-runner\_work\pytorch\pytorch>if "12.6" == "cpu" ( 2025-04-25T04:15:53.2668828Z echo skip magma installation for cpu builds 2025-04-25T04:15:53.2669151Z exit /b 0 2025-04-25T04:15:53.2669325Z ) 2025-04-25T04:15:53.2669490Z 2025-04-25T04:15:53.2669858Z C:\actions-runner\_work\pytorch\pytorch>rem remove dot in cuda_version, fox example 11.1 to 111 2025-04-25T04:15:53.2671302Z 2025-04-25T04:15:53.2671784Z C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" (exit /b 0 ) 2025-04-25T04:15:53.2673327Z 2025-04-25T04:15:53.2673657Z C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-04-25T04:15:53.2674142Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-04-25T04:15:53.2674535Z exit /b 1 2025-04-25T04:15:53.2674707Z ) 2025-04-25T04:15:53.2674822Z 2025-04-25T04:15:53.2675039Z C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=126 2025-04-25T04:15:53.2677365Z 2025-04-25T04:15:53.2677696Z C:\actions-runner\_work\pytorch\pytorch>set CUDA_SUFFIX=cuda126 2025-04-25T04:15:53.2680165Z 2025-04-25T04:15:53.2680513Z C:\actions-runner\_work\pytorch\pytorch>if "cuda126" == "" ( 2025-04-25T04:15:53.2681008Z echo unknown CUDA version, please set `CUDA_VERSION` higher than 10.2 2025-04-25T04:15:53.2681400Z exit /b 1 2025-04-25T04:15:53.2681569Z ) 2025-04-25T04:15:53.2683306Z 2025-04-25T04:15:53.2683566Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-04-25T04:15:53.2685266Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/magma_2.5.4_cuda126_release.7z --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z ) else (aws s3 cp s3://ossci-windows/magma_2.5.4_cuda126_release.7z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z --quiet ) 2025-04-25T04:15:53.2687009Z if errorlevel 1 exit /b 2025-04-25T04:15:53.2687266Z if not errorlevel 0 exit /b 2025-04-25T04:15:53.2687972Z 7z x -aoa C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z -oC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-04-25T04:15:53.2688684Z if errorlevel 1 exit /b 2025-04-25T04:15:53.2688939Z if not errorlevel 0 exit /b 2025-04-25T04:15:53.2689165Z ) 2025-04-25T04:15:55.6017683Z 2025-04-25T04:15:55.6018265Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-04-25T04:15:55.6018654Z 2025-04-25T04:15:55.6018755Z Scanning the drive for archives: 2025-04-25T04:15:55.6019025Z 1 file, 62070579 bytes (60 MiB) 2025-04-25T04:15:55.6019208Z 2025-04-25T04:15:55.6019556Z Extracting archive: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-04-25T04:15:56.9569861Z -- 2025-04-25T04:15:56.9570406Z Path = C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-04-25T04:15:56.9570950Z Type = 7z 2025-04-25T04:15:56.9571150Z Physical Size = 62070579 2025-04-25T04:15:56.9571452Z Headers Size = 931 2025-04-25T04:15:56.9571687Z Method = LZMA2:24 2025-04-25T04:15:56.9571886Z Solid = + 2025-04-25T04:15:56.9572823Z Blocks = 1 2025-04-25T04:15:56.9572941Z 2025-04-25T04:15:56.9573032Z Everything is Ok 2025-04-25T04:15:56.9573156Z 2025-04-25T04:15:56.9590981Z Folders: 2 2025-04-25T04:15:56.9591295Z Files: 68 2025-04-25T04:15:56.9591492Z Size: 144236024 2025-04-25T04:15:56.9591731Z Compressed: 62070579 2025-04-25T04:15:56.9595649Z 2025-04-25T04:15:56.9596334Z C:\actions-runner\_work\pytorch\pytorch>set MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-04-25T04:15:56.9599461Z 2025-04-25T04:15:56.9599992Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-04-25T04:15:56.9600892Z 2025-04-25T04:15:56.9601380Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-04-25T04:15:56.9602883Z 2025-04-25T04:15:56.9603547Z 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:56.9614312Z 2025-04-25T04:15:56.9615037Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-04-25T04:15:56.9619955Z 2025-04-25T04:15:56.9620263Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-04-25T04:15:56.9620804Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-04-25T04:15:56.9621293Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-04-25T04:15:56.9621826Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-04-25T04:15:56.9622289Z ) 2025-04-25T04:15:56.9623725Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/sccache-v0.7.4.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) else (aws s3 cp s3://ossci-windows/sccache-v0.7.4.exe C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) 2025-04-25T04:15:56.9625121Z ) 2025-04-25T04:15:58.2967614Z Completed 256.0 KiB/18.8 MiB (636.0 KiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.2978602Z Completed 512.0 KiB/18.8 MiB (1.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.2994798Z Completed 768.0 KiB/18.8 MiB (1.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3007167Z Completed 1.0 MiB/18.8 MiB (2.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3017462Z Completed 1.2 MiB/18.8 MiB (3.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3026070Z Completed 1.5 MiB/18.8 MiB (3.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3037520Z Completed 1.8 MiB/18.8 MiB (4.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3050545Z Completed 2.0 MiB/18.8 MiB (5.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3058334Z Completed 2.2 MiB/18.8 MiB (5.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3073634Z Completed 2.5 MiB/18.8 MiB (6.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3081081Z Completed 2.8 MiB/18.8 MiB (6.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3089046Z Completed 3.0 MiB/18.8 MiB (7.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3097057Z Completed 3.2 MiB/18.8 MiB (7.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3103593Z Completed 3.5 MiB/18.8 MiB (8.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3111920Z Completed 3.8 MiB/18.8 MiB (9.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3119998Z Completed 4.0 MiB/18.8 MiB (9.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3127566Z Completed 4.2 MiB/18.8 MiB (10.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3133176Z Completed 4.5 MiB/18.8 MiB (10.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3139848Z Completed 4.8 MiB/18.8 MiB (11.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3146856Z Completed 5.0 MiB/18.8 MiB (11.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3154670Z Completed 5.2 MiB/18.8 MiB (12.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3160473Z Completed 5.5 MiB/18.8 MiB (13.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3167709Z Completed 5.8 MiB/18.8 MiB (13.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3174659Z Completed 6.0 MiB/18.8 MiB (14.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3179469Z Completed 6.2 MiB/18.8 MiB (14.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3185916Z Completed 6.5 MiB/18.8 MiB (15.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3191924Z Completed 6.8 MiB/18.8 MiB (15.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3197367Z Completed 7.0 MiB/18.8 MiB (16.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3202888Z Completed 7.2 MiB/18.8 MiB (17.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3208331Z Completed 7.5 MiB/18.8 MiB (17.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3217699Z Completed 7.8 MiB/18.8 MiB (18.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3279126Z Completed 8.0 MiB/18.8 MiB (18.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3283044Z Completed 8.2 MiB/18.8 MiB (18.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3292367Z Completed 8.5 MiB/18.8 MiB (19.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3297330Z Completed 8.8 MiB/18.8 MiB (20.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3305365Z Completed 9.0 MiB/18.8 MiB (20.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3313535Z Completed 9.2 MiB/18.8 MiB (21.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3318902Z Completed 9.5 MiB/18.8 MiB (21.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3324889Z Completed 9.8 MiB/18.8 MiB (22.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3330586Z Completed 10.0 MiB/18.8 MiB (22.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3336194Z Completed 10.2 MiB/18.8 MiB (23.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3342410Z Completed 10.5 MiB/18.8 MiB (23.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3348327Z Completed 10.8 MiB/18.8 MiB (24.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3353637Z Completed 11.0 MiB/18.8 MiB (24.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3360126Z Completed 11.2 MiB/18.8 MiB (25.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3366006Z Completed 11.5 MiB/18.8 MiB (25.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3370806Z Completed 11.8 MiB/18.8 MiB (26.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3378992Z Completed 12.0 MiB/18.8 MiB (27.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3384958Z Completed 12.2 MiB/18.8 MiB (27.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3392360Z Completed 12.5 MiB/18.8 MiB (28.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3400131Z Completed 12.8 MiB/18.8 MiB (28.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3406916Z Completed 13.0 MiB/18.8 MiB (29.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3412510Z Completed 13.2 MiB/18.8 MiB (29.7 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3419556Z Completed 13.5 MiB/18.8 MiB (30.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3427194Z Completed 13.8 MiB/18.8 MiB (30.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3432961Z Completed 14.0 MiB/18.8 MiB (31.3 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3439688Z Completed 14.2 MiB/18.8 MiB (31.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3446730Z Completed 14.5 MiB/18.8 MiB (32.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3454845Z Completed 14.8 MiB/18.8 MiB (33.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3462764Z Completed 15.0 MiB/18.8 MiB (33.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3469166Z Completed 15.2 MiB/18.8 MiB (33.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3474793Z Completed 15.5 MiB/18.8 MiB (34.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3480992Z Completed 15.8 MiB/18.8 MiB (34.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.3494430Z Completed 16.0 MiB/18.8 MiB (35.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4725061Z Completed 16.2 MiB/18.8 MiB (35.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4737636Z Completed 16.5 MiB/18.8 MiB (28.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4746083Z Completed 16.8 MiB/18.8 MiB (28.9 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4753984Z Completed 17.0 MiB/18.8 MiB (29.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4760764Z Completed 17.2 MiB/18.8 MiB (29.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4769413Z Completed 17.5 MiB/18.8 MiB (30.2 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4776789Z Completed 17.8 MiB/18.8 MiB (30.6 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.4783438Z Completed 18.0 MiB/18.8 MiB (31.1 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.5024047Z Completed 18.2 MiB/18.8 MiB (31.5 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.5030942Z Completed 18.5 MiB/18.8 MiB (30.4 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.5047154Z Completed 18.8 MiB/18.8 MiB (30.8 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.5055831Z Completed 18.8 MiB/18.8 MiB (31.0 MiB/s) with 1 file(s) remaining 2025-04-25T04:15:58.5056447Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-04-25T04:15:58.6191810Z 2025-04-25T04:15:58.6192667Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-04-25T04:15:58.6193029Z 2025-04-25T04:15:58.6193291Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-04-25T04:15:58.6195149Z 2025-04-25T04:15:58.6195400Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-04-25T04:15:58.6195789Z set CUDA_VERSION=xpu 2025-04-25T04:15:58.6196333Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-04-25T04:15:58.6196922Z if errorlevel 1 exit /b 1 2025-04-25T04:15:58.6197161Z ) 2025-04-25T04:15:58.6197707Z 2025-04-25T04:15:58.6198585Z 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:58.6209977Z 2025-04-25T04:15:58.6210854Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cuda12.6-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-04-25T04:15:58.6213879Z 2025-04-25T04:15:58.6214356Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-04-25T04:15:58.6217374Z 2025-04-25T04:15:58.6217597Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-04-25T04:15:58.6218711Z 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:58.6219720Z if errorlevel 1 exit /b 2025-04-25T04:15:58.6219993Z if not errorlevel 0 exit /b 2025-04-25T04:15:58.6220832Z 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:58.6221671Z if errorlevel 1 exit /b 2025-04-25T04:15:58.6221936Z if not errorlevel 0 exit /b 2025-04-25T04:15:58.6222173Z ) 2025-04-25T04:15:58.6222281Z 2025-04-25T04:15:58.6222646Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-04-25T04:16:00.1412238Z Collecting mkl-include==2021.4.0 2025-04-25T04:16:00.3372179Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-04-25T04:16:00.3631629Z Collecting mkl-devel==2021.4.0 2025-04-25T04:16:00.3687058Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-04-25T04:16:00.3970877Z Collecting mkl==2021.4.0 (from mkl-devel==2021.4.0) 2025-04-25T04:16:00.4035822Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-04-25T04:16:00.4349632Z Collecting intel-openmp==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-04-25T04:16:00.4407559Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.2 kB) 2025-04-25T04:16:00.4663939Z Collecting tbb==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-04-25T04:16:00.4718302Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-04-25T04:16:00.4874407Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-04-25T04:16:00.6105440Z ---------------------------------------- 1.2/1.2 MB 9.5 MB/s eta 0:00:00 2025-04-25T04:16:00.6173097Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl (9.1 MB) 2025-04-25T04:16:00.7002414Z ---------------------------------------- 9.1/9.1 MB 117.0 MB/s eta 0:00:00 2025-04-25T04:16:00.7079046Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl (228.5 MB) 2025-04-25T04:16:03.3756764Z ---------------------------------------- 228.5/228.5 MB 6.6 MB/s eta 0:00:00 2025-04-25T04:16:03.3841364Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl (3.5 MB) 2025-04-25T04:16:03.4179615Z ---------------------------------------- 3.5/3.5 MB 219.2 MB/s eta 0:00:00 2025-04-25T04:16:03.4249893Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-04-25T04:16:03.4359332Z --------------------------------------- 286.9/286.9 kB 17.3 MB/s eta 0:00:00 2025-04-25T04:16:04.9332488Z Installing collected packages: tbb, mkl-include, intel-openmp, mkl, mkl-devel 2025-04-25T04:16:09.3869342Z 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:16:10.0741451Z ********************************************************************** 2025-04-25T04:16:10.0741921Z ** Visual Studio 2019 Developer Command Prompt v16.11.44 2025-04-25T04:16:10.0742302Z ** Copyright (c) 2021 Microsoft Corporation 2025-04-25T04:16:10.0743078Z ********************************************************************** 2025-04-25T04:16:10.5673855Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-04-25T04:16:10.5675493Z 2025-04-25T04:16:10.5675731Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-04-25T04:16:10.5681829Z 2025-04-25T04:16:10.5682174Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" goto cuda_build_end 2025-04-25T04:16:10.5683598Z 2025-04-25T04:16:10.5684067Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:10.5686978Z 2025-04-25T04:16:10.5687546Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-04-25T04:16:10.5688120Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-04-25T04:16:10.5688524Z goto fail 2025-04-25T04:16:10.5688699Z ) 2025-04-25T04:16:10.5688799Z 2025-04-25T04:16:10.5689126Z (base) C:\actions-runner\_work\pytorch\pytorch>rem version transformer, for example 10.1 to 10_1. 2025-04-25T04:16:10.5689575Z 2025-04-25T04:16:10.5690059Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-04-25T04:16:10.5690637Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-04-25T04:16:10.5691103Z goto fail 2025-04-25T04:16:10.5691287Z ) 2025-04-25T04:16:10.5691386Z 2025-04-25T04:16:10.5691641Z (base) C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=12_6 2025-04-25T04:16:10.5694034Z 2025-04-25T04:16:10.5694521Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:10.5696617Z 2025-04-25T04:16:10.5697136Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-04-25T04:16:10.5698988Z 2025-04-25T04:16:10.5699758Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:10.5701263Z 2025-04-25T04:16:10.5701732Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:10.5704177Z 2025-04-25T04:16:10.5712509Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-04-25T04:16:10.5720901Z 2025-04-25T04:16:10.5721114Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-04-25T04:16:10.5721454Z 2025-04-25T04:16:10.5729527Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-04-25T04:16:10.5738489Z 2025-04-25T04:16:10.5738763Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-04-25T04:16:10.5739154Z 2025-04-25T04:16:10.5739381Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-04-25T04:16:10.5739711Z 2025-04-25T04:16:10.5739972Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-04-25T04:16:10.5740347Z 2025-04-25T04:16:10.5740551Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-04-25T04:16:10.5875431Z Stopping sccache server... 2025-04-25T04:16:11.5943130Z sccache: error: couldn't connect to server 2025-04-25T04:16:11.5945571Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-04-25T04:16:11.5971430Z 2025-04-25T04:16:11.5972023Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-04-25T04:16:11.6072086Z sccache: Starting the server... 2025-04-25T04:16:11.8882936Z 2025-04-25T04:16:11.8883566Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-04-25T04:16:11.9001326Z Compile requests 0 2025-04-25T04:16:11.9001771Z Compile requests executed 0 2025-04-25T04:16:11.9002061Z Cache hits 0 2025-04-25T04:16:11.9002369Z Cache misses 0 2025-04-25T04:16:11.9002650Z Cache timeouts 0 2025-04-25T04:16:11.9002921Z Cache read errors 0 2025-04-25T04:16:11.9003200Z Forced recaches 0 2025-04-25T04:16:11.9003470Z Cache write errors 0 2025-04-25T04:16:11.9003748Z Compilation failures 0 2025-04-25T04:16:11.9004022Z Cache errors 0 2025-04-25T04:16:11.9004311Z Non-cacheable compilations 0 2025-04-25T04:16:11.9004593Z Non-cacheable calls 0 2025-04-25T04:16:11.9004885Z Non-compilation calls 0 2025-04-25T04:16:11.9005185Z Unsupported compiler calls 0 2025-04-25T04:16:11.9005472Z Average cache write 0.000 s 2025-04-25T04:16:11.9005782Z Average compiler 0.000 s 2025-04-25T04:16:11.9006071Z Average cache read hit 0.000 s 2025-04-25T04:16:11.9006374Z Failed distributed compilations 0 2025-04-25T04:16:11.9006772Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-04-25T04:16:11.9007190Z Version (client) 0.7.4 2025-04-25T04:16:11.9023712Z 2025-04-25T04:16:11.9024353Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-04-25T04:16:11.9026136Z 2025-04-25T04:16:11.9026517Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-04-25T04:16:11.9028621Z 2025-04-25T04:16:11.9028901Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-04-25T04:16:11.9033144Z 2025-04-25T04:16:11.9033611Z (base) C:\actions-runner\_work\pytorch\pytorch>if "1" == "1" ( 2025-04-25T04:16:11.9033985Z 2025-04-25T04:16:11.9034160Z 2025-04-25T04:16:11.9034312Z 2025-04-25T04:16:11.9035335Z 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:16:11.9036261Z The system cannot find the drive specified. 2025-04-25T04:16:11.9036582Z if errorlevel 1 goto fail 2025-04-25T04:16:11.9036845Z if not errorlevel 0 goto fail 2025-04-25T04:16:11.9038062Z echo @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe" %* 1>"C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat" 2025-04-25T04:16:11.9039451Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:16:11.9040229Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:16:11.9041129Z for /F "usebackq delims=" %n in (`cygpath -m "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe"`) do set CMAKE_CUDA_COMPILER=%n 2025-04-25T04:16:11.9042383Z 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:16:11.9043231Z ) 2025-04-25T04:16:11.9043451Z The system cannot find the drive specified. 2025-04-25T04:16:11.9043768Z The system cannot find the drive specified. 2025-04-25T04:16:12.8738418Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-04-25T04:16:12.8738915Z Dload Upload Total Spent Left Speed 2025-04-25T04:16:12.8739167Z 2025-04-25T04:16:12.9721279Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-04-25T04:16:12.9721755Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-04-25T04:16:13.0059296Z 2025-04-25T04:16:13.0060192Z 100 303k 100 303k 0 0 2153k 0 --:--:-- --:--:-- --:--:-- 2153k 2025-04-25T04:16:13.0239629Z @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe" %* 2025-04-25T04:16:13.0460221Z 2025-04-25T04:16:13.0461729Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-04-25T04:16:13.0465138Z 2025-04-25T04:16:13.0465569Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-04-25T04:16:13.0466092Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-04-25T04:16:13.0466532Z ALLUSERSPROFILE=C:\ProgramData 2025-04-25T04:16:13.0466968Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-04-25T04:16:13.0467407Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-04-25T04:16:13.0467728Z AWS_DEFAULT_REGION=us-east-1 2025-04-25T04:16:13.0467989Z AWS_EXECUTION_ENV=EC2 2025-04-25T04:16:13.0468202Z BRANCH= 2025-04-25T04:16:13.0468432Z BUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 2025-04-25T04:16:13.0468726Z BUILD_TYPE=release 2025-04-25T04:16:13.0468939Z BUILD_WHEEL=1 2025-04-25T04:16:13.0469115Z CI=true 2025-04-25T04:16:13.0469497Z CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-04-25T04:16:13.0470540Z 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:16:13.0471417Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-04-25T04:16:13.0471706Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-04-25T04:16:13.0471964Z CMAKE_GENERATOR=Ninja 2025-04-25T04:16:13.0472207Z CommandPromptType=Native 2025-04-25T04:16:13.0472494Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-04-25T04:16:13.0472836Z COMPUTERNAME=EC2AMAZ-DD9BHOF 2025-04-25T04:16:13.0473096Z COMSPEC=C:\Windows\system32\cmd.exe 2025-04-25T04:16:13.0473483Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:16:13.0474718Z CONDA_DEFAULT_ENV=base 2025-04-25T04:16:13.0475024Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-04-25T04:16:13.0475450Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:16:13.0475819Z CONDA_PARENT_DIR=C:\Jenkins 2025-04-25T04:16:13.0476083Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-04-25T04:16:13.0476356Z CONDA_PROMPT_MODIFIER=(base) 2025-04-25T04:16:13.0476658Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-04-25T04:16:13.0477116Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:16:13.0477539Z CONDA_SHLVL=1 2025-04-25T04:16:13.0478533Z CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:16:13.0479127Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:13.0479632Z CUDA_PATH_V11_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8 2025-04-25T04:16:13.0480164Z CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4 2025-04-25T04:16:13.0480667Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:13.0481174Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-04-25T04:16:13.0481554Z CUDA_SUFFIX=cuda126 2025-04-25T04:16:13.0481919Z CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:13.0482335Z CUDA_VERSION=12.6 2025-04-25T04:16:13.0482594Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-04-25T04:16:13.0483006Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-04-25T04:16:13.0483418Z CommonProgramW6432=C:\Program Files\Common Files 2025-04-25T04:16:13.0483891Z CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-04-25T04:16:13.0484420Z CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-04-25T04:16:13.0484808Z DEBUG=0 2025-04-25T04:16:13.0485165Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\ 2025-04-25T04:16:13.0485616Z DISTUTILS_USE_SDK=1 2025-04-25T04:16:13.0485894Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-04-25T04:16:13.0486215Z EC2LAUNCH_TELEMETRY=1 2025-04-25T04:16:13.0486615Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-04-25T04:16:13.0487063Z Framework40Version=v4.0 2025-04-25T04:16:13.0487355Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-04-25T04:16:13.0487745Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-04-25T04:16:13.0488094Z FrameworkVersion=v4.0.30319 2025-04-25T04:16:13.0488342Z FrameworkVersion64=v4.0.30319 2025-04-25T04:16:13.0488606Z GITHUB_ACTION=build 2025-04-25T04:16:13.0488814Z GITHUB_ACTIONS=true 2025-04-25T04:16:13.0489017Z GITHUB_ACTION_REF= 2025-04-25T04:16:13.0489228Z GITHUB_ACTION_REPOSITORY= 2025-04-25T04:16:13.0489468Z GITHUB_ACTOR=pytorch-bot[bot] 2025-04-25T04:16:13.0489725Z GITHUB_ACTOR_ID=54816060 2025-04-25T04:16:13.0489998Z GITHUB_API_URL=https://api.github.com 2025-04-25T04:16:13.0490278Z GITHUB_BASE_REF= 2025-04-25T04:16:13.0490733Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_a7141e9d-ef28-4024-b629-07a628c07362 2025-04-25T04:16:13.0491283Z GITHUB_EVENT_NAME=push 2025-04-25T04:16:13.0491642Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-04-25T04:16:13.0492115Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-04-25T04:16:13.0492551Z GITHUB_HEAD_REF= 2025-04-25T04:16:13.0492752Z GITHUB_JOB=build 2025-04-25T04:16:13.0493235Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_a7141e9d-ef28-4024-b629-07a628c07362 2025-04-25T04:16:13.0494053Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_a7141e9d-ef28-4024-b629-07a628c07362 2025-04-25T04:16:13.0494611Z GITHUB_REF=refs/tags/ciflow/trunk/148893 2025-04-25T04:16:13.0494912Z GITHUB_REF_NAME=ciflow/trunk/148893 2025-04-25T04:16:13.0495189Z GITHUB_REF_PROTECTED=false 2025-04-25T04:16:13.0495580Z GITHUB_REF_TYPE=tag 2025-04-25T04:16:13.0495819Z GITHUB_REPOSITORY=pytorch/pytorch 2025-04-25T04:16:13.0496115Z GITHUB_REPOSITORY_ID=65600975 2025-04-25T04:16:13.0496376Z GITHUB_REPOSITORY_OWNER=pytorch 2025-04-25T04:16:13.0496659Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-04-25T04:16:13.0496933Z GITHUB_RETENTION_DAYS=90 2025-04-25T04:16:13.0497181Z GITHUB_RUN_ATTEMPT=1 2025-04-25T04:16:13.0497394Z GITHUB_RUN_ID=14656749847 2025-04-25T04:16:13.0497628Z GITHUB_RUN_NUMBER=124706 2025-04-25T04:16:13.0497878Z GITHUB_SERVER_URL=https://github.com 2025-04-25T04:16:13.0498211Z GITHUB_SHA=b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:16:13.0498917Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_a7141e9d-ef28-4024-b629-07a628c07362 2025-04-25T04:16:13.0499775Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_a7141e9d-ef28-4024-b629-07a628c07362 2025-04-25T04:16:13.0500405Z GITHUB_TRIGGERING_ACTOR=pytorch-bot[bot] 2025-04-25T04:16:13.0500690Z GITHUB_WORKFLOW=trunk 2025-04-25T04:16:13.0501146Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/tags/ciflow/trunk/148893 2025-04-25T04:16:13.0501733Z GITHUB_WORKFLOW_SHA=b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:16:13.0502179Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:16:13.0502530Z GIT_DEFAULT_BRANCH=main 2025-04-25T04:16:13.0502765Z HOME=C:\Users\runneruser 2025-04-25T04:16:13.0504538Z 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:16:13.0506653Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-04-25T04:16:13.0508124Z 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:16:13.0510551Z 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:16:13.0512120Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-04-25T04:16:13.0512559Z MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-04-25T04:16:13.0512960Z MAX_JOBS=8 2025-04-25T04:16:13.0513244Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-04-25T04:16:13.0513617Z NUMBER_OF_PROCESSORS=16 2025-04-25T04:16:13.0513847Z OS=Windows_NT 2025-04-25T04:16:13.0514042Z OUR_GITHUB_JOB_ID=41133079877 2025-04-25T04:16:13.0522167Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-04-25T04:16:13.0530605Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-04-25T04:16:13.0530959Z Platform=x64 2025-04-25T04:16:13.0531169Z PROCESSOR_ARCHITECTURE=AMD64 2025-04-25T04:16:13.0531558Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 4, GenuineIntel 2025-04-25T04:16:13.0531972Z PROCESSOR_LEVEL=6 2025-04-25T04:16:13.0532191Z PROCESSOR_REVISION=5504 2025-04-25T04:16:13.0532536Z PROGRAMFILES=C:\Program Files 2025-04-25T04:16:13.0532792Z PROMPT=(base) $P$G 2025-04-25T04:16:13.0533000Z PR_NUMBER= 2025-04-25T04:16:13.0533476Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-04-25T04:16:13.0534053Z PUBLIC=C:\Users\Public 2025-04-25T04:16:13.0534714Z *** 2025-04-25T04:16:13.0534903Z PYTHON_VERSION=3.9 2025-04-25T04:16:13.0535182Z PYTORCH_FINAL_PACKAGE_DIR=C:/14656749847/build-results/ 2025-04-25T04:16:13.0535549Z ProgramData=C:\ProgramData 2025-04-25T04:16:13.0535878Z ProgramFiles(x86)=C:\Program Files (x86) 2025-04-25T04:16:13.0536180Z ProgramW6432=C:\Program Files 2025-04-25T04:16:13.0536440Z RUNNER_ARCH=X64 2025-04-25T04:16:13.0536728Z RUNNER_ENVIRONMENT=self-hosted 2025-04-25T04:16:13.0536994Z RUNNER_NAME=i-011f9a5b269b95681 2025-04-25T04:16:13.0537237Z RUNNER_OS=Windows 2025-04-25T04:16:13.0537482Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-04-25T04:16:13.0537819Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-04-25T04:16:13.0538236Z RUNNER_TRACKING_ID=github_82d084c7-133a-450f-8035-3efd43b7c326 2025-04-25T04:16:13.0538648Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-04-25T04:16:13.0538992Z SCCACHE_BUCKET=ossci-compiler-cache 2025-04-25T04:16:13.0539274Z SCCACHE_IDLE_TIMEOUT=0 2025-04-25T04:16:13.0539508Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-04-25T04:16:13.0539780Z SCCACHE_REGION=us-east-1 2025-04-25T04:16:13.0540006Z SCCACHE_S3_KEY_PREFIX=trunk 2025-04-25T04:16:13.0540448Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-04-25T04:16:13.0540964Z SHA1=b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:16:13.0541268Z SHLVL=2 2025-04-25T04:16:13.0541519Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-04-25T04:16:13.0541901Z SYSTEMDRIVE=C: 2025-04-25T04:16:13.0542123Z SYSTEMROOT=C:\Windows 2025-04-25T04:16:13.0542370Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:16:13.0542728Z TERM=xterm-256color 2025-04-25T04:16:13.0542984Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:16:13.0543294Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:16:13.0543823Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-04-25T04:16:13.0544283Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-04-25T04:16:13.0544659Z TORCH_CUDA_ARCH_LIST=8.6 2025-04-25T04:16:13.0544890Z UCRTVersion=10.0.19041.0 2025-04-25T04:16:13.0545210Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-04-25T04:16:13.0545582Z UPDATEFILE=update.finished 2025-04-25T04:16:13.0545836Z USERDOMAIN=EC2AMAZ-DD9BHOF 2025-04-25T04:16:13.0546077Z USERNAME=runneruser 2025-04-25T04:16:13.0546294Z USERPROFILE=C:\Users\runneruser 2025-04-25T04:16:13.0546546Z USE_CUDA=1 2025-04-25T04:16:13.0546713Z USE_XPU=0 2025-04-25T04:16:13.0547230Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\ 2025-04-25T04:16:13.0547880Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\ 2025-04-25T04:16:13.0548652Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\ 2025-04-25T04:16:13.0549520Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.29.30133\ 2025-04-25T04:16:13.0550068Z VCToolsVersion=14.29.30133 2025-04-25T04:16:13.0550318Z VC_PRODUCT=BuildTools 2025-04-25T04:16:13.0550522Z VC_VERSION= 2025-04-25T04:16:13.0550697Z VC_YEAR=2019 2025-04-25T04:16:13.0550905Z VERBOSE_ARG='SilentlyContinue' 2025-04-25T04:16:13.0551163Z VERSION_SUFFIX=12_6 2025-04-25T04:16:13.0551374Z VisualStudioVersion=16.0 2025-04-25T04:16:13.0551821Z VS160COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\ 2025-04-25T04:16:13.0552303Z VSCMD_ARG_app_plat=Desktop 2025-04-25T04:16:13.0552548Z VSCMD_ARG_HOST_ARCH=x64 2025-04-25T04:16:13.0552767Z VSCMD_ARG_TGT_ARCH=x64 2025-04-25T04:16:13.0552998Z VSCMD_VER=16.11.44 2025-04-25T04:16:13.0553344Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\ 2025-04-25T04:16:13.0553756Z WINDIR=C:\Windows 2025-04-25T04:16:13.0554348Z 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:16:13.0555161Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-04-25T04:16:13.0555663Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-04-25T04:16:13.0556008Z WindowsSDKLibVersion=10.0.19041.0\ 2025-04-25T04:16:13.0556440Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-04-25T04:16:13.0556889Z WindowsSDKVersion=10.0.19041.0\ 2025-04-25T04:16:13.0557403Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-04-25T04:16:13.0558209Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-04-25T04:16:13.0558716Z XPU_VERSION= 2025-04-25T04:16:13.0559125Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-04-25T04:16:13.0559617Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-04-25T04:16:13.0560148Z __devinit_path=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit\devinit.exe 2025-04-25T04:16:13.0560729Z __DOTNET_ADD_64BIT=1 2025-04-25T04:16:13.0560954Z __DOTNET_PREFERRED_BITNESS=64 2025-04-25T04:16:13.0564485Z __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:16:13.0567900Z 2025-04-25T04:16:13.0568131Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-04-25T04:16:13.4594236Z Building wheel torch-2.8.0a0+gitb68c0ef 2025-04-25T04:16:13.7224892Z Cloning into 'nccl'... 2025-04-25T04:16:14.6598684Z Note: switching to 'v2.26.2-1'. 2025-04-25T04:16:14.6598947Z 2025-04-25T04:16:14.6599168Z You are in 'detached HEAD' state. You can look around, make experimental 2025-04-25T04:16:14.6599696Z changes and commit them, and you can discard any commits you make in this 2025-04-25T04:16:14.6600477Z state without impacting any branches by switching back to a branch. 2025-04-25T04:16:14.6600787Z 2025-04-25T04:16:14.6600982Z If you want to create a new branch to retain commits you create, you may 2025-04-25T04:16:14.6601500Z do so (now or later) by using -c with the switch command. Example: 2025-04-25T04:16:14.6601776Z 2025-04-25T04:16:14.6601897Z git switch -c 2025-04-25T04:16:14.6602086Z 2025-04-25T04:16:14.6602181Z Or undo this operation with: 2025-04-25T04:16:14.6602360Z 2025-04-25T04:16:14.6602437Z git switch - 2025-04-25T04:16:14.6602560Z 2025-04-25T04:16:14.6602780Z Turn off this advice by setting config variable advice.detachedHead to false 2025-04-25T04:16:14.6603121Z 2025-04-25T04:16:14.6603214Z HEAD is now at f44ac75 NCCL 2.26.2-1 2025-04-25T04:16:22.9090524Z -- The CXX compiler identification is MSVC 19.29.30158.0 2025-04-25T04:16:23.1184499Z -- The C compiler identification is MSVC 19.29.30158.0 2025-04-25T04:16:23.4368342Z -- Detecting CXX compiler ABI info 2025-04-25T04:16:30.0633780Z -- Detecting CXX compiler ABI info - done 2025-04-25T04:16:30.0656087Z -- 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:16:30.0673844Z -- Detecting CXX compile features 2025-04-25T04:16:30.0691195Z -- Detecting CXX compile features - done 2025-04-25T04:16:30.0788050Z -- Detecting C compiler ABI info 2025-04-25T04:16:30.4447387Z -- Detecting C compiler ABI info - done 2025-04-25T04:16:30.4469886Z -- 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:16:30.4473802Z -- Detecting C compile features 2025-04-25T04:16:30.4479993Z -- Detecting C compile features - done 2025-04-25T04:16:30.5264549Z -- Not forcing any particular BLAS to be found 2025-04-25T04:16:30.6314222Z CMake Warning at CMakeLists.txt:406 (message): 2025-04-25T04:16:30.6314652Z TensorPipe cannot be used on Windows. Set it to OFF 2025-04-25T04:16:30.6314915Z 2025-04-25T04:16:30.6314920Z 2025-04-25T04:16:30.6315044Z CMake Warning at CMakeLists.txt:408 (message): 2025-04-25T04:16:30.6315434Z KleidiAI cannot be used on Windows. Set it to OFF 2025-04-25T04:16:30.6315675Z 2025-04-25T04:16:30.6315679Z 2025-04-25T04:16:30.6407301Z -- Performing Test C_HAS_AVX_1 2025-04-25T04:16:31.7014356Z -- Performing Test C_HAS_AVX_1 - Success 2025-04-25T04:16:31.7019891Z -- Performing Test C_HAS_AVX2_1 2025-04-25T04:16:32.0972243Z -- Performing Test C_HAS_AVX2_1 - Success 2025-04-25T04:16:32.0978377Z -- Performing Test C_HAS_AVX512_1 2025-04-25T04:16:32.6000554Z -- Performing Test C_HAS_AVX512_1 - Success 2025-04-25T04:16:32.6006988Z -- Performing Test CXX_HAS_AVX_1 2025-04-25T04:16:32.9784588Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-04-25T04:16:32.9790295Z -- Performing Test CXX_HAS_AVX2_1 2025-04-25T04:16:33.3494993Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-04-25T04:16:33.3500615Z -- Performing Test CXX_HAS_AVX512_1 2025-04-25T04:16:33.7320333Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-04-25T04:16:33.7322528Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-04-25T04:16:33.7328057Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-04-25T04:16:34.4917719Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-04-25T04:16:34.4918882Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-04-25T04:16:34.4932152Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-04-25T04:16:34.7995854Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-04-25T04:16:34.8012082Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-04-25T04:16:35.1084387Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-04-25T04:16:35.1097419Z -- Could not find hardware support for NEON on this machine. 2025-04-25T04:16:35.1098048Z -- No OMAP3 processor on this machine. 2025-04-25T04:16:35.1098359Z -- No OMAP4 processor on this machine. 2025-04-25T04:16:35.1098758Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-04-25T04:16:35.1244807Z -- Performing Test HAS/UTF_8 2025-04-25T04:16:35.4329942Z -- Performing Test HAS/UTF_8 - Success 2025-04-25T04:16:36.5942185Z -- Found CUDA: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 (found version "12.6") 2025-04-25T04:16:42.6275421Z -- The CUDA compiler identification is NVIDIA 12.6.77 2025-04-25T04:16:42.6462111Z -- Detecting CUDA compiler ABI info 2025-04-25T04:16:49.2639110Z -- Detecting CUDA compiler ABI info - done 2025-04-25T04:16:49.2961766Z -- Check for working CUDA compiler: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe - skipped 2025-04-25T04:16:49.2966204Z -- Detecting CUDA compile features 2025-04-25T04:16:49.2973082Z -- Detecting CUDA compile features - done 2025-04-25T04:16:49.3053713Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found version "12.6.77") 2025-04-25T04:16:50.1583090Z -- PyTorch: CUDA detected: 12.6 2025-04-25T04:16:50.1583643Z -- PyTorch: CUDA nvcc is: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:16:50.1584354Z -- PyTorch: CUDA toolkit directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-04-25T04:16:51.3292298Z -- PyTorch: Header version is: 12.6 2025-04-25T04:16:51.9042606Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-04-25T04:16:51.9083665Z CMake Warning at cmake/public/cuda.cmake:140 (message): 2025-04-25T04:16:51.9084103Z Failed to compute shorthash for libnvrtc.so 2025-04-25T04:16:51.9084419Z Call Stack (most recent call first): 2025-04-25T04:16:51.9084716Z cmake/Dependencies.cmake:44 (include) 2025-04-25T04:16:51.9085007Z CMakeLists.txt:856 (include) 2025-04-25T04:16:51.9085219Z 2025-04-25T04:16:51.9085223Z 2025-04-25T04:16:51.9124622Z -- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-04-25T04:16:51.9410854Z -- Could NOT find CUSPARSELT (missing: CUSPARSELT_LIBRARY_PATH CUSPARSELT_INCLUDE_PATH) 2025-04-25T04:16:51.9411502Z CMake Warning at cmake/public/cuda.cmake:226 (message): 2025-04-25T04:16:51.9411926Z Cannot find cuSPARSELt library. Turning the option off 2025-04-25T04:16:51.9412275Z Call Stack (most recent call first): 2025-04-25T04:16:51.9412573Z cmake/Dependencies.cmake:44 (include) 2025-04-25T04:16:51.9412881Z CMakeLists.txt:856 (include) 2025-04-25T04:16:51.9413055Z 2025-04-25T04:16:51.9413061Z 2025-04-25T04:16:51.9656752Z -- Could NOT find CUDSS (missing: CUDSS_LIBRARY_PATH CUDSS_INCLUDE_PATH) 2025-04-25T04:16:51.9657294Z CMake Warning at cmake/public/cuda.cmake:242 (message): 2025-04-25T04:16:51.9657696Z Cannot find CUDSS library. Turning the option off 2025-04-25T04:16:51.9658081Z Call Stack (most recent call first): 2025-04-25T04:16:51.9658379Z cmake/Dependencies.cmake:44 (include) 2025-04-25T04:16:51.9658667Z CMakeLists.txt:856 (include) 2025-04-25T04:16:51.9658836Z 2025-04-25T04:16:51.9658841Z 2025-04-25T04:16:51.9659004Z -- USE_CUFILE is set to 0. Compiling without cuFile support 2025-04-25T04:16:51.9661427Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2025-04-25T04:16:51.9698215Z -- Building using own protobuf under third_party per request. 2025-04-25T04:16:51.9698615Z -- Use custom protobuf build. 2025-04-25T04:16:51.9734212Z -- 2025-04-25T04:16:51.9734399Z -- 3.13.0.0 2025-04-25T04:16:51.9799413Z -- Looking for pthread.h 2025-04-25T04:16:52.0765203Z -- Looking for pthread.h - not found 2025-04-25T04:16:52.0779274Z -- Found Threads: TRUE 2025-04-25T04:16:52.1434789Z -- Caffe2 protobuf include directory: $$ 2025-04-25T04:16:52.1460547Z -- Trying to find preferred BLAS backend of choice: MKL 2025-04-25T04:16:52.1516043Z -- MKL_THREADING = OMP 2025-04-25T04:16:52.1526141Z -- Looking for sys/types.h 2025-04-25T04:16:52.4587336Z -- Looking for sys/types.h - found 2025-04-25T04:16:52.4597525Z -- Looking for stdint.h 2025-04-25T04:16:52.7681437Z -- Looking for stdint.h - found 2025-04-25T04:16:52.7691174Z -- Looking for stddef.h 2025-04-25T04:16:53.0881501Z -- Looking for stddef.h - found 2025-04-25T04:16:53.0883448Z -- Check size of void* 2025-04-25T04:16:53.4358355Z -- Check size of void* - done 2025-04-25T04:16:53.4529546Z -- Looking for cblas_sgemm 2025-04-25T04:16:53.7820920Z -- Looking for cblas_sgemm - found 2025-04-25T04:16:53.7823883Z -- Looking for cblas_gemm_bf16bf16f32 2025-04-25T04:16:54.1176960Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-04-25T04:16:54.1178605Z -- Looking for cblas_gemm_f16f16f32 2025-04-25T04:16:54.5087981Z -- Looking for cblas_gemm_f16f16f32 - not found 2025-04-25T04:16:54.5628326Z -- 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:16:54.5629350Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-04-25T04:16:54.5629770Z -- MKL OpenMP type: 2025-04-25T04:16:54.5630001Z -- MKL OpenMP library: 2025-04-25T04:16:54.7354792Z -- The ASM compiler identification is MSVC 2025-04-25T04:16:54.7366886Z -- 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:16:54.7616532Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-04-25T04:16:54.7644643Z -- Generating microkernels.cmake 2025-04-25T04:16:59.6213326Z 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:16:59.6214803Z 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:16:59.6215803Z No microkernel found in src\reference\binary-elementwise.cc 2025-04-25T04:16:59.6216230Z No microkernel found in src\reference\packing.cc 2025-04-25T04:16:59.6216659Z No microkernel found in src\reference\unary-elementwise.cc 2025-04-25T04:16:59.7874597Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.47.1.windows.2") 2025-04-25T04:16:59.8936407Z -- git version: v1.6.1 normalized to 1.6.1 2025-04-25T04:16:59.8936792Z -- Version: 1.6.1 2025-04-25T04:16:59.8953906Z -- Looking for shm_open in rt 2025-04-25T04:17:00.1829340Z -- Looking for shm_open in rt - not found 2025-04-25T04:17:00.1832334Z -- Performing Test HAVE_STD_REGEX 2025-04-25T04:17:00.1832634Z -- Performing Test HAVE_STD_REGEX 2025-04-25T04:17:02.6740008Z -- Performing Test HAVE_STD_REGEX -- success 2025-04-25T04:17:02.6740453Z -- Performing Test HAVE_GNU_POSIX_REGEX 2025-04-25T04:17:02.6740765Z -- Performing Test HAVE_GNU_POSIX_REGEX 2025-04-25T04:17:02.7786303Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-04-25T04:17:02.7786746Z -- Performing Test HAVE_POSIX_REGEX 2025-04-25T04:17:02.7787067Z -- Performing Test HAVE_POSIX_REGEX 2025-04-25T04:17:02.8772161Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-04-25T04:17:02.8772609Z -- Performing Test HAVE_STEADY_CLOCK 2025-04-25T04:17:02.8772917Z -- Performing Test HAVE_STEADY_CLOCK 2025-04-25T04:17:03.5827974Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-04-25T04:17:03.6758029Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-04-25T04:17:03.6774699Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-04-25T04:17:04.0847513Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-04-25T04:17:05.2076508Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:17:05.2077668Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-04-25T04:17:05.2078230Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:17:05.2078756Z problems in calling code that expects `find_package` result variables 2025-04-25T04:17:05.2079216Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:17:05.2079555Z Call Stack (most recent call first): 2025-04-25T04:17:05.2079980Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:17:05.2080475Z third_party/fbgemm/CMakeLists.txt:136 (find_package) 2025-04-25T04:17:05.2080929Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:17:05.2081259Z 2025-04-25T04:17:05.2081383Z -- Found OpenMP_C: -openmp:experimental 2025-04-25T04:17:05.5706281Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:17:05.5707202Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-04-25T04:17:05.5707763Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:17:05.5708288Z problems in calling code that expects `find_package` result variables 2025-04-25T04:17:05.5708740Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:17:05.5709066Z Call Stack (most recent call first): 2025-04-25T04:17:05.5709489Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:17:05.5709975Z third_party/fbgemm/CMakeLists.txt:136 (find_package) 2025-04-25T04:17:05.5710431Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:17:05.5710747Z 2025-04-25T04:17:05.5710883Z -- Found OpenMP_CXX: -openmp:experimental 2025-04-25T04:17:05.5711227Z -- Found OpenMP: TRUE 2025-04-25T04:17:05.5712898Z CMake Warning at third_party/fbgemm/CMakeLists.txt:138 (message): 2025-04-25T04:17:05.5713350Z OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-04-25T04:17:05.5713556Z 2025-04-25T04:17:05.5713561Z 2025-04-25T04:17:05.8272571Z CMake Warning at third_party/fbgemm/CMakeLists.txt:232 (message): 2025-04-25T04:17:05.8273028Z ========== 2025-04-25T04:17:05.8273150Z 2025-04-25T04:17:05.8273154Z 2025-04-25T04:17:05.8273397Z CMake Warning at third_party/fbgemm/CMakeLists.txt:233 (message): 2025-04-25T04:17:05.8273789Z CMAKE_BUILD_TYPE = Release 2025-04-25T04:17:05.8273958Z 2025-04-25T04:17:05.8273962Z 2025-04-25T04:17:05.8274158Z CMake Warning at third_party/fbgemm/CMakeLists.txt:234 (message): 2025-04-25T04:17:05.8274586Z CMAKE_CXX_FLAGS_DEBUG is /Z7 /Ob0 /Od /RTC1 /bigobj 2025-04-25T04:17:05.8274834Z 2025-04-25T04:17:05.8274837Z 2025-04-25T04:17:05.8275025Z CMake Warning at third_party/fbgemm/CMakeLists.txt:235 (message): 2025-04-25T04:17:05.8275457Z CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-04-25T04:17:05.8275698Z 2025-04-25T04:17:05.8275714Z 2025-04-25T04:17:05.8275903Z CMake Warning at third_party/fbgemm/CMakeLists.txt:236 (message): 2025-04-25T04:17:05.8276272Z ========== 2025-04-25T04:17:05.8276383Z 2025-04-25T04:17:05.8276386Z 2025-04-25T04:17:05.8655690Z ** AsmJit Summary ** 2025-04-25T04:17:05.8657088Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/asmjit 2025-04-25T04:17:05.8657613Z ASMJIT_TEST=FALSE 2025-04-25T04:17:05.8657853Z ASMJIT_TARGET_TYPE=SHARED 2025-04-25T04:17:05.8658112Z ASMJIT_DEPS= 2025-04-25T04:17:05.8658315Z ASMJIT_LIBS=asmjit 2025-04-25T04:17:05.8658540Z ASMJIT_CFLAGS= 2025-04-25T04:17:05.8658993Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-04-25T04:17:05.8659513Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-04-25T04:17:05.8659869Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-04-25T04:17:05.8758439Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-04-25T04:17:05.9461094Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-04-25T04:17:05.9476818Z -- Performing Test HAS_WNO_UNINITIALIZED 2025-04-25T04:17:06.0186124Z -- Performing Test HAS_WNO_UNINITIALIZED - Failed 2025-04-25T04:17:06.0353265Z -- Using third party subdirectory Eigen. 2025-04-25T04:17:08.2766309Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-04-25T04:17:08.2767006Z -- Using third_party/pybind11. 2025-04-25T04:17:08.2767544Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-04-25T04:17:08.2810057Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-04-25T04:17:08.2810570Z -- Using third_party/opentelemetry-cpp. 2025-04-25T04:17:08.2811295Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-04-25T04:17:09.3571938Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-04-25T04:17:10.1061161Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-04-25T04:17:10.1064382Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-04-25T04:17:10.1066968Z CMake Warning at cmake/Dependencies.cmake:967 (message): 2025-04-25T04:17:10.1067474Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-04-25T04:17:10.1067878Z Call Stack (most recent call first): 2025-04-25T04:17:10.1068159Z CMakeLists.txt:856 (include) 2025-04-25T04:17:10.1068340Z 2025-04-25T04:17:10.1068345Z 2025-04-25T04:17:10.1105326Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-04-25T04:17:10.1111364Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-04-25T04:17:10.1138143Z -- Found CUB: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-04-25T04:17:10.1161134Z -- MSVC detected 2025-04-25T04:17:10.1161385Z -- Set USE_REDIS OFF 2025-04-25T04:17:10.1161619Z -- Set USE_IBVERBS OFF 2025-04-25T04:17:10.1161845Z -- Set USE_NCCL OFF 2025-04-25T04:17:10.1162039Z -- Set USE_RCCL OFF 2025-04-25T04:17:10.1162244Z -- Set USE_LIBUV OFF 2025-04-25T04:17:10.1162468Z -- Gloo build as SHARED library 2025-04-25T04:17:10.1206233Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found suitable version "12.6.77", minimum required is "7.0") 2025-04-25T04:17:10.9572535Z -- CUDA detected: 12.6.77 2025-04-25T04:17:11.0304715Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-04-25T04:17:11.0313357Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-04-25T04:17:11.0322133Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-04-25T04:17:11.7969705Z -- 2025-04-25T04:17:11.7969987Z -- ******** Summary ******** 2025-04-25T04:17:11.7970326Z -- CMake version : 3.22.1 2025-04-25T04:17:11.7970729Z -- CMake command : C:/Jenkins/Miniconda3/Library/bin/cmake.exe 2025-04-25T04:17:11.7971156Z -- System : Windows 2025-04-25T04:17:11.7972036Z -- 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:17:11.7972711Z -- C++ compiler version : 19.29.30158.0 2025-04-25T04:17:11.7973287Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-04-25T04:17:11.7973831Z -- Build type : Release 2025-04-25T04:17:11.7974337Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS 2025-04-25T04:17:11.7976026Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-04-25T04:17:11.7977792Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-04-25T04:17:11.7978676Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules;C:/actions-runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-04-25T04:17:11.7979391Z -- 2025-04-25T04:17:11.7979600Z -- ONNX version : 1.17.0 2025-04-25T04:17:11.7979986Z -- ONNX NAMESPACE : onnx_torch 2025-04-25T04:17:11.7980353Z -- ONNX_USE_LITE_PROTO : OFF 2025-04-25T04:17:11.7980680Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-04-25T04:17:11.7980984Z -- Protobuf_USE_STATIC_LIBS : ON 2025-04-25T04:17:11.7981303Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-04-25T04:17:11.7981616Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-04-25T04:17:11.7981927Z -- ONNX_WERROR : OFF 2025-04-25T04:17:11.7982212Z -- ONNX_BUILD_TESTS : OFF 2025-04-25T04:17:11.7982507Z -- ONNX_BUILD_SHARED_LIBS : 2025-04-25T04:17:11.7982808Z -- BUILD_SHARED_LIBS : OFF 2025-04-25T04:17:11.7983071Z -- 2025-04-25T04:17:11.7983266Z -- Protobuf compiler : 2025-04-25T04:17:11.7983559Z -- Protobuf includes : 2025-04-25T04:17:11.7983850Z -- Protobuf libraries : 2025-04-25T04:17:11.7984137Z -- BUILD_ONNX_PYTHON : OFF 2025-04-25T04:17:11.7984532Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-04-25T04:17:11.7984939Z -- Adding -DNDEBUG to compile flags 2025-04-25T04:17:11.8025791Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 2025-04-25T04:17:11.8974760Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False 2025-04-25T04:17:11.8976469Z -- Compiling with MAGMA support 2025-04-25T04:17:11.8976979Z -- MAGMA INCLUDE DIRECTORIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/include 2025-04-25T04:17:11.8977731Z -- MAGMA LIBRARIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/lib/magma.lib 2025-04-25T04:17:11.8978228Z -- MAGMA V2 check: 0 2025-04-25T04:17:11.8981175Z -- Could not find hardware support for NEON on this machine. 2025-04-25T04:17:11.8981564Z -- No OMAP3 processor on this machine. 2025-04-25T04:17:11.8981869Z -- No OMAP4 processor on this machine. 2025-04-25T04:17:11.8998030Z -- Looking for sbgemm_ 2025-04-25T04:17:17.1619104Z -- Looking for sbgemm_ - not found 2025-04-25T04:17:17.1636316Z -- Found a library with LAPACK API (mkl). 2025-04-25T04:17:17.1637920Z -- MIOpen not found. Compiling without MIOpen support 2025-04-25T04:17:17.1638354Z disabling ROCM because NOT USE_ROCM is set 2025-04-25T04:17:17.1647266Z -- Will build oneDNN UKERNEL 2025-04-25T04:17:17.1735386Z -- MKLDNN_CPU_RUNTIME = OMP 2025-04-25T04:17:17.1756569Z -- DNNL_TARGET_ARCH: X64 2025-04-25T04:17:17.1784639Z -- DNNL_LIBRARY_NAME: dnnl 2025-04-25T04:17:17.1871364Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:17:17.1872248Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-04-25T04:17:17.1872839Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:17:17.1873368Z problems in calling code that expects `find_package` result variables 2025-04-25T04:17:17.1873788Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:17:17.1874121Z Call Stack (most recent call first): 2025-04-25T04:17:17.1874531Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:17:17.1875074Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-04-25T04:17:17.1875656Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-04-25T04:17:17.1876123Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:17:17.1876437Z 2025-04-25T04:17:17.1876937Z CMake Warning (dev) at C:/Jenkins/Miniconda3/Library/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-04-25T04:17:17.1877748Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-04-25T04:17:17.1878343Z does not match the name of the calling package (OpenMP). This can lead to 2025-04-25T04:17:17.1878909Z problems in calling code that expects `find_package` result variables 2025-04-25T04:17:17.1879343Z (e.g., `_FOUND`) to follow a certain pattern. 2025-04-25T04:17:17.1879663Z Call Stack (most recent call first): 2025-04-25T04:17:17.1880076Z cmake/Modules/FindOpenMP.cmake:623 (find_package_handle_standard_args) 2025-04-25T04:17:17.1880596Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-04-25T04:17:17.1881034Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-04-25T04:17:17.1881496Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-04-25T04:17:17.1881805Z 2025-04-25T04:17:17.2326051Z -- Enabled testing coverage: CI 2025-04-25T04:17:17.2341848Z -- Enabled workload: TRAINING 2025-04-25T04:17:17.2342147Z -- Enabled primitives: ALL 2025-04-25T04:17:17.2342403Z -- Enabled primitive CPU ISA: ALL 2025-04-25T04:17:17.2342688Z -- Enabled primitive GPU ISA: ALL 2025-04-25T04:17:17.2342955Z -- Enabled GeMM kernels ISA: ALL 2025-04-25T04:17:17.2436299Z -- Primitive cache is enabled 2025-04-25T04:17:17.2436711Z -- Experimental functionality for ukernels is enabled 2025-04-25T04:17:17.3109416Z -- The ASM_MASM compiler identification is MSVC 2025-04-25T04:17:17.4347594Z -- 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:17:17.5773827Z -- Graph component is enabled 2025-04-25T04:17:17.5945210Z -- Graph compiler backend is disabled. 2025-04-25T04:17:17.6078741Z -- Found MKL-DNN: TRUE 2025-04-25T04:17:17.6151796Z -- {fmt} version: 11.1.4 2025-04-25T04:17:17.6152046Z -- Build type: Release 2025-04-25T04:17:17.6231780Z -- Using Kineto with CUPTI support 2025-04-25T04:17:17.6232233Z -- Configuring Kineto dependency: 2025-04-25T04:17:17.6232716Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-04-25T04:17:17.6233195Z -- KINETO_BUILD_TESTS = OFF 2025-04-25T04:17:17.6233462Z -- KINETO_LIBRARY_TYPE = static 2025-04-25T04:17:17.6233869Z -- CUDA_SOURCE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-04-25T04:17:17.6234519Z -- CUDA_INCLUDE_DIRS = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-04-25T04:17:17.6240261Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-04-25T04:17:17.6241099Z -- CUDA_cupti_LIBRARY = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/lib64/cupti.lib 2025-04-25T04:17:17.6241645Z -- Found CUPTI 2025-04-25T04:17:17.6736378Z INFO ROCM_SOURCE_DIR = 2025-04-25T04:17:17.8016174Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-04-25T04:17:17.8017270Z INFO CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-04-25T04:17:17.8017901Z INFO ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-04-25T04:17:17.8018592Z INFO DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-04-25T04:17:17.8019725Z INFO IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-04-25T04:17:17.8020734Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-04-25T04:17:17.8047576Z -- Configured Kineto 2025-04-25T04:17:17.8087373Z -- Performing Test HAS/WD4624 2025-04-25T04:17:18.1258186Z -- Performing Test HAS/WD4624 - Success 2025-04-25T04:17:18.1273435Z -- Performing Test HAS/WD4068 2025-04-25T04:17:18.5450304Z -- Performing Test HAS/WD4068 - Success 2025-04-25T04:17:18.5465541Z -- Performing Test HAS/WD4067 2025-04-25T04:17:18.9555536Z -- Performing Test HAS/WD4067 - Success 2025-04-25T04:17:18.9573617Z -- Performing Test HAS/WD4267 2025-04-25T04:17:19.3816340Z -- Performing Test HAS/WD4267 - Success 2025-04-25T04:17:19.3832106Z -- Performing Test HAS/WD4661 2025-04-25T04:17:19.6909364Z -- Performing Test HAS/WD4661 - Success 2025-04-25T04:17:19.6924624Z -- Performing Test HAS/WD4717 2025-04-25T04:17:20.0165644Z -- Performing Test HAS/WD4717 - Success 2025-04-25T04:17:20.0180932Z -- Performing Test HAS/WD4244 2025-04-25T04:17:20.3505040Z -- Performing Test HAS/WD4244 - Success 2025-04-25T04:17:20.3520503Z -- Performing Test HAS/WD4804 2025-04-25T04:17:20.6643020Z -- Performing Test HAS/WD4804 - Success 2025-04-25T04:17:20.6659015Z -- Performing Test HAS/WD4273 2025-04-25T04:17:20.9843937Z -- Performing Test HAS/WD4273 - Success 2025-04-25T04:17:20.9860036Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-04-25T04:17:21.0573248Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-04-25T04:17:21.1549631Z -- 2025-04-25T04:17:21.1550661Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-04-25T04:17:21.1553300Z -- 2025-04-25T04:17:21.1553499Z -- Library base name: mimalloc 2025-04-25T04:17:21.1553754Z -- Version : 1.8 2025-04-25T04:17:21.1553987Z -- Build type : release 2025-04-25T04:17:21.1554603Z -- 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:17:21.1555227Z -- Compiler flags : /Zc:__cplusplus 2025-04-25T04:17:21.1555507Z -- Compiler defines : 2025-04-25T04:17:21.1555791Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-04-25T04:17:21.1556156Z -- Build targets : static 2025-04-25T04:17:21.1556392Z -- 2025-04-25T04:17:21.1661641Z -- don't use NUMA 2025-04-25T04:17:21.3891240Z -- Looking for backtrace 2025-04-25T04:17:21.4805973Z -- Looking for backtrace - not found 2025-04-25T04:17:21.4876348Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-04-25T04:17:26.1839160Z -- headers outputs: 2025-04-25T04:17:29.3998723Z -- sources outputs: 2025-04-25T04:17:31.1538729Z -- declarations_yaml outputs: 2025-04-25T04:17:31.1652739Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-04-25T04:17:36.5075114Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-04-25T04:17:36.7604131Z -- Using ATen parallel backend: OMP 2025-04-25T04:17:37.3192084Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.15") 2025-04-25T04:17:37.5285069Z -- Check size of long double 2025-04-25T04:17:37.8691770Z -- Check size of long double - done 2025-04-25T04:17:37.8699467Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-04-25T04:17:37.9833891Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-04-25T04:17:37.9839903Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-04-25T04:17:38.3875386Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-04-25T04:17:38.3880337Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-04-25T04:17:38.8082535Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-04-25T04:17:38.8087378Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-04-25T04:17:39.3104180Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-04-25T04:17:39.3108950Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-04-25T04:17:39.7096301Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-04-25T04:17:39.7101316Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-04-25T04:17:40.1205080Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-04-25T04:17:40.1210668Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-04-25T04:17:40.6122875Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-04-25T04:17:40.6178554Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-04-25T04:17:40.6183069Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-04-25T04:17:40.6187124Z -- Found OpenMP: TRUE (found version "2.0") 2025-04-25T04:17:40.6191926Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-04-25T04:17:41.0284419Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-04-25T04:17:41.0288891Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-04-25T04:17:41.1394283Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-04-25T04:17:41.1399562Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-04-25T04:17:41.2544076Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-04-25T04:17:41.2549200Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-04-25T04:17:41.4580782Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-04-25T04:17:41.4584924Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-04-25T04:17:41.5477693Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-04-25T04:17:41.7284312Z Target system: Windows-10.0.17763 2025-04-25T04:17:41.7284670Z Target processor: AMD64 2025-04-25T04:17:41.7284944Z -- Configuring build for SLEEF-v3.7.0 2025-04-25T04:17:41.7285301Z Host system: Windows-10.0.17763 2025-04-25T04:17:41.7285566Z Host processor: AMD64 2025-04-25T04:17:41.7286218Z 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:17:41.7286878Z CMake: 3.22.1 2025-04-25T04:17:41.7287175Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-04-25T04:17:41.7287719Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-04-25T04:17:41.7288195Z -- Building shared libs : OFF 2025-04-25T04:17:41.7288468Z -- Building static test bins: OFF 2025-04-25T04:17:41.7288753Z -- MPFR : LIB_MPFR-NOTFOUND 2025-04-25T04:17:41.7289001Z -- GMP : LIBGMP-NOTFOUND 2025-04-25T04:17:41.7289216Z -- RT : 2025-04-25T04:17:41.7289416Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-04-25T04:17:41.7289654Z -- OPENSSL : 3.0.15 2025-04-25T04:17:41.7289888Z -- SDE : SDE_COMMAND-NOTFOUND 2025-04-25T04:17:41.7290165Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-04-25T04:17:41.7633840Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-04-25T04:17:41.7634415Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-04-25T04:17:41.7635238Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-04-25T04:17:41.7636059Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-04-25T04:17:42.4827663Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD 2025-04-25T04:17:42.5544280Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD - Failed 2025-04-25T04:17:42.5550603Z -- 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:17:42.7755717Z CMake Warning at CMakeLists.txt:1263 (message): 2025-04-25T04:17:42.7756247Z Generated cmake files are only fully tested if one builds with system glog, 2025-04-25T04:17:42.7756806Z gflags, and protobuf. Other settings may generate files that are not well 2025-04-25T04:17:42.7757474Z tested. 2025-04-25T04:17:42.7757580Z 2025-04-25T04:17:42.7757585Z 2025-04-25T04:17:42.7789372Z -- 2025-04-25T04:17:42.7789573Z -- ******** Summary ******** 2025-04-25T04:17:42.7789814Z -- General: 2025-04-25T04:17:42.7790006Z -- CMake version : 3.22.1 2025-04-25T04:17:42.7790396Z -- CMake command : C:/Jenkins/Miniconda3/Library/bin/cmake.exe 2025-04-25T04:17:42.7790777Z -- System : Windows 2025-04-25T04:17:42.7791397Z -- 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:17:42.7792040Z -- C++ compiler id : MSVC 2025-04-25T04:17:42.7792313Z -- C++ compiler version : 19.29.30158.0 2025-04-25T04:17:42.7792618Z -- Using ccache if found : OFF 2025-04-25T04:17:42.7793970Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_FBGEMM -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-04-25T04:17:42.7795339Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-04-25T04:17:42.7795844Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-04-25T04:17:42.7796321Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-04-25T04:17:42.7796715Z -- Build type : Release 2025-04-25T04:17:42.7797821Z -- 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:17:42.7800317Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-04-25T04:17:42.7801912Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-04-25T04:17:42.7802324Z -- USE_GOLD_LINKER : OFF 2025-04-25T04:17:42.7802565Z -- 2025-04-25T04:17:42.7802752Z -- TORCH_VERSION : 2.8.0 2025-04-25T04:17:42.7803031Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-04-25T04:17:42.7803328Z -- BUILD_BINARY : OFF 2025-04-25T04:17:42.7803589Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-04-25T04:17:42.7803848Z -- Link local protobuf : ON 2025-04-25T04:17:42.7804097Z -- BUILD_PYTHON : True 2025-04-25T04:17:42.7804363Z -- Python version : 3.9.19 2025-04-25T04:17:42.7804702Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-04-25T04:17:42.7805212Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-04-25T04:17:42.7805703Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-04-25T04:17:42.7806134Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-04-25T04:17:42.7806533Z -- BUILD_SHARED_LIBS : ON 2025-04-25T04:17:42.7806831Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-04-25T04:17:42.7807320Z -- BUILD_TEST : True 2025-04-25T04:17:42.7807593Z -- BUILD_JNI : OFF 2025-04-25T04:17:42.7807853Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-04-25T04:17:42.7808130Z -- BUILD_LITE_INTERPRETER: OFF 2025-04-25T04:17:42.7808389Z -- INTERN_BUILD_MOBILE : 2025-04-25T04:17:42.7808655Z -- TRACING_BASED : OFF 2025-04-25T04:17:42.7808901Z -- USE_BLAS : 1 2025-04-25T04:17:42.7809151Z -- BLAS : mkl 2025-04-25T04:17:42.7809390Z -- BLAS_HAS_SBGEMM : 2025-04-25T04:17:42.7809641Z -- USE_LAPACK : 1 2025-04-25T04:17:42.7809901Z -- LAPACK : mkl 2025-04-25T04:17:42.7810255Z -- USE_ASAN : OFF 2025-04-25T04:17:42.7810505Z -- USE_TSAN : OFF 2025-04-25T04:17:42.7810813Z -- USE_CPP_CODE_COVERAGE : OFF 2025-04-25T04:17:42.7811070Z -- USE_CUDA : 1 2025-04-25T04:17:42.7811353Z -- Split CUDA : 2025-04-25T04:17:42.7811612Z -- CUDA static link : OFF 2025-04-25T04:17:42.7811857Z -- USE_CUDNN : ON 2025-04-25T04:17:42.7812104Z -- USE_CUSPARSELT : OFF 2025-04-25T04:17:42.7812347Z -- USE_CUDSS : OFF 2025-04-25T04:17:42.7812594Z -- USE_CUFILE : OFF 2025-04-25T04:17:42.7812836Z -- CUDA version : 12.6 2025-04-25T04:17:42.7813106Z -- USE_FLASH_ATTENTION : OFF 2025-04-25T04:17:42.7813364Z -- USE_MEM_EFF_ATTENTION : ON 2025-04-25T04:17:42.7813618Z -- cuDNN version : 9.7.1 2025-04-25T04:17:42.7814031Z -- CUDA root directory : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-04-25T04:17:42.7814676Z -- CUDA library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cuda.lib 2025-04-25T04:17:42.7815362Z -- cudart library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart.lib 2025-04-25T04:17:42.7816065Z -- cublas library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cublas.lib 2025-04-25T04:17:42.7816799Z -- cufft library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cufft.lib 2025-04-25T04:17:42.7817541Z -- curand library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/curand.lib 2025-04-25T04:17:42.7818437Z -- cusparse library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cusparse.lib 2025-04-25T04:17:42.7819165Z -- cuDNN library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-04-25T04:17:42.7819817Z -- nvrtc : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/nvrtc.lib 2025-04-25T04:17:42.7820453Z -- CUDA include path : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-04-25T04:17:42.7821106Z -- NVCC executable : C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-04-25T04:17:42.7821752Z -- CUDA compiler : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-04-25T04:17:42.7825981Z -- CUDA flags : -DLIBCUDACXX_ENABLE_SIMPLIFIED_COMPLEX_OPERATIONS -Xcompiler /Zc:__cplusplus -Xcompiler /w -w -Xcompiler /FS -Xfatbin -compress-all -DONNX_NAMESPACE=onnx_torch --use-local-env -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --Werror cross-execution-space-call --no-host-device-move-forward --expt-relaxed-constexpr --expt-extended-lambda -Xcompiler=/wd4819,/wd4503,/wd4190,/wd4244,/wd4251,/wd4275,/wd4522 -Wno-deprecated-gpu-targets --expt-extended-lambda -DCUB_WRAPPED_NAMESPACE=at_cuda_detail -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ 2025-04-25T04:17:42.7829852Z -- CUDA host compiler : 2025-04-25T04:17:42.7830120Z -- CUDA --device-c : OFF 2025-04-25T04:17:42.7830377Z -- USE_TENSORRT : 2025-04-25T04:17:42.7830627Z -- USE_XPU : 0 2025-04-25T04:17:42.7830869Z -- USE_ROCM : OFF 2025-04-25T04:17:42.7831119Z -- BUILD_NVFUSER : 2025-04-25T04:17:42.7831360Z -- USE_EIGEN_FOR_BLAS : 2025-04-25T04:17:42.7831607Z -- USE_FBGEMM : ON 2025-04-25T04:17:42.7831851Z -- USE_FAKELOWP : OFF 2025-04-25T04:17:42.7832124Z -- USE_KINETO : ON 2025-04-25T04:17:42.7832369Z -- USE_GFLAGS : OFF 2025-04-25T04:17:42.7832711Z -- USE_GLOG : OFF 2025-04-25T04:17:42.7832963Z -- USE_LITE_PROTO : OFF 2025-04-25T04:17:42.7833222Z -- USE_PYTORCH_METAL : OFF 2025-04-25T04:17:42.7833495Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-04-25T04:17:42.7833777Z -- USE_MPS : OFF 2025-04-25T04:17:42.7834089Z -- CAN_COMPILE_METAL : 2025-04-25T04:17:42.7834337Z -- USE_MKL : ON 2025-04-25T04:17:42.7834637Z -- USE_STATIC_MKL : OFF 2025-04-25T04:17:42.7834887Z -- USE_MKLDNN : ON 2025-04-25T04:17:42.7835133Z -- USE_MKLDNN_ACL : OFF 2025-04-25T04:17:42.7835379Z -- USE_MKLDNN_CBLAS : OFF 2025-04-25T04:17:42.7835643Z -- USE_UCC : OFF 2025-04-25T04:17:42.7835892Z -- USE_ITT : ON 2025-04-25T04:17:42.7836123Z -- USE_NCCL : OFF 2025-04-25T04:17:42.7836374Z -- USE_NNPACK : OFF 2025-04-25T04:17:42.7836614Z -- USE_NUMPY : ON 2025-04-25T04:17:42.7836873Z -- USE_OBSERVERS : ON 2025-04-25T04:17:42.7837110Z -- USE_OPENCL : OFF 2025-04-25T04:17:42.7837361Z -- USE_OPENMP : ON 2025-04-25T04:17:42.7837599Z -- USE_MIMALLOC : ON 2025-04-25T04:17:42.7837854Z -- USE_MIMALLOC_ON_MKL : OFF 2025-04-25T04:17:42.7838112Z -- USE_VULKAN : OFF 2025-04-25T04:17:42.7838364Z -- USE_PROF : OFF 2025-04-25T04:17:42.7838622Z -- USE_PYTORCH_QNNPACK : OFF 2025-04-25T04:17:42.7838869Z -- USE_XNNPACK : ON 2025-04-25T04:17:42.7839125Z -- USE_DISTRIBUTED : ON 2025-04-25T04:17:42.7839367Z -- USE_MPI : OFF 2025-04-25T04:17:42.7839717Z -- USE_GLOO : ON 2025-04-25T04:17:42.7840030Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-04-25T04:17:42.7840314Z -- USE_TENSORPIPE : OFF 2025-04-25T04:17:42.7846254Z -- Public Dependencies : caffe2::mkl 2025-04-25T04:17:42.7847146Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-04-25T04:17:42.7847966Z -- Public CUDA Deps. : 2025-04-25T04:17:42.7849833Z -- Private CUDA Deps. : caffe2::curand;caffe2::cufft;caffe2::cublas;torch::cudnn;gloo_cuda;fmt::fmt-header-only;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core_dll.lib;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart_static.lib;CUDA::cusparse;CUDA::cufft;CUDA::cusolver;torch::magma;ATEN_CUDA_FILES_GEN_LIB 2025-04-25T04:17:42.7851789Z -- USE_COREML_DELEGATE : OFF 2025-04-25T04:17:42.7852131Z -- BUILD_LAZY_TS_BACKEND : ON 2025-04-25T04:17:42.7852397Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-04-25T04:17:42.7874016Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-04-25T04:17:42.8610674Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-04-25T04:17:42.8628283Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-04-25T04:17:42.9345367Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-04-25T04:17:42.9413113Z -- Configuring done 2025-04-25T04:17:53.2326326Z -- Generating done 2025-04-25T04:17:53.4918131Z CMake Warning: 2025-04-25T04:17:53.4918797Z Manually-specified variables were not used by the project: 2025-04-25T04:17:53.4919112Z 2025-04-25T04:17:53.4919204Z BUILD_ENVIRONMENT 2025-04-25T04:17:53.4919418Z BUILD_TYPE 2025-04-25T04:17:53.4919619Z BUILD_WHEEL 2025-04-25T04:17:53.4919738Z 2025-04-25T04:17:53.4919743Z 2025-04-25T04:17:53.4950187Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-04-25T04:18:00.3813469Z [1/4] Generating ATen declarations_yaml 2025-04-25T04:18:06.9113860Z [2/4] Generating ATen headers 2025-04-25T04:18:07.8264421Z [3/4] Generating ATen sources 2025-04-25T04:18:13.4931081Z [1/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-04-25T04:18:13.5024268Z [2/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-04-25T04:18:13.5041975Z [3/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-04-25T04:18:13.5123598Z [4/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-04-25T04:18:13.5186923Z [5/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-04-25T04:18:13.5386303Z [6/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-04-25T04:18:13.5483273Z [7/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-04-25T04:18:13.5507129Z [8/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-04-25T04:18:13.7802583Z [9/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-04-25T04:18:13.7877334Z [10/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-04-25T04:18:13.7982890Z [11/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-04-25T04:18:13.8067405Z [12/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-04-25T04:18:13.8663749Z [13/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-04-25T04:18:13.9037317Z [14/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-04-25T04:18:13.9966754Z [15/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-04-25T04:18:14.0731934Z [16/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-04-25T04:18:14.0750714Z [17/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-04-25T04:18:14.0860779Z [18/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-04-25T04:18:14.1382107Z [19/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-04-25T04:18:14.1801038Z [20/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-04-25T04:18:14.2793188Z [21/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-04-25T04:18:14.3423116Z [22/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-04-25T04:18:14.3531168Z [23/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-04-25T04:18:14.3608798Z [24/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-04-25T04:18:14.4745142Z [25/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-04-25T04:18:14.5083783Z [26/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-04-25T04:18:14.6329293Z [27/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-04-25T04:18:14.7182983Z [28/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-04-25T04:18:14.7718753Z [29/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-04-25T04:18:14.8582189Z [30/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-04-25T04:18:14.9906097Z [31/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-04-25T04:18:14.9989259Z [32/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-04-25T04:18:15.0400259Z [33/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-04-25T04:18:15.1205575Z [34/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-04-25T04:18:15.1326221Z [35/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-04-25T04:18:15.1928201Z [36/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-04-25T04:18:15.1941213Z [37/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-04-25T04:18:15.3716587Z [38/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-04-25T04:18:15.4090852Z [39/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-04-25T04:18:15.4473723Z [40/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-04-25T04:18:15.4633277Z [41/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-04-25T04:18:15.4691996Z [42/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-04-25T04:18:15.4861949Z [43/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-04-25T04:18:15.4937150Z [44/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-04-25T04:18:15.5405322Z [45/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-04-25T04:18:15.7621899Z [46/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-04-25T04:18:15.7996280Z [47/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-04-25T04:18:15.8288338Z [48/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-04-25T04:18:15.8469598Z [49/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-04-25T04:18:15.8610255Z [50/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-04-25T04:18:15.8953143Z [51/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-04-25T04:18:15.9717414Z [52/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-04-25T04:18:15.9933993Z [53/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-04-25T04:18:16.1301172Z [54/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-04-25T04:18:16.1418834Z [55/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-04-25T04:18:16.1683485Z [56/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-04-25T04:18:16.2058411Z [57/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-04-25T04:18:16.2339649Z [58/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-04-25T04:18:16.3150422Z [59/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-04-25T04:18:16.3953906Z [60/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-04-25T04:18:16.4117496Z [61/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-04-25T04:18:16.4470005Z [62/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-04-25T04:18:16.4975549Z [63/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-04-25T04:18:16.5225426Z [64/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-04-25T04:18:16.5472337Z [65/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-04-25T04:18:16.5875858Z [66/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-04-25T04:18:16.6886083Z [67/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-04-25T04:18:16.8716907Z [68/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-04-25T04:18:16.8839788Z [69/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-04-25T04:18:16.9081918Z [70/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-04-25T04:18:16.9234541Z [71/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-04-25T04:18:16.9328458Z [72/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-04-25T04:18:16.9441045Z [73/7581] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-04-25T04:18:16.9792294Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:18:16.9792922Z 2025-04-25T04:18:16.9794052Z 2025-04-25T04:18:16.9794947Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:18:16.9795497Z 2025-04-25T04:18:16.9795506Z 2025-04-25T04:18:16.9795521Z 2025-04-25T04:18:16.9795527Z 2025-04-25T04:18:16.9796387Z [74/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-04-25T04:18:17.0234874Z [75/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-04-25T04:18:17.1332265Z [76/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-04-25T04:18:17.2908968Z [77/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-04-25T04:18:17.3116503Z [78/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-04-25T04:18:17.3439254Z [79/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-04-25T04:18:17.4255123Z [80/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-04-25T04:18:17.4781056Z [81/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-04-25T04:18:17.5486361Z [82/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-04-25T04:18:17.6479554Z [83/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-04-25T04:18:17.7702698Z [84/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-04-25T04:18:17.7722064Z [85/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-04-25T04:18:17.8300853Z [86/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-04-25T04:18:17.8823692Z [87/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-04-25T04:18:17.9752238Z [88/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-04-25T04:18:17.9959839Z [89/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-04-25T04:18:18.1544046Z [90/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-04-25T04:18:18.1623925Z [91/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-04-25T04:18:18.1799985Z [92/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-04-25T04:18:18.2348616Z [93/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-04-25T04:18:18.2489406Z [94/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-04-25T04:18:18.2748728Z [95/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-04-25T04:18:18.4101911Z [96/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-04-25T04:18:18.6477096Z [97/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-04-25T04:18:18.6498926Z [98/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-04-25T04:18:18.6558909Z [99/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-04-25T04:18:18.6576180Z [100/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-04-25T04:18:18.6641369Z [101/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-04-25T04:18:18.6760781Z [102/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-04-25T04:18:18.8025717Z [103/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-04-25T04:18:19.0375527Z [104/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-04-25T04:18:19.0526763Z [105/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-04-25T04:18:19.0633545Z [106/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-04-25T04:18:19.0652917Z [107/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-04-25T04:18:19.0731065Z [108/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-04-25T04:18:19.0895233Z [109/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-04-25T04:18:19.2034744Z [110/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-04-25T04:18:19.3699859Z [111/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-04-25T04:18:19.4017119Z [112/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-04-25T04:18:19.4434458Z [113/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-04-25T04:18:19.4545833Z [114/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-04-25T04:18:19.4944822Z [115/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-04-25T04:18:19.5128367Z [116/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-04-25T04:18:19.5435794Z [117/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-04-25T04:18:19.6395717Z [118/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-04-25T04:18:19.6658158Z [119/7581] Linking CXX static library lib\libprotobuf.lib 2025-04-25T04:18:19.7922040Z [120/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-04-25T04:18:19.8531813Z [121/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-04-25T04:18:19.9075034Z [122/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-04-25T04:18:19.9510591Z [123/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-04-25T04:18:19.9675131Z [124/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-04-25T04:18:19.9994140Z [125/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-04-25T04:18:20.0822088Z [126/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-04-25T04:18:20.1052559Z [127/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-04-25T04:18:20.2160250Z [128/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-04-25T04:18:20.3308975Z [129/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-04-25T04:18:20.3336022Z [130/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-04-25T04:18:20.3667627Z [131/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-04-25T04:18:20.3751884Z [132/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-04-25T04:18:20.4303469Z [133/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-04-25T04:18:20.5208533Z [134/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-04-25T04:18:20.5773613Z [135/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-04-25T04:18:20.6436939Z [136/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-04-25T04:18:20.7138412Z [137/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-04-25T04:18:20.7368235Z [138/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-04-25T04:18:20.7388881Z [139/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-04-25T04:18:20.7792354Z [140/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-04-25T04:18:20.8405418Z [141/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-04-25T04:18:20.8759783Z [142/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-04-25T04:18:21.0011985Z [143/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-04-25T04:18:21.0514431Z [144/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-04-25T04:18:21.1445503Z [145/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-04-25T04:18:21.1543781Z [146/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-04-25T04:18:21.1770991Z [147/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-04-25T04:18:21.2489522Z [148/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-04-25T04:18:21.3209223Z [149/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-04-25T04:18:21.3804271Z [150/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-04-25T04:18:21.4118688Z [151/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-04-25T04:18:21.5438354Z [152/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-04-25T04:18:21.5624249Z [153/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-04-25T04:18:21.5743093Z [154/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-04-25T04:18:21.5768613Z [155/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-04-25T04:18:21.5887543Z [156/7581] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-04-25T04:18:21.7306875Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:18:21.7307455Z 2025-04-25T04:18:21.7307503Z 2025-04-25T04:18:21.7307837Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:18:21.7308309Z 2025-04-25T04:18:21.7308317Z 2025-04-25T04:18:21.7308324Z 2025-04-25T04:18:21.7308330Z 2025-04-25T04:18:21.7309162Z [157/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-04-25T04:18:21.7425103Z [158/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-04-25T04:18:21.7438477Z [159/7581] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-04-25T04:18:21.7897794Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:18:21.7898651Z 2025-04-25T04:18:21.7898660Z 2025-04-25T04:18:21.7899053Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:18:21.7900019Z 2025-04-25T04:18:21.7900136Z 2025-04-25T04:18:21.7900182Z 2025-04-25T04:18:21.7900189Z 2025-04-25T04:18:21.7901427Z [160/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-04-25T04:18:21.8754292Z [161/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-04-25T04:18:21.8890382Z [162/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-04-25T04:18:21.8953730Z [163/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-04-25T04:18:21.9044412Z [164/7581] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-04-25T04:18:21.9627585Z [165/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-04-25T04:18:22.0246838Z [166/7581] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-04-25T04:18:22.0587926Z [167/7581] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-04-25T04:18:22.0698164Z [168/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-04-25T04:18:22.0712859Z [169/7581] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-04-25T04:18:22.2926390Z [170/7581] Linking CXX static library lib\libprotoc.lib 2025-04-25T04:18:22.3941434Z [171/7581] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-04-25T04:18:22.4076989Z 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:18:22.4077939Z [172/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-04-25T04:18:22.4160371Z [173/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-04-25T04:18:22.4244938Z [174/7581] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-04-25T04:18:22.4327455Z 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:18:22.4330297Z [175/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-04-25T04:18:22.4843424Z [176/7581] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-04-25T04:18:22.4921851Z 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:18:22.4922819Z [177/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-04-25T04:18:22.5013219Z [178/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-04-25T04:18:22.5219546Z [179/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-04-25T04:18:22.5541884Z [180/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-04-25T04:18:22.5612387Z [181/7581] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-04-25T04:18:22.5941377Z 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:18:22.5942294Z [182/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-04-25T04:18:22.6046266Z [183/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-04-25T04:18:22.6385069Z [184/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-04-25T04:18:22.6449031Z [185/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-04-25T04:18:22.6520028Z [186/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-04-25T04:18:22.6610022Z [187/7581] Linking C static library lib\pthreadpool.lib 2025-04-25T04:18:22.6784181Z [188/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-04-25T04:18:22.7379632Z [189/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-04-25T04:18:22.7469297Z [190/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-04-25T04:18:22.7833673Z [191/7581] 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:18:22.8010351Z [192/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-04-25T04:18:22.8153558Z [193/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-04-25T04:18:22.8215293Z [194/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-04-25T04:18:22.8596704Z [195/7581] 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:18:22.8872682Z [196/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-04-25T04:18:22.8968523Z [197/7581] 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:18:22.9241600Z [198/7581] 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:18:22.9313914Z [199/7581] 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:18:22.9511929Z [200/7581] 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:18:22.9623635Z [201/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-04-25T04:18:22.9765868Z [202/7581] 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:18:23.0046226Z [203/7581] 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:18:23.0680975Z [204/7581] 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:18:23.0931163Z [205/7581] 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:18:23.0944502Z [206/7581] 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:18:23.1077323Z [207/7581] 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:18:23.1138096Z [208/7581] 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:18:23.1152302Z [209/7581] 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:18:23.1637389Z [210/7581] 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:18:23.1735537Z [211/7581] Linking CXX executable bin\protoc.exe 2025-04-25T04:18:23.1903250Z [212/7581] 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:18:23.2049305Z [213/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-04-25T04:18:23.2152724Z [214/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-04-25T04:18:23.2214794Z [215/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-04-25T04:18:23.2327753Z [216/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-04-25T04:18:23.2387718Z [217/7581] 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:18:23.2827866Z [218/7581] 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:18:23.2887993Z [219/7581] Running gen_proto.py on onnx/onnx.in.proto 2025-04-25T04:18:23.3259809Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-04-25T04:18:23.3260261Z 2025-04-25T04:18:23.3260630Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-04-25T04:18:23.3261126Z 2025-04-25T04:18:23.3261489Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-04-25T04:18:23.3261966Z 2025-04-25T04:18:23.3262269Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-04-25T04:18:23.3262705Z 2025-04-25T04:18:23.3263072Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-04-25T04:18:23.3263554Z 2025-04-25T04:18:23.3264064Z [220/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-04-25T04:18:23.3457982Z [221/7581] 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:18:23.3509984Z [222/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-04-25T04:18:23.3569051Z [223/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-04-25T04:18:23.5292972Z [224/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-04-25T04:18:23.5304844Z [225/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-04-25T04:18:23.5316933Z [226/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-04-25T04:18:23.5333666Z [227/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-04-25T04:18:23.5348940Z [228/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-04-25T04:18:23.5365543Z [229/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-04-25T04:18:23.6649409Z [230/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-04-25T04:18:23.6662478Z [231/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-04-25T04:18:23.6764087Z [232/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-04-25T04:18:23.6779243Z [233/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-04-25T04:18:23.6847515Z [234/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-04-25T04:18:23.6863438Z [235/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-04-25T04:18:23.7742104Z [236/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-04-25T04:18:23.7943098Z [237/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-04-25T04:18:23.7956659Z [238/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-04-25T04:18:23.8031513Z [239/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-04-25T04:18:23.8185171Z [240/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-04-25T04:18:23.8385092Z [241/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-04-25T04:18:23.8479465Z [242/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-04-25T04:18:23.9015559Z [243/7581] 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:18:23.9149608Z [244/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-04-25T04:18:23.9300254Z [245/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-04-25T04:18:23.9414178Z [246/7581] 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:18:23.9482153Z [247/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-04-25T04:18:23.9621384Z [248/7581] 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:18:23.9638663Z [249/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-04-25T04:18:23.9733827Z [250/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-04-25T04:18:24.0294012Z [251/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-04-25T04:18:24.0616031Z [252/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-04-25T04:18:24.0740125Z [253/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-04-25T04:18:24.0754941Z [254/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-04-25T04:18:24.0911783Z [255/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-04-25T04:18:24.1015132Z [256/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-04-25T04:18:24.1085877Z [257/7581] 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:18:24.1099621Z [258/7581] 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:18:24.1540940Z [259/7581] 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:18:24.1792139Z [260/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-04-25T04:18:24.1968273Z [261/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-04-25T04:18:24.2039103Z [262/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-04-25T04:18:24.2099743Z [263/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-04-25T04:18:24.2212258Z [264/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-04-25T04:18:24.2314950Z [265/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-04-25T04:18:24.2400403Z [266/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-04-25T04:18:24.2476290Z [267/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-04-25T04:18:24.2567570Z [268/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-04-25T04:18:24.3096925Z [269/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:18:24.3231480Z [270/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-04-25T04:18:24.3344424Z [271/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-04-25T04:18:24.3397654Z [272/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-04-25T04:18:24.3461527Z [273/7581] 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:18:24.3585570Z [274/7581] 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:18:24.3886545Z [275/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-04-25T04:18:24.3959125Z [276/7581] 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:18:24.4653555Z [277/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-04-25T04:18:24.4706347Z [278/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-04-25T04:18:24.4851066Z [279/7581] 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:18:24.4948242Z [280/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-04-25T04:18:24.5122251Z [281/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-04-25T04:18:24.5535785Z [282/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-04-25T04:18:24.5690599Z [283/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-04-25T04:18:24.5705124Z [284/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-04-25T04:18:24.5994946Z [285/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-04-25T04:18:24.6122468Z [286/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-04-25T04:18:24.6253121Z [287/7581] 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:18:24.6316188Z [288/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-04-25T04:18:24.6529469Z [289/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-04-25T04:18:24.7009274Z [290/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-04-25T04:18:24.7028398Z [291/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-04-25T04:18:24.7286519Z [292/7581] 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:18:24.7360841Z [293/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-04-25T04:18:24.7672832Z [294/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-04-25T04:18:24.7827883Z [295/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:18:24.7843489Z [296/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-04-25T04:18:24.8055266Z [297/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-04-25T04:18:24.8322798Z [298/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-04-25T04:18:24.8351330Z [299/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-04-25T04:18:24.8638379Z [300/7581] 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:18:24.9119144Z [301/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-04-25T04:18:24.9187170Z [302/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-04-25T04:18:24.9255120Z [303/7581] 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:18:24.9319879Z [304/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-04-25T04:18:24.9405999Z [305/7581] 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:18:24.9647969Z [306/7581] 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:18:24.9885981Z [307/7581] 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:18:25.0446651Z [308/7581] 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:18:25.0511445Z [309/7581] 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:18:25.0627375Z [310/7581] 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:18:25.0689876Z [311/7581] 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:18:25.0705350Z [312/7581] 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:18:25.0771267Z [313/7581] 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:18:25.0883014Z [314/7581] 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:18:25.1145598Z [315/7581] 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:18:25.1892495Z [316/7581] 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:18:25.1962624Z [317/7581] 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:18:25.2089426Z [318/7581] 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:18:25.2164621Z [319/7581] 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:18:25.2318551Z [320/7581] 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:18:25.2405620Z [321/7581] 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:18:25.2480562Z [322/7581] 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:18:25.2498908Z [323/7581] 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:18:25.3514433Z [324/7581] 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:18:25.3787475Z [325/7581] 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:18:25.3838112Z [326/7581] 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:18:25.3976349Z [327/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-04-25T04:18:25.4134974Z [328/7581] 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:18:25.4147911Z [329/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-04-25T04:18:25.4232647Z [330/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-04-25T04:18:25.4654818Z [331/7581] 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:18:25.4971893Z [332/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-04-25T04:18:25.5243423Z [333/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-04-25T04:18:25.5406859Z [334/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-04-25T04:18:25.5424410Z [335/7581] 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:18:25.5741486Z [336/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-04-25T04:18:25.5905421Z [337/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-04-25T04:18:25.5970492Z [338/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-04-25T04:18:25.6501929Z [339/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-04-25T04:18:25.6572913Z [340/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-04-25T04:18:25.6819237Z [341/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-04-25T04:18:25.6971914Z [342/7581] 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:18:25.7058874Z [343/7581] 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:18:25.7210200Z [344/7581] 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:18:25.7317670Z [345/7581] 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:18:25.7489818Z [346/7581] 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:18:25.7630711Z [347/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-04-25T04:18:25.7690589Z [348/7581] 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:18:25.8060414Z [349/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-04-25T04:18:25.8393608Z [350/7581] 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:18:25.8633202Z [351/7581] 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:18:25.8703285Z [352/7581] 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:18:25.8891956Z [353/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-04-25T04:18:25.8949835Z [354/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-04-25T04:18:25.9009357Z [355/7581] 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:18:25.9233805Z [356/7581] 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:18:25.9627393Z [357/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-04-25T04:18:25.9817515Z [358/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-04-25T04:18:25.9933594Z [359/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-04-25T04:18:26.0240703Z [360/7581] 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:18:26.0253119Z [361/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-04-25T04:18:26.0312894Z [362/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-04-25T04:18:26.0448496Z [363/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-04-25T04:18:26.0866296Z [364/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-04-25T04:18:26.1176333Z [365/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-04-25T04:18:26.1192505Z [366/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-04-25T04:18:26.1302727Z [367/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-04-25T04:18:26.1625255Z [368/7581] 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:18:26.1771843Z [369/7581] 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:18:26.1827717Z [370/7581] 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:18:26.2004449Z [371/7581] 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:18:26.2338756Z [372/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:18:26.2356042Z [373/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:18:26.2416338Z [374/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-04-25T04:18:26.2515488Z [375/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-04-25T04:18:26.2872009Z [376/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-04-25T04:18:26.2987231Z [377/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-04-25T04:18:26.3258184Z [378/7581] 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:18:26.3573736Z [379/7581] 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:18:26.3803450Z [380/7581] 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:18:26.3865703Z [381/7581] 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:18:26.4140943Z [382/7581] 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:18:26.4196645Z [383/7581] 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:18:26.4435461Z [384/7581] 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:18:26.4572982Z [385/7581] 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:18:26.4830726Z [386/7581] 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:18:26.5569966Z [387/7581] 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:18:26.5700646Z [388/7581] 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:18:26.5774168Z [389/7581] 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:18:26.5841666Z [390/7581] 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:18:26.5865605Z [391/7581] 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:18:26.6069236Z [392/7581] 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:18:26.6083336Z [393/7581] 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:18:26.6289310Z [394/7581] 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:18:26.7174511Z [395/7581] 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:18:26.7373789Z [396/7581] 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:18:26.7387030Z [397/7581] 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:18:26.7442389Z [398/7581] 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:18:26.7512778Z [399/7581] 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:18:26.7568291Z [400/7581] 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:18:26.7642185Z [401/7581] 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:18:26.8337424Z [402/7581] 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:18:26.8402301Z [403/7581] 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:18:26.8569274Z [404/7581] 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:18:26.8705689Z [405/7581] 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:18:26.8813914Z [406/7581] 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:18:26.8877583Z [407/7581] 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:18:26.8935637Z [408/7581] 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:18:26.9026123Z [409/7581] 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:18:26.9571645Z [410/7581] 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:18:26.9789570Z [411/7581] 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:18:26.9851163Z [412/7581] 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:18:26.9863418Z [413/7581] 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:18:27.0111702Z [414/7581] 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:18:27.0181675Z [415/7581] 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:18:27.0244276Z [416/7581] 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:18:27.0323003Z [417/7581] 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:18:27.0594469Z [418/7581] 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:18:27.1007724Z [419/7581] 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:18:27.1129844Z [420/7581] 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:18:27.1308663Z [421/7581] 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:18:27.1423885Z [422/7581] 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:18:27.1578442Z [423/7581] 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:18:27.1646750Z [424/7581] 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:18:27.1938695Z [425/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-04-25T04:18:27.2183671Z [426/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-04-25T04:18:27.2236551Z [427/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-04-25T04:18:27.2369291Z [428/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-04-25T04:18:27.2571816Z [429/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-04-25T04:18:27.2785771Z [430/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-04-25T04:18:27.2850386Z [431/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-04-25T04:18:27.3105828Z [432/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-04-25T04:18:27.3259453Z [433/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-04-25T04:18:27.3358164Z [434/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-04-25T04:18:27.3648009Z [435/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-04-25T04:18:27.3778980Z [436/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-04-25T04:18:27.3852342Z [437/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-04-25T04:18:27.3982581Z [438/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-04-25T04:18:27.4480276Z [439/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-04-25T04:18:27.4547720Z [440/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-04-25T04:18:27.4564099Z [441/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-04-25T04:18:27.4737925Z [442/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-04-25T04:18:27.4954726Z [443/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-04-25T04:18:27.5070320Z [444/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-04-25T04:18:27.5396768Z [445/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-04-25T04:18:27.5562274Z [446/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-04-25T04:18:27.5799722Z [447/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-04-25T04:18:27.5821038Z [448/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-04-25T04:18:27.5947290Z [449/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-04-25T04:18:27.6086314Z [450/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-04-25T04:18:27.6213168Z [451/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-04-25T04:18:27.6466308Z [452/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-04-25T04:18:27.6766033Z [453/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-04-25T04:18:27.7169103Z [454/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-04-25T04:18:27.7379600Z [455/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-04-25T04:18:27.7781097Z [456/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-04-25T04:18:27.8062583Z [457/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-04-25T04:18:27.8232800Z [458/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-04-25T04:18:27.8247133Z [459/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-04-25T04:18:27.8791989Z [460/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-04-25T04:18:27.9041355Z [461/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-04-25T04:18:27.9127810Z [462/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-04-25T04:18:27.9338420Z [463/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-04-25T04:18:27.9442333Z [464/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-04-25T04:18:27.9613277Z [465/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-04-25T04:18:27.9632831Z [466/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-04-25T04:18:28.0179967Z [467/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-04-25T04:18:28.0246952Z [468/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-04-25T04:18:28.0424443Z [469/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-04-25T04:18:28.0523693Z [470/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-04-25T04:18:28.0743057Z [471/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-04-25T04:18:28.1227054Z [472/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-04-25T04:18:28.1307673Z [473/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-04-25T04:18:28.1439029Z [474/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-04-25T04:18:28.1458892Z [475/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-04-25T04:18:28.1629619Z [476/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-04-25T04:18:28.1748991Z [477/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-04-25T04:18:28.1767400Z [478/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-04-25T04:18:28.2023422Z [479/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-04-25T04:18:28.2568590Z [480/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-04-25T04:18:28.2752244Z [481/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-04-25T04:18:28.2963112Z [482/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-04-25T04:18:28.3023913Z [483/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-04-25T04:18:28.3072116Z [484/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-04-25T04:18:28.3220799Z [485/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-04-25T04:18:28.3334179Z [486/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-04-25T04:18:28.3521322Z [487/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-04-25T04:18:28.3884859Z [488/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-04-25T04:18:28.3957808Z [489/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-04-25T04:18:28.4411268Z [490/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-04-25T04:18:28.4503412Z [491/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-04-25T04:18:28.4586892Z [492/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-04-25T04:18:28.4699398Z [493/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-04-25T04:18:28.4768453Z [494/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-04-25T04:18:28.4834981Z [495/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-04-25T04:18:28.5108394Z [496/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-04-25T04:18:28.5326173Z [497/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-04-25T04:18:28.5755802Z [498/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-04-25T04:18:28.5890835Z [499/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-04-25T04:18:28.5905197Z [500/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-04-25T04:18:28.6067312Z [501/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-04-25T04:18:28.6122032Z [502/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-04-25T04:18:28.6313876Z [503/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-04-25T04:18:28.6467496Z [504/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-04-25T04:18:28.6588789Z [505/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-04-25T04:18:28.7057051Z [506/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-04-25T04:18:28.7426944Z [507/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-04-25T04:18:28.7571900Z [508/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-04-25T04:18:28.7642802Z [509/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-04-25T04:18:28.7707571Z [510/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-04-25T04:18:28.7833204Z [511/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-04-25T04:18:28.7929476Z [512/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-04-25T04:18:28.8061712Z [513/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-04-25T04:18:28.8164140Z [514/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-04-25T04:18:28.8916765Z [515/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-04-25T04:18:28.8989357Z [516/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-04-25T04:18:28.9288384Z [517/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-04-25T04:18:28.9302683Z [518/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-04-25T04:18:28.9370567Z [519/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-04-25T04:18:28.9385365Z [520/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-04-25T04:18:28.9575606Z [521/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-04-25T04:18:28.9688514Z [522/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-04-25T04:18:29.0171976Z [523/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-04-25T04:18:29.0319135Z [524/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-04-25T04:18:29.0514154Z [525/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-04-25T04:18:29.0575602Z [526/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-04-25T04:18:29.0702435Z [527/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-04-25T04:18:29.0801591Z [528/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-04-25T04:18:29.1045334Z [529/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-04-25T04:18:29.1477478Z [530/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-04-25T04:18:29.1546281Z [531/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-04-25T04:18:29.1766310Z [532/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-04-25T04:18:29.1829896Z [533/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-04-25T04:18:29.1968718Z [534/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-04-25T04:18:29.2150754Z [535/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-04-25T04:18:29.2230182Z [536/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-04-25T04:18:29.2409533Z [537/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-04-25T04:18:29.2776364Z [538/7581] 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:18:29.2990735Z [539/7581] 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:18:29.3578573Z [540/7581] 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:18:29.3698724Z [541/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-04-25T04:18:29.3826573Z [542/7581] 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:18:29.3903667Z [543/7581] 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:18:29.3918322Z [544/7581] 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:18:29.3934781Z [545/7581] 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:18:29.3951915Z [546/7581] 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:18:29.4024411Z [547/7581] 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:18:29.4869582Z [548/7581] 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:18:29.5219363Z [549/7581] 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:18:29.5274310Z [550/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-04-25T04:18:29.5350226Z [551/7581] 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:18:29.5365426Z [552/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-04-25T04:18:29.5379144Z [553/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-04-25T04:18:29.5498785Z [554/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-04-25T04:18:29.5634763Z [555/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-04-25T04:18:29.6333498Z [556/7581] 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:18:29.6600434Z [557/7581] 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:18:29.6712791Z [558/7581] 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:18:29.6726761Z [559/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-04-25T04:18:29.6795810Z [560/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-04-25T04:18:29.6809227Z [561/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-04-25T04:18:29.7026650Z [562/7581] 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:18:29.7471009Z [563/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-04-25T04:18:29.7811611Z [564/7581] 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:18:29.7874145Z [565/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-04-25T04:18:29.8030007Z [566/7581] 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:18:29.8046879Z [567/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-04-25T04:18:29.8064018Z [568/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-04-25T04:18:29.8181826Z [569/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-04-25T04:18:29.8279711Z [570/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-04-25T04:18:29.8654939Z [571/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-04-25T04:18:29.9068107Z [572/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-04-25T04:18:29.9258945Z [573/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-04-25T04:18:29.9473561Z [574/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-04-25T04:18:29.9488063Z [575/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-04-25T04:18:29.9562016Z [576/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-04-25T04:18:29.9576325Z [577/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-04-25T04:18:29.9589469Z [578/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-04-25T04:18:29.9934645Z [579/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-04-25T04:18:30.0353235Z [580/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-04-25T04:18:30.0679646Z [581/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-04-25T04:18:30.0828644Z [582/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-04-25T04:18:30.0844058Z [583/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-04-25T04:18:30.0941700Z [584/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-04-25T04:18:30.1134020Z [585/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-04-25T04:18:30.1323945Z [586/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-04-25T04:18:30.1384318Z [587/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-04-25T04:18:30.1765925Z [588/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-04-25T04:18:30.1909834Z [589/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-04-25T04:18:30.2099685Z [590/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-04-25T04:18:30.2287212Z [591/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-04-25T04:18:30.2452759Z [592/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-04-25T04:18:30.2683522Z [593/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-04-25T04:18:30.2701028Z [594/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-04-25T04:18:30.2775613Z [595/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-04-25T04:18:30.3062839Z [596/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-04-25T04:18:30.3283880Z [597/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-04-25T04:18:30.3499774Z [598/7581] 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:18:30.3602993Z [599/7581] 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:18:30.4027537Z [600/7581] 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:18:30.4043731Z [601/7581] 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:18:30.4310954Z [602/7581] 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:18:30.4486004Z [603/7581] 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:18:30.4551925Z [604/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-04-25T04:18:30.4841375Z [605/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-04-25T04:18:30.4902039Z [606/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-04-25T04:18:30.4919736Z [607/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-04-25T04:18:30.5192200Z [608/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-04-25T04:18:30.5314561Z [609/7581] 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:18:30.5583885Z [610/7581] 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:18:30.5811672Z [611/7581] 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:18:30.6015573Z [612/7581] 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:18:30.6339832Z [613/7581] 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:18:30.6399972Z [614/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-04-25T04:18:30.6470958Z [615/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-04-25T04:18:30.6645899Z [616/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-04-25T04:18:30.6736778Z [617/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-04-25T04:18:30.6838179Z [618/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-04-25T04:18:30.7159292Z [619/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-04-25T04:18:30.7315230Z [620/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-04-25T04:18:30.7668805Z [621/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-04-25T04:18:30.7946884Z [622/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-04-25T04:18:30.8018413Z [623/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-04-25T04:18:30.8036979Z [624/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-04-25T04:18:30.8131364Z [625/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-04-25T04:18:30.8338000Z [626/7581] 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:18:30.8724030Z [627/7581] 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:18:30.8897027Z [628/7581] 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:18:30.9593405Z [629/7581] 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:18:30.9688902Z [630/7581] 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:18:30.9753271Z [631/7581] 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:18:30.9772949Z [632/7581] 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:18:30.9839860Z [633/7581] 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:18:31.0082887Z [634/7581] 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:18:31.0177396Z [635/7581] 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:18:31.0472902Z [636/7581] 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:18:31.1209567Z [637/7581] 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:18:31.1266308Z [638/7581] 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:18:31.1445885Z [639/7581] 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:18:31.1495952Z [640/7581] 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:18:31.1508836Z [641/7581] 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:18:31.1675054Z [642/7581] 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:18:31.2027628Z [643/7581] 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:18:31.2313333Z [644/7581] 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:18:31.2755365Z [645/7581] 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:18:31.2769284Z [646/7581] 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:18:31.2899674Z [647/7581] 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:18:31.3135028Z [648/7581] 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:18:31.3200406Z [649/7581] 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:18:31.3390104Z [650/7581] 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:18:31.3569505Z [651/7581] 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:18:31.4124465Z [652/7581] 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:18:31.4187892Z [653/7581] 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:18:31.4467259Z [654/7581] 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:18:31.4637152Z [655/7581] 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:18:31.4698758Z [656/7581] 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:18:31.4816810Z [657/7581] 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:18:31.4992022Z [658/7581] 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:18:31.5071452Z [659/7581] 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:18:31.5641640Z [660/7581] 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:18:31.5769959Z [661/7581] 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:18:31.6214009Z [662/7581] 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:18:31.6273759Z [663/7581] 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:18:31.6330137Z [664/7581] 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:18:31.6493206Z [665/7581] 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:18:31.6676577Z [666/7581] 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:18:31.6913498Z [667/7581] 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:18:31.7126320Z [668/7581] 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:18:31.7305187Z [669/7581] 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:18:31.7840446Z [670/7581] 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:18:31.7973504Z [671/7581] 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:18:31.8088281Z [672/7581] 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:18:31.8260405Z [673/7581] 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:18:31.8460574Z [674/7581] 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:18:31.8478213Z [675/7581] 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:18:31.8700915Z [676/7581] 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:18:31.9318161Z [677/7581] 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:18:31.9542458Z [678/7581] 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:18:31.9557231Z [679/7581] 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:18:31.9892752Z [680/7581] 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:18:32.0054935Z [681/7581] 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:18:32.0069791Z [682/7581] 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:18:32.0082568Z [683/7581] 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:18:32.0447996Z [684/7581] 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:18:32.1059546Z [685/7581] 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:18:32.1126904Z [686/7581] 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:18:32.1279980Z [687/7581] 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:18:32.1804427Z [688/7581] 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:18:32.1877926Z [689/7581] 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:18:32.1897187Z [690/7581] 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:18:32.1974438Z [691/7581] 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:18:32.2102566Z [692/7581] 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:18:32.2365908Z [693/7581] 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:18:32.2657971Z [694/7581] 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:18:32.2728026Z [695/7581] 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:18:32.3259461Z [696/7581] 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:18:32.3317979Z [697/7581] 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:18:32.3481696Z [698/7581] 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:18:32.3500328Z [699/7581] 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:18:32.3649763Z [700/7581] 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:18:32.3989724Z [701/7581] 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:18:32.4149476Z [702/7581] 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:18:32.4215253Z [703/7581] 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:18:32.4625704Z [704/7581] 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:18:32.4890803Z [705/7581] 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:18:32.5047597Z [706/7581] 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:18:32.5063506Z [707/7581] 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:18:32.5328265Z [708/7581] 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:18:32.5419668Z [709/7581] 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:18:32.5526973Z [710/7581] 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:18:32.5590329Z [711/7581] 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:18:32.6033856Z [712/7581] 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:18:32.6387572Z [713/7581] 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:18:32.6456007Z [714/7581] 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:18:32.6758838Z [715/7581] 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:18:32.6777170Z [716/7581] 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:18:32.7018066Z [717/7581] 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:18:32.7083783Z [718/7581] 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:18:32.7100333Z [719/7581] 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:18:32.7529642Z [720/7581] 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:18:32.7892311Z [721/7581] 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:18:32.7968822Z [722/7581] 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:18:32.8094820Z [723/7581] 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:18:32.8238276Z [724/7581] 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:18:32.8298130Z [725/7581] 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:18:32.8450093Z [726/7581] 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:18:32.8761184Z [727/7581] 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:18:32.8828834Z [728/7581] 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:18:32.9112597Z [729/7581] 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:18:32.9527949Z [730/7581] 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:18:32.9695354Z [731/7581] 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:18:32.9863565Z [732/7581] 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:18:32.9923782Z [733/7581] 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:18:33.0002108Z [734/7581] 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:18:33.0091781Z [735/7581] 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:18:33.0154989Z [736/7581] 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:18:33.0335532Z [737/7581] 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:18:33.1049830Z [738/7581] 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:18:33.1442348Z [739/7581] 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:18:33.1763734Z [740/7581] 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:18:33.1833624Z [741/7581] 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:18:33.1850144Z [742/7581] 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:18:33.1916658Z [743/7581] 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:18:33.1950940Z [744/7581] 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:18:33.2011882Z [745/7581] 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:18:33.2311000Z [746/7581] 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:18:33.3212561Z [747/7581] 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:18:33.3267301Z [748/7581] 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:18:33.3384071Z [749/7581] 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:18:33.3438830Z [750/7581] 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:18:33.3488807Z [751/7581] 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:18:33.3590578Z [752/7581] 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:18:33.3667072Z [753/7581] 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:18:33.3735317Z [754/7581] 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:18:33.4513077Z [755/7581] 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:18:33.4738374Z [756/7581] 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:18:33.4905051Z [757/7581] 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:18:33.5095856Z [758/7581] 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:18:33.5216947Z [759/7581] 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:18:33.5369126Z [760/7581] 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:18:33.5515891Z [761/7581] 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:18:33.5708002Z [762/7581] 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:18:33.5997308Z [763/7581] 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:18:33.6161466Z [764/7581] 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:18:33.6370293Z [765/7581] 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:18:33.6652756Z [766/7581] 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:18:33.6750272Z [767/7581] 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:18:33.6923657Z [768/7581] 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:18:33.7110160Z [769/7581] 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:18:33.7310745Z [770/7581] 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:18:33.7729269Z [771/7581] 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:18:33.7867735Z [772/7581] 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:18:33.7948433Z [773/7581] 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:18:33.8344063Z [774/7581] 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:18:33.8362783Z [775/7581] 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:18:33.8449645Z [776/7581] 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:18:33.8640770Z [777/7581] 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:18:33.8878284Z [778/7581] 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:18:33.9222741Z [779/7581] 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:18:33.9383194Z [780/7581] 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:18:33.9715943Z [781/7581] 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:18:33.9778632Z [782/7581] 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:18:33.9794515Z [783/7581] 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:18:33.9876239Z [784/7581] 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:18:33.9962416Z [785/7581] 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:18:34.0529670Z [786/7581] 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:18:34.0703886Z [787/7581] 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:18:34.0874502Z [788/7581] 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:18:34.1231611Z [789/7581] 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:18:34.1249186Z [790/7581] 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:18:34.1402586Z [791/7581] 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:18:34.1645370Z [792/7581] 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:18:34.1733781Z [793/7581] 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:18:34.2012223Z [794/7581] 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:18:34.2097729Z [795/7581] 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:18:34.2163866Z [796/7581] 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:18:34.2452652Z [797/7581] 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:18:34.2537814Z [798/7581] 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:18:34.2781747Z [799/7581] 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:18:34.3152808Z [800/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-04-25T04:18:34.3171636Z [801/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-04-25T04:18:34.3443570Z [802/7581] 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:18:34.3458070Z [803/7581] 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:18:34.3581850Z [804/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-04-25T04:18:34.3640402Z [805/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-04-25T04:18:34.3809189Z [806/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-04-25T04:18:34.3822683Z [807/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-04-25T04:18:34.4487635Z [808/7581] 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:18:34.4676723Z [809/7581] 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:18:34.4694280Z [810/7581] 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:18:34.4758155Z [811/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-04-25T04:18:34.4873036Z [812/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-04-25T04:18:34.5003531Z [813/7581] 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:18:34.5124312Z [814/7581] 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:18:34.5389380Z [815/7581] 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:18:34.5740727Z [816/7581] 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:18:34.6037579Z [817/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-04-25T04:18:34.6053905Z [818/7581] 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:18:34.6115861Z [819/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-04-25T04:18:34.6287591Z [820/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-04-25T04:18:34.6359823Z [821/7581] 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:18:34.6689291Z [822/7581] 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:18:34.6930444Z [823/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-04-25T04:18:34.6944879Z [824/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-04-25T04:18:34.7162943Z [825/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-04-25T04:18:34.7268030Z [826/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-04-25T04:18:34.7601832Z [827/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-04-25T04:18:34.7887887Z [828/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-04-25T04:18:34.8187755Z [829/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-04-25T04:18:34.8266010Z [830/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-04-25T04:18:34.8281105Z [831/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-04-25T04:18:34.8511731Z [832/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-04-25T04:18:34.8612176Z [833/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-04-25T04:18:34.8755032Z [834/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-04-25T04:18:34.8824659Z [835/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-04-25T04:18:34.9186436Z [836/7581] 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:18:34.9469887Z [837/7581] 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:18:34.9542621Z [838/7581] 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:18:34.9562690Z [839/7581] 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:18:34.9877776Z [840/7581] 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:18:34.9953249Z [841/7581] 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:18:35.0044037Z [842/7581] 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:18:35.0119817Z [843/7581] 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:18:35.0294967Z [844/7581] 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:18:35.0799159Z [845/7581] 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:18:35.0864383Z [846/7581] 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:18:35.0928560Z [847/7581] 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:18:35.1366446Z [848/7581] 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:18:35.1396282Z [849/7581] 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:18:35.1461112Z [850/7581] 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:18:35.1609384Z [851/7581] 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:18:35.1890121Z [852/7581] 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:18:35.2226374Z [853/7581] 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:18:35.2242428Z [854/7581] 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:18:35.2302664Z [855/7581] 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:18:35.2701831Z [856/7581] 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:18:35.2893908Z [857/7581] 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:18:35.2999305Z [858/7581] 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:18:35.3177822Z [859/7581] 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:18:35.3322850Z [860/7581] 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:18:35.3667152Z [861/7581] 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:18:35.3684700Z [862/7581] 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:18:35.3698158Z [863/7581] 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:18:35.3978683Z [864/7581] 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:18:35.4292151Z [865/7581] 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:18:35.4411529Z [866/7581] 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:18:35.4599006Z [867/7581] 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:18:35.4929507Z [868/7581] 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:18:35.4999139Z [869/7581] 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:18:35.5089501Z [870/7581] 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:18:35.5349905Z [871/7581] 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:18:35.5509078Z [872/7581] 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:18:35.5928677Z [873/7581] 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:18:35.6295285Z [874/7581] 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:18:35.6494158Z [875/7581] 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:18:35.6553579Z [876/7581] 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:18:35.6628608Z [877/7581] 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:18:35.6698788Z [878/7581] 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:18:35.6911182Z [879/7581] 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:18:35.6979242Z [880/7581] 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:18:35.7553043Z [881/7581] 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:18:35.7919850Z [882/7581] 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:18:35.8016742Z [883/7581] 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:18:35.8033646Z [884/7581] 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:18:35.8105863Z [885/7581] 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:18:35.8199807Z [886/7581] 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:18:35.8497759Z [887/7581] 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:18:35.8602547Z [888/7581] 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:18:35.8902558Z [889/7581] 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:18:35.9215273Z [890/7581] 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:18:35.9398755Z [891/7581] 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:18:35.9667843Z [892/7581] 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:18:35.9915980Z [893/7581] 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:18:36.0025363Z [894/7581] 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:18:36.0091433Z [895/7581] 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:18:36.0108086Z [896/7581] 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:18:36.0196944Z [897/7581] 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:18:36.0502260Z [898/7581] 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:18:36.0692961Z [899/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-04-25T04:18:36.0758244Z [900/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-04-25T04:18:36.1263800Z [901/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-04-25T04:18:36.1319462Z [902/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-04-25T04:18:36.1385350Z [903/7581] 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:18:36.1456054Z [904/7581] 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:18:36.1702350Z [905/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-04-25T04:18:36.1762373Z [906/7581] 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:18:36.1898774Z [907/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-04-25T04:18:36.1969755Z [908/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-04-25T04:18:36.2668669Z [909/7581] 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:18:36.2844337Z [910/7581] 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:18:36.2909711Z [911/7581] 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:18:36.2924120Z [912/7581] 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:18:36.2987712Z [913/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-04-25T04:18:36.3065383Z [914/7581] 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:18:36.3151389Z [915/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-04-25T04:18:36.3178447Z [916/7581] 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:18:36.3916993Z [917/7581] 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:18:36.4125472Z [918/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-04-25T04:18:36.4257425Z [919/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-04-25T04:18:36.4270951Z [920/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-04-25T04:18:36.4324647Z [921/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-04-25T04:18:36.4401671Z [922/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-04-25T04:18:36.4643096Z [923/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-04-25T04:18:36.4717183Z [924/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-04-25T04:18:36.5163283Z [925/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-04-25T04:18:36.5568590Z [926/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-04-25T04:18:36.5698956Z [927/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-04-25T04:18:36.5770829Z [928/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-04-25T04:18:36.5788798Z [929/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-04-25T04:18:36.5806110Z [930/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-04-25T04:18:36.5929379Z [931/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-04-25T04:18:36.6283082Z [932/7581] 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:18:36.6355042Z [933/7581] 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:18:36.6877951Z [934/7581] 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:18:36.6982330Z [935/7581] 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:18:36.7046077Z [936/7581] 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:18:36.7065081Z [937/7581] 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:18:36.7196539Z [938/7581] 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:18:36.7369166Z [939/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-04-25T04:18:36.7779167Z [940/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-04-25T04:18:36.8078601Z [941/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-04-25T04:18:36.8152073Z [942/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-04-25T04:18:36.8206068Z [943/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-04-25T04:18:36.8329332Z [944/7581] 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:18:36.8447656Z [945/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:18:36.8632202Z [946/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-04-25T04:18:36.8895850Z [947/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-04-25T04:18:36.8966900Z [948/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-04-25T04:18:36.9246600Z [949/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-04-25T04:18:36.9469339Z [950/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-04-25T04:18:36.9655703Z [951/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-04-25T04:18:36.9725407Z [952/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-04-25T04:18:36.9858491Z [953/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-04-25T04:18:36.9920088Z [954/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-04-25T04:18:37.0036096Z [955/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-04-25T04:18:37.0305910Z [956/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-04-25T04:18:37.0374898Z [957/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-04-25T04:18:37.0818676Z [958/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-04-25T04:18:37.1043086Z [959/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-04-25T04:18:37.1056342Z [960/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-04-25T04:18:37.1115225Z [961/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-04-25T04:18:37.1188223Z [962/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-04-25T04:18:37.1268756Z [963/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-04-25T04:18:37.1625694Z [964/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-04-25T04:18:37.1751326Z [965/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-04-25T04:18:37.2153037Z [966/7581] 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:18:37.2213062Z [967/7581] 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:18:37.2303189Z [968/7581] 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:18:37.2361441Z [969/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-04-25T04:18:37.2847781Z [970/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-04-25T04:18:37.2944457Z [971/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-04-25T04:18:37.3028224Z [972/7581] 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:18:37.3104421Z [973/7581] 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:18:37.3342552Z [974/7581] 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:18:37.3402348Z [975/7581] 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:18:37.3523062Z [976/7581] 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:18:37.3638232Z [977/7581] 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:18:37.4031890Z [978/7581] 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:18:37.4314334Z [979/7581] 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:18:37.4327339Z [980/7581] 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:18:37.4421736Z [981/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-04-25T04:18:37.4550406Z [982/7581] 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:18:37.4668909Z [983/7581] 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:18:37.4742442Z [984/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-04-25T04:18:37.4981447Z [985/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-04-25T04:18:37.5091137Z [986/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-04-25T04:18:37.5103319Z [987/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-04-25T04:18:37.5270181Z [988/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-04-25T04:18:37.5316549Z [989/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-04-25T04:18:37.5538933Z [990/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-04-25T04:18:37.5717749Z [991/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-04-25T04:18:37.5866931Z [992/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-04-25T04:18:37.6043666Z [993/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-04-25T04:18:37.6138024Z [994/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-04-25T04:18:37.6197316Z [995/7581] 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:18:37.6283393Z [996/7581] 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:18:37.6339355Z [997/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-04-25T04:18:37.6397752Z [998/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-04-25T04:18:37.6652540Z [999/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-04-25T04:18:37.6849749Z [1000/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-04-25T04:18:37.6934336Z [1001/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-04-25T04:18:37.7057389Z [1002/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-04-25T04:18:37.7353044Z [1003/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-04-25T04:18:37.7440473Z [1004/7581] 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:18:37.7884851Z [1005/7581] 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:18:37.7898821Z [1006/7581] 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:18:37.7912049Z [1007/7581] 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:18:37.7967535Z [1008/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-04-25T04:18:37.8176117Z [1009/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-04-25T04:18:37.8235485Z [1010/7581] 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:18:37.8424498Z [1011/7581] 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:18:37.8500808Z [1012/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-04-25T04:18:37.8599042Z [1013/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-04-25T04:18:37.8618609Z [1014/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-04-25T04:18:37.8674804Z [1015/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-04-25T04:18:37.8866688Z [1016/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-04-25T04:18:37.8961888Z [1017/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-04-25T04:18:37.9028670Z [1018/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-04-25T04:18:37.9156327Z [1019/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-04-25T04:18:37.9396246Z [1020/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-04-25T04:18:37.9486872Z [1021/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-04-25T04:18:37.9499839Z [1022/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-04-25T04:18:37.9551872Z [1023/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-04-25T04:18:37.9823545Z [1024/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-04-25T04:18:37.9877712Z [1025/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-04-25T04:18:37.9891467Z [1026/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-04-25T04:18:38.0139295Z [1027/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-04-25T04:18:38.0151335Z [1028/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-04-25T04:18:38.0209628Z [1029/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-04-25T04:18:38.0301824Z [1030/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-04-25T04:18:38.0466264Z [1031/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-04-25T04:18:38.0525206Z [1032/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-04-25T04:18:38.0737507Z [1033/7581] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-04-25T04:18:38.0738199Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-04-25T04:18:38.0739178Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-04-25T04:18:38.0740095Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-04-25T04:18:38.0740959Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-04-25T04:18:38.0791118Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-04-25T04:18:38.0792108Z 2025-04-25T04:18:38.0792356Z [1034/7581] Linking C static library lib\cpuinfo.lib 2025-04-25T04:18:38.0991976Z [1035/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-04-25T04:18:38.1095630Z [1036/7581] Linking C executable sleef\bin\mkalias.exe 2025-04-25T04:18:38.1128404Z [1037/7581] Linking C executable sleef\bin\mkdisp.exe 2025-04-25T04:18:38.1156449Z [1038/7581] Running gen_proto.py on onnx/onnx-data.in.proto 2025-04-25T04:18:38.1605042Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-04-25T04:18:38.1605694Z 2025-04-25T04:18:38.1606229Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-04-25T04:18:38.1606805Z 2025-04-25T04:18:38.1607324Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-04-25T04:18:38.1607865Z 2025-04-25T04:18:38.1608245Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-04-25T04:18:38.1608810Z 2025-04-25T04:18:38.1609408Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-04-25T04:18:38.1609900Z 2025-04-25T04:18:38.1610245Z [1039/7581] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-04-25T04:18:38.1869583Z [1040/7581] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-04-25T04:18:38.1888400Z [1041/7581] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-04-25T04:18:38.1956530Z [1042/7581] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-04-25T04:18:38.1970385Z [1043/7581] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-04-25T04:18:38.2027705Z [1044/7581] Linking C executable sleef\bin\mkrename.exe 2025-04-25T04:18:38.2269419Z [1045/7581] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-04-25T04:18:38.3045832Z [1046/7581] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-04-25T04:18:38.3098145Z [1047/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-04-25T04:18:38.3234727Z [1048/7581] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-04-25T04:18:38.4135786Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.4136712Z [1049/7581] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-04-25T04:18:38.4328313Z [1050/7581] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-04-25T04:18:38.4332365Z 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:18:38.4336041Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:38.4338047Z 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:18:38.4339700Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:38.4341930Z 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:18:38.4344330Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:18:38.4346750Z 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:18:38.4355488Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:18:38.4358539Z 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:18:38.4361798Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:38.4367636Z 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:18:38.4369285Z with 2025-04-25T04:18:38.4369605Z [ 2025-04-25T04:18:38.4369921Z _Ty=int 2025-04-25T04:18:38.4370547Z ] 2025-04-25T04:18:38.4372385Z 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:18:38.4374325Z with 2025-04-25T04:18:38.4374659Z [ 2025-04-25T04:18:38.4374978Z _OutIt=float *, 2025-04-25T04:18:38.4375440Z Dst=float, 2025-04-25T04:18:38.4375823Z _Diff=size_t, 2025-04-25T04:18:38.4376196Z _Ty=int 2025-04-25T04:18:38.4376541Z ] 2025-04-25T04:18:38.4378243Z 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:18:38.4380274Z with 2025-04-25T04:18:38.4380529Z [ 2025-04-25T04:18:38.4380717Z Src=float, 2025-04-25T04:18:38.4380947Z Dst=float 2025-04-25T04:18:38.4381202Z ] 2025-04-25T04:18:38.4382307Z 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:18:38.4383810Z with 2025-04-25T04:18:38.4384142Z [ 2025-04-25T04:18:38.4384434Z _Ty=int 2025-04-25T04:18:38.4384750Z ] 2025-04-25T04:18:38.4387189Z 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:18:38.4389334Z with 2025-04-25T04:18:38.4389671Z [ 2025-04-25T04:18:38.4389988Z _OutIt=xnn_float16 *, 2025-04-25T04:18:38.4390416Z Dst=xnn_float16, 2025-04-25T04:18:38.4390795Z _Diff=size_t, 2025-04-25T04:18:38.4391202Z _Ty=int 2025-04-25T04:18:38.4391497Z ] 2025-04-25T04:18:38.4393161Z 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:18:38.4394896Z with 2025-04-25T04:18:38.4395196Z [ 2025-04-25T04:18:38.4395482Z Src=float, 2025-04-25T04:18:38.4395844Z Dst=xnn_float16 2025-04-25T04:18:38.4396231Z ] 2025-04-25T04:18:38.4397075Z [1051/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-04-25T04:18:38.4405158Z [1052/7581] Linking C static library lib\microkernels-prod.lib 2025-04-25T04:18:38.4471900Z [1053/7581] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-04-25T04:18:38.4761164Z [1054/7581] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-04-25T04:18:38.5496864Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.5497750Z [1055/7581] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-04-25T04:18:38.5590154Z [1056/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-04-25T04:18:38.5919645Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.5921020Z [1057/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-04-25T04:18:38.5937121Z 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:18:38.5939453Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.5940796Z [1058/7581] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-04-25T04:18:38.6039407Z [1059/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-04-25T04:18:38.6246783Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.6248840Z [1060/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-04-25T04:18:38.6628815Z 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:18:38.6629750Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.6630316Z [1061/7581] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-04-25T04:18:38.6715511Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.6716680Z [1062/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-04-25T04:18:38.6994758Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.6995684Z [1063/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-04-25T04:18:38.7051769Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.7053010Z [1064/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-04-25T04:18:38.7756867Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.7757791Z [1065/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-04-25T04:18:38.8166587Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.8167954Z [1066/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-04-25T04:18:38.8395361Z 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:18:38.8397908Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.8398590Z [1067/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-04-25T04:18:38.8468932Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.8470695Z [1068/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-04-25T04:18:38.8845244Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.8846633Z [1069/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-04-25T04:18:38.8922522Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\convolution-nhwc.c(2491): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:18:38.8923429Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.8925199Z [1070/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-04-25T04:18:38.9001033Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.9002631Z [1071/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-04-25T04:18:38.9022739Z 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:18:38.9024412Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.9026396Z [1072/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-04-25T04:18:38.9499303Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1260): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:18:38.9502258Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1548): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:18:38.9503873Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.9505159Z [1073/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-04-25T04:18:38.9619143Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.9620802Z [1074/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-04-25T04:18:38.9637821Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:38.9639221Z [1075/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-04-25T04:18:39.0190229Z 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:18:39.0191191Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.0191906Z [1076/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-04-25T04:18:39.0436649Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.0437484Z [1077/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-04-25T04:18:39.0456861Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.0458139Z [1078/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-04-25T04:18:39.0654284Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.0654995Z [1079/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-04-25T04:18:39.0772128Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.0772841Z [1080/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-04-25T04:18:39.0797121Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-utils.c(162): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:18:39.0800115Z [1081/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-04-25T04:18:39.0956544Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\unpooling-nhwc.c(208): warning C4090: 'function': different 'const' qualifiers 2025-04-25T04:18:39.0959042Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.0960428Z [1082/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-04-25T04:18:39.1591637Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.1592525Z [1083/7581] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-04-25T04:18:39.1594581Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(1425): warning C4090: 'initializing': different 'const' qualifiers 2025-04-25T04:18:39.1597162Z 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:18:39.1599578Z 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:18:39.2956585Z 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:18:39.2958079Z 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:18:39.2959493Z [1084/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-04-25T04:18:39.3091289Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.3092668Z [1085/7581] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-04-25T04:18:39.3094845Z 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:18:39.3097374Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:39.3099968Z 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:18:39.3102451Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:39.3104941Z 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:18:39.3107277Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:18:39.3109860Z 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:18:39.3112116Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:18:39.3193536Z 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:18:39.3196119Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:39.3198056Z [1086/7581] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-04-25T04:18:39.3200561Z 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:18:39.3203070Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:39.3205450Z 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:18:39.3207881Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:39.3210656Z 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:18:39.3213136Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:18:39.3215656Z 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:18:39.3218130Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-04-25T04:18:39.3355430Z 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:18:39.3357736Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-04-25T04:18:39.3359371Z [1087/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-04-25T04:18:39.3513621Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.3515083Z [1088/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-04-25T04:18:39.3618266Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.3618922Z [1089/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-04-25T04:18:39.3922055Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.3923160Z [1090/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-04-25T04:18:39.4183201Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.4185173Z [1091/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-04-25T04:18:39.5838224Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.5839532Z [1092/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-04-25T04:18:39.6006769Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.6007493Z [1093/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-04-25T04:18:39.6074659Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.6075400Z [1094/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-04-25T04:18:39.6284243Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.6285150Z [1095/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-04-25T04:18:39.6374268Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.6375489Z [1096/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-04-25T04:18:39.6452300Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.6453072Z [1097/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-04-25T04:18:39.6675088Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.6676987Z [1098/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-04-25T04:18:39.7355364Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.7356142Z [1099/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-04-25T04:18:39.8658515Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.8659750Z [1100/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-04-25T04:18:39.8737090Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.8737866Z [1101/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-04-25T04:18:39.8857770Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.8858911Z [1102/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-04-25T04:18:39.8998239Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.8999035Z [1103/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-04-25T04:18:39.9053888Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.9055097Z [1104/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-04-25T04:18:39.9285184Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.9287322Z [1105/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-04-25T04:18:39.9362531Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:39.9363608Z [1106/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-04-25T04:18:40.0357059Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.0358379Z [1107/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-04-25T04:18:40.1379584Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.1380543Z [1108/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-04-25T04:18:40.1452056Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.1452820Z [1109/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-04-25T04:18:40.1706808Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.1707506Z [1110/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-04-25T04:18:40.1793490Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.1794391Z [1111/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-04-25T04:18:40.1888920Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.1889692Z [1112/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-04-25T04:18:40.1978865Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.1980161Z [1113/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-04-25T04:18:40.2068472Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.2069201Z [1114/7581] Generating sleeflibm_AVX.h.tmp 2025-04-25T04:18:40.2134334Z [1115/7581] Generating sleeflibm_AVX2.h.tmp 2025-04-25T04:18:40.2155416Z [1116/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-04-25T04:18:40.2227580Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.2228292Z [1117/7581] Generating sleeflibm_AVX2128.h.tmp 2025-04-25T04:18:40.2296434Z [1118/7581] Generating sleeflibm_AVX512F.h.tmp 2025-04-25T04:18:40.2309443Z [1119/7581] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-04-25T04:18:40.2384801Z [1120/7581] Generating sleeflibm_AVX512F_.h.tmp 2025-04-25T04:18:40.2462193Z [1121/7581] Generating sleeflibm_AVX_.h.tmp 2025-04-25T04:18:40.2475941Z [1122/7581] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-04-25T04:18:40.2559713Z [1123/7581] Generating sleeflibm_FMA4.h.tmp 2025-04-25T04:18:40.2612654Z [1124/7581] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-04-25T04:18:40.2626748Z [1125/7581] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-04-25T04:18:40.2688114Z [1126/7581] 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:18:40.2715510Z [1127/7581] Generating sleeflibm_SSE2.h.tmp 2025-04-25T04:18:40.2746423Z [1128/7581] Generating sleeflibm_SSE4.h.tmp 2025-04-25T04:18:40.2773509Z [1129/7581] Generating sleeflibm_SSE_.h.tmp 2025-04-25T04:18:40.2858965Z [1130/7581] Generating alias_AVX512F_sp.h.tmp 2025-04-25T04:18:40.2870500Z [1131/7581] Generating alias_AVX512F_dp.h.tmp 2025-04-25T04:18:40.2889388Z [1132/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-04-25T04:18:40.2914321Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.2915047Z [1133/7581] Generating dispscalar.c.body 2025-04-25T04:18:40.2927845Z [1134/7581] Generating dispsse.c.tmp 2025-04-25T04:18:40.3006660Z [1135/7581] Generating dispavx.c.tmp 2025-04-25T04:18:40.3993414Z [1136/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-04-25T04:18:40.4008427Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.4009916Z [1137/7581] 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:18:40.4096742Z [1138/7581] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-04-25T04:18:40.5836973Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:40.5837804Z [1139/7581] Generating build_identifier.c 2025-04-25T04:18:40.6759087Z [1140/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-04-25T04:18:40.6826221Z [1141/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-04-25T04:18:40.6925270Z [1142/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-04-25T04:18:40.6943132Z [1143/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-04-25T04:18:40.7351355Z [1144/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-04-25T04:18:40.7637490Z [1145/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-04-25T04:18:40.8849550Z [1146/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-04-25T04:18:40.9696748Z [1147/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-04-25T04:18:41.0629032Z [1148/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-04-25T04:18:41.0704570Z [1149/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-04-25T04:18:41.0720217Z [1150/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-04-25T04:18:41.1040177Z [1151/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-04-25T04:18:41.1288469Z [1152/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-04-25T04:18:41.1434988Z [1153/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-04-25T04:18:41.2705540Z [1154/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-04-25T04:18:41.4314543Z [1155/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-04-25T04:18:41.4385618Z [1156/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-04-25T04:18:41.4473662Z [1157/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-04-25T04:18:41.4578277Z [1158/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-04-25T04:18:41.4743874Z [1159/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-04-25T04:18:41.5014240Z [1160/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-04-25T04:18:41.6126781Z [1161/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-04-25T04:18:41.6214776Z [1162/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-04-25T04:18:41.8134736Z [1163/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-04-25T04:18:41.8232384Z [1164/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-04-25T04:18:41.8321684Z [1165/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-04-25T04:18:41.8339929Z [1166/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-04-25T04:18:41.8609647Z [1167/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-04-25T04:18:41.8762365Z [1168/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-04-25T04:18:41.9652509Z [1169/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-04-25T04:18:42.0384704Z [1170/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-04-25T04:18:42.1774501Z [1171/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-04-25T04:18:42.1983354Z [1172/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-04-25T04:18:42.2072523Z [1173/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-04-25T04:18:42.2137237Z [1174/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-04-25T04:18:42.2287746Z [1175/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-04-25T04:18:42.2606161Z [1176/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-04-25T04:18:42.3803986Z [1177/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-04-25T04:18:42.4861697Z [1178/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-04-25T04:18:42.6171885Z [1179/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-04-25T04:18:42.6232366Z [1180/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-04-25T04:18:42.6283146Z [1181/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-04-25T04:18:42.6442782Z [1182/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-04-25T04:18:42.6500270Z [1183/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-04-25T04:18:42.6633617Z [1184/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-04-25T04:18:42.7982022Z [1185/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-04-25T04:18:42.8873342Z [1186/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-04-25T04:18:43.0411841Z [1187/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-04-25T04:18:43.0980541Z [1188/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-04-25T04:18:43.1003569Z [1189/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-04-25T04:18:43.1088456Z [1190/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-04-25T04:18:43.1106536Z [1191/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-04-25T04:18:43.1305687Z [1192/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-04-25T04:18:43.2558423Z [1193/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-04-25T04:18:43.3768743Z [1194/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-04-25T04:18:43.4732054Z [1195/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-04-25T04:18:43.5149391Z [1196/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-04-25T04:18:43.5628053Z [1197/7581] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-04-25T04:18:43.5790101Z [1198/7581] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-04-25T04:18:43.6462855Z [1199/7581] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-04-25T04:18:43.6780796Z [1200/7581] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-04-25T04:18:43.6889806Z [1201/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-04-25T04:18:43.7128387Z 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:18:43.7130392Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\alloc.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:43.7132181Z [1202/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-04-25T04:18:43.7724243Z [1203/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-04-25T04:18:43.8112042Z [1204/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-04-25T04:18:43.8213317Z 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:18:43.8214864Z 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:18:43.8216037Z [1205/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-04-25T04:18:43.9397319Z [1206/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-04-25T04:18:44.0521980Z [1207/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-04-25T04:18:44.0579768Z [1208/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-04-25T04:18:44.0715678Z [1209/7581] Generating include/renameavx512fnofma.h 2025-04-25T04:18:44.0865930Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-04-25T04:18:44.0866345Z 2025-04-25T04:18:44.0866470Z [1210/7581] Generating include/renameavx512f.h 2025-04-25T04:18:44.0940886Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-04-25T04:18:44.0941463Z 2025-04-25T04:18:44.0942003Z [1211/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-04-25T04:18:44.1023545Z 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:18:44.1026008Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\heap.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:44.1028286Z [1212/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-04-25T04:18:44.1040135Z 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:18:44.1041185Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\init.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:44.1041831Z [1213/7581] Generating include/renameavx2.h 2025-04-25T04:18:44.1122964Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-04-25T04:18:44.1123275Z 2025-04-25T04:18:44.1123615Z [1214/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-04-25T04:18:44.1135161Z 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:18:44.1137295Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\options.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:44.1138673Z [1215/7581] Generating include/renameavx2128.h 2025-04-25T04:18:44.1167133Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-04-25T04:18:44.1167738Z 2025-04-25T04:18:44.1167942Z [1216/7581] Generating include/renamefma4.h 2025-04-25T04:18:44.1186134Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-04-25T04:18:44.1186530Z 2025-04-25T04:18:44.1186712Z [1217/7581] Generating include/renameavx.h 2025-04-25T04:18:44.1267819Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-04-25T04:18:44.1268122Z 2025-04-25T04:18:44.1268234Z [1218/7581] Generating include/renamesse4.h 2025-04-25T04:18:44.1284482Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-04-25T04:18:44.1284796Z 2025-04-25T04:18:44.1284924Z [1219/7581] Generating include/renamesse2.h 2025-04-25T04:18:44.1311318Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-04-25T04:18:44.1311633Z 2025-04-25T04:18:44.1311805Z [1220/7581] Generating include/renamepurec_scalar.h 2025-04-25T04:18:44.1348990Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-04-25T04:18:44.1349339Z 2025-04-25T04:18:44.1349489Z [1221/7581] Generating include/renamepurecfma_scalar.h 2025-04-25T04:18:44.1410807Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-04-25T04:18:44.1411745Z 2025-04-25T04:18:44.1411970Z [1222/7581] Generating include/renamecuda.h 2025-04-25T04:18:44.1558243Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-04-25T04:18:44.1558693Z 2025-04-25T04:18:44.1558859Z [1223/7581] Generating include/renamedspscalar.h 2025-04-25T04:18:44.1586143Z [1224/7581] Generating include/alias_avx512f.h 2025-04-25T04:18:44.1603060Z [1225/7581] Generating ../../../include/sleef.h 2025-04-25T04:18:44.1646878Z [1226/7581] Generating dispscalar.c 2025-04-25T04:18:44.1729911Z [1227/7581] Generating include/renamedsp128.h 2025-04-25T04:18:44.1792767Z [1228/7581] Generating include/renamedsp256.h 2025-04-25T04:18:44.1823646Z [1229/7581] Generating dispsse.c 2025-04-25T04:18:44.1856353Z [1230/7581] Generating dispavx.c 2025-04-25T04:18:44.1952725Z [1231/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-04-25T04:18:44.2038586Z 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:18:44.2040029Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\random.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:44.2040876Z [1232/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-04-25T04:18:44.4060305Z 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:18:44.4062626Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\os.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:44.4064227Z [1233/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-04-25T04:18:44.4975875Z 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:18:44.4978600Z C:\actions-runner\_work\pytorch\pytorch\third_party\mimalloc\src\stats.c: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:18:44.4980228Z [1234/7581] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-04-25T04:18:44.5709906Z 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:18:44.5712327Z 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:18:44.5714104Z [1235/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-04-25T04:18:44.6070957Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.6071676Z [1236/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-04-25T04:18:44.6199501Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.6200353Z [1237/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-04-25T04:18:44.6294905Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.6295609Z [1238/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-04-25T04:18:44.6312717Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.6314221Z [1239/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-04-25T04:18:44.6406398Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.6407478Z [1240/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-04-25T04:18:44.6506019Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.6507087Z [1241/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-04-25T04:18:44.8634896Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:44.8635670Z [1242/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-04-25T04:18:45.0460421Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.0461130Z [1243/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-04-25T04:18:45.0544243Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.0545209Z [1244/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-04-25T04:18:45.0560934Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.0561627Z [1245/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-04-25T04:18:45.0682318Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.0683080Z [1246/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-04-25T04:18:45.0768950Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.0770627Z [1247/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-04-25T04:18:45.1035239Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.1037079Z [1248/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-04-25T04:18:45.1185761Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.1187795Z [1249/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-04-25T04:18:45.2964225Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.2966622Z [1250/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-04-25T04:18:45.4884492Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.4885691Z [1251/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-04-25T04:18:45.4969597Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.4970786Z [1252/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-04-25T04:18:45.5122410Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.5123995Z [1253/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-04-25T04:18:45.5240548Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.5242746Z [1254/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-04-25T04:18:45.5412406Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.5413486Z [1255/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-04-25T04:18:45.5480754Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.5481578Z [1256/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-04-25T04:18:45.5574811Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.5576654Z [1257/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-04-25T04:18:45.6543858Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.6545151Z [1258/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-04-25T04:18:45.6716745Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.6719766Z [1259/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-04-25T04:18:45.7138858Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.7140214Z [1260/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-04-25T04:18:45.7372177Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.7373683Z [1261/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-04-25T04:18:45.9045587Z [1262/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-04-25T04:18:45.9142412Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.9143205Z [1263/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-04-25T04:18:45.9343628Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.9344853Z [1264/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-04-25T04:18:45.9674998Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:45.9676611Z [1265/7581] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-04-25T04:18:46.0791722Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-04-25T04:18:46.0792610Z [1266/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-04-25T04:18:46.1166398Z [1267/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-04-25T04:18:46.1836284Z [1268/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-04-25T04:18:46.1839765Z 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:18:46.1842720Z with 2025-04-25T04:18:46.1843053Z [ 2025-04-25T04:18:46.1843333Z T=uint8_t, 2025-04-25T04:18:46.1843717Z accT=int32_t, 2025-04-25T04:18:46.1844120Z inpType=uint8_t 2025-04-25T04:18:46.1844503Z ] 2025-04-25T04:18:46.1845978Z 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:18:46.1847687Z with 2025-04-25T04:18:46.1848007Z [ 2025-04-25T04:18:46.1848368Z T=uint8_t, 2025-04-25T04:18:46.1848728Z accT=int32_t 2025-04-25T04:18:46.1849149Z ] 2025-04-25T04:18:46.1851651Z 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:18:46.1854300Z with 2025-04-25T04:18:46.1854638Z [ 2025-04-25T04:18:46.1855075Z T=uint8_t, 2025-04-25T04:18:46.1855511Z accT=int32_t 2025-04-25T04:18:46.1855932Z ] 2025-04-25T04:18:46.1857591Z 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:18:46.1859397Z with 2025-04-25T04:18:46.1859732Z [ 2025-04-25T04:18:46.1860059Z T=uint8_t, 2025-04-25T04:18:46.1860428Z accT=int32_t 2025-04-25T04:18:46.1860825Z ] 2025-04-25T04:18:46.1863254Z 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:18:46.1865846Z with 2025-04-25T04:18:46.1866193Z [ 2025-04-25T04:18:46.1866575Z T=int8_t, 2025-04-25T04:18:46.1866972Z accT=int32_t, 2025-04-25T04:18:46.1867409Z inpType=int8_t 2025-04-25T04:18:46.1867820Z ] 2025-04-25T04:18:46.1869453Z 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:18:46.1871215Z with 2025-04-25T04:18:46.1871532Z [ 2025-04-25T04:18:46.1871849Z T=int8_t, 2025-04-25T04:18:46.1872191Z accT=int32_t 2025-04-25T04:18:46.1872591Z ] 2025-04-25T04:18:46.1874880Z 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:18:46.1877370Z with 2025-04-25T04:18:46.1877953Z [ 2025-04-25T04:18:46.1878270Z T=int8_t, 2025-04-25T04:18:46.1878651Z accT=int32_t 2025-04-25T04:18:46.1879035Z ] 2025-04-25T04:18:46.1880556Z 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:18:46.1882192Z with 2025-04-25T04:18:46.1882536Z [ 2025-04-25T04:18:46.1882919Z T=int8_t, 2025-04-25T04:18:46.1883293Z accT=int32_t 2025-04-25T04:18:46.1883711Z ] 2025-04-25T04:18:46.1886171Z 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:18:46.1888909Z with 2025-04-25T04:18:46.1889247Z [ 2025-04-25T04:18:46.1889565Z ACC_T=int32_t, 2025-04-25T04:18:46.1889994Z T=uint8_t, 2025-04-25T04:18:46.1890361Z accT=int32_t, 2025-04-25T04:18:46.1890787Z inpType=uint8_t 2025-04-25T04:18:46.1891199Z ] 2025-04-25T04:18:46.1892780Z 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:18:46.1894904Z with 2025-04-25T04:18:46.1895267Z [ 2025-04-25T04:18:46.1895597Z ACC_T=int32_t, 2025-04-25T04:18:46.1896014Z T=uint8_t, 2025-04-25T04:18:46.1896394Z accT=int32_t 2025-04-25T04:18:46.1896759Z ] 2025-04-25T04:18:46.1899270Z 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:18:46.1901992Z with 2025-04-25T04:18:46.1902293Z [ 2025-04-25T04:18:46.1902631Z ACC_T=int32_t, 2025-04-25T04:18:46.1903046Z T=uint8_t, 2025-04-25T04:18:46.1903445Z accT=int32_t 2025-04-25T04:18:46.1903846Z ] 2025-04-25T04:18:46.1905522Z 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:18:46.1907296Z with 2025-04-25T04:18:46.1907641Z [ 2025-04-25T04:18:46.1907974Z ACC_T=int32_t, 2025-04-25T04:18:46.1908413Z T=uint8_t, 2025-04-25T04:18:46.1908822Z accT=int32_t 2025-04-25T04:18:46.1909223Z ] 2025-04-25T04:18:46.1911945Z 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:18:46.1914785Z with 2025-04-25T04:18:46.1915398Z [ 2025-04-25T04:18:46.1915746Z ACC_T=int32_t, 2025-04-25T04:18:46.1916179Z T=uint8_t, 2025-04-25T04:18:46.1916575Z accT=int32_t, 2025-04-25T04:18:46.1917000Z inpType=uint8_t 2025-04-25T04:18:46.1917421Z ] 2025-04-25T04:18:46.1919023Z 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:18:46.1920798Z with 2025-04-25T04:18:46.1921126Z [ 2025-04-25T04:18:46.1921474Z ACC_T=int32_t, 2025-04-25T04:18:46.1922063Z T=uint8_t, 2025-04-25T04:18:46.1922475Z accT=int32_t 2025-04-25T04:18:46.1922880Z ] 2025-04-25T04:18:46.1925443Z 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:18:46.1928115Z with 2025-04-25T04:18:46.1928445Z [ 2025-04-25T04:18:46.1928798Z ACC_T=int32_t, 2025-04-25T04:18:46.1929227Z T=uint8_t, 2025-04-25T04:18:46.1929621Z accT=int32_t 2025-04-25T04:18:46.1930009Z ] 2025-04-25T04:18:46.1931505Z 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:18:46.1933398Z with 2025-04-25T04:18:46.1933714Z [ 2025-04-25T04:18:46.1934035Z ACC_T=int32_t, 2025-04-25T04:18:46.1934462Z T=uint8_t, 2025-04-25T04:18:46.1934849Z accT=int32_t 2025-04-25T04:18:46.1935245Z ] 2025-04-25T04:18:46.1937820Z 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:18:46.1940592Z with 2025-04-25T04:18:46.1940921Z [ 2025-04-25T04:18:46.1941266Z ACC_T=int32_t, 2025-04-25T04:18:46.1941685Z T=uint8_t, 2025-04-25T04:18:46.1942083Z accT=int32_t, 2025-04-25T04:18:46.1942515Z inpType=uint8_t 2025-04-25T04:18:46.1942950Z ] 2025-04-25T04:18:46.1944561Z 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:18:46.1946365Z with 2025-04-25T04:18:46.1946711Z [ 2025-04-25T04:18:46.1947051Z ACC_T=int32_t, 2025-04-25T04:18:46.1947483Z T=uint8_t, 2025-04-25T04:18:46.1947899Z accT=int32_t 2025-04-25T04:18:46.1948298Z ] 2025-04-25T04:18:46.1950858Z 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:18:46.1953502Z with 2025-04-25T04:18:46.1953851Z [ 2025-04-25T04:18:46.1954190Z ACC_T=int32_t, 2025-04-25T04:18:46.1954618Z T=uint8_t, 2025-04-25T04:18:46.1955027Z accT=int32_t 2025-04-25T04:18:46.1955441Z ] 2025-04-25T04:18:46.1957127Z 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:18:46.1958927Z with 2025-04-25T04:18:46.1959470Z [ 2025-04-25T04:18:46.1959832Z ACC_T=int32_t, 2025-04-25T04:18:46.1960272Z T=uint8_t, 2025-04-25T04:18:46.1960751Z accT=int32_t 2025-04-25T04:18:46.1961172Z ] 2025-04-25T04:18:46.1965086Z 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:18:46.1969725Z 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:18:46.1974460Z 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:18:46.2204737Z 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:18:46.2208989Z 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:18:46.2212481Z [1269/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-04-25T04:18:46.2487859Z [1270/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-04-25T04:18:46.2718025Z [1271/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-04-25T04:18:46.2720854Z 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:18:46.2722792Z with 2025-04-25T04:18:46.2722988Z [ 2025-04-25T04:18:46.2723236Z inpType=uint8_t 2025-04-25T04:18:46.2723497Z ] 2025-04-25T04:18:46.2724367Z 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:18:46.2727191Z 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:18:46.2729703Z 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:18:46.2731935Z 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:18:46.2733526Z with 2025-04-25T04:18:46.2733765Z [ 2025-04-25T04:18:46.2733963Z inpType=int8_t 2025-04-25T04:18:46.2734190Z ] 2025-04-25T04:18:46.2735431Z 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:18:46.2739246Z 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:18:46.2744100Z 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:18:46.2749429Z 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:18:46.2754941Z with 2025-04-25T04:18:46.2755436Z [ 2025-04-25T04:18:46.2755869Z inpType=uint8_t 2025-04-25T04:18:46.2756251Z ] 2025-04-25T04:18:46.2758159Z 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:18:46.2763684Z 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:18:46.2769149Z 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:18:46.2773576Z 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:18:46.2775847Z with 2025-04-25T04:18:46.2776081Z [ 2025-04-25T04:18:46.2776425Z inpType=int8_t 2025-04-25T04:18:46.2776827Z ] 2025-04-25T04:18:46.2777801Z 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:18:46.2781600Z 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:18:46.2785712Z 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:18:46.2789863Z 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:18:46.2792843Z with 2025-04-25T04:18:46.2793180Z [ 2025-04-25T04:18:46.2793523Z inpType=uint8_t 2025-04-25T04:18:46.2793941Z ] 2025-04-25T04:18:46.2795830Z 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:18:46.2800012Z 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:18:46.2804116Z 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:18:46.2808532Z 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:18:46.2811358Z with 2025-04-25T04:18:46.2811723Z [ 2025-04-25T04:18:46.2812058Z inpType=uint8_t 2025-04-25T04:18:46.2812505Z ] 2025-04-25T04:18:46.2814258Z 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:18:46.2818630Z 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:18:46.2825478Z 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:18:46.2831702Z 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:18:46.2833929Z with 2025-04-25T04:18:46.2834172Z [ 2025-04-25T04:18:46.2834438Z inpType=uint8_t 2025-04-25T04:18:46.2834699Z ] 2025-04-25T04:18:46.2836264Z 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:18:46.2839381Z 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:18:46.2842807Z 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:18:46.2847067Z 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:18:46.2850145Z with 2025-04-25T04:18:46.2850488Z [ 2025-04-25T04:18:46.2850842Z inpType=uint8_t 2025-04-25T04:18:46.2854526Z ] 2025-04-25T04:18:46.2858656Z 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:18:46.2866092Z 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:18:46.2870378Z 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:18:46.2875385Z 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:18:46.2878310Z with 2025-04-25T04:18:46.2878655Z [ 2025-04-25T04:18:46.2879013Z inpType=uint8_t 2025-04-25T04:18:46.2879444Z ] 2025-04-25T04:18:46.2881164Z 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:18:46.2885571Z 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:18:46.2889811Z 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:18:46.2894042Z 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:18:46.2897718Z with 2025-04-25T04:18:46.2898024Z [ 2025-04-25T04:18:46.2898254Z inpType=uint8_t 2025-04-25T04:18:46.2898541Z ] 2025-04-25T04:18:46.2899835Z 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:18:46.2903426Z 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:18:46.2908655Z 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:18:46.2913102Z 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:18:46.2916022Z with 2025-04-25T04:18:46.2916366Z [ 2025-04-25T04:18:46.2916965Z inpType=uint8_t 2025-04-25T04:18:46.2917545Z ] 2025-04-25T04:18:46.2919268Z 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:18:46.2923482Z 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:18:46.2928929Z 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:18:46.2934334Z 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:18:46.2936534Z with 2025-04-25T04:18:46.2936738Z [ 2025-04-25T04:18:46.2936934Z inpType=uint8_t 2025-04-25T04:18:46.2937164Z ] 2025-04-25T04:18:46.2938300Z 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:18:46.2940903Z 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:18:46.2945498Z 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:18:46.2949938Z 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:18:46.2953355Z with 2025-04-25T04:18:46.2954564Z [ 2025-04-25T04:18:46.2954903Z inpType=uint8_t 2025-04-25T04:18:46.2955236Z ] 2025-04-25T04:18:46.2957503Z 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:18:46.2961510Z 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:18:46.2965277Z 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:18:46.2984610Z 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:18:46.2986079Z with 2025-04-25T04:18:46.2986494Z [ 2025-04-25T04:18:46.2986765Z inpType=uint8_t 2025-04-25T04:18:46.2987371Z ] 2025-04-25T04:18:46.2988283Z 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:18:46.2990271Z 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:18:46.2993424Z 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:18:46.2996888Z 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:18:46.2999290Z with 2025-04-25T04:18:46.2999627Z [ 2025-04-25T04:18:46.2999969Z inpType=int8_t 2025-04-25T04:18:46.3000331Z ] 2025-04-25T04:18:46.3001849Z 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:18:46.3005534Z 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:18:46.3009276Z 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:18:46.3012939Z 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:18:46.3015334Z with 2025-04-25T04:18:46.3015655Z [ 2025-04-25T04:18:46.3016003Z inpType=uint8_t 2025-04-25T04:18:46.3016578Z ] 2025-04-25T04:18:46.3018022Z 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:18:46.3021518Z 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:18:46.3025126Z 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:18:46.3029103Z 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:18:46.3031824Z with 2025-04-25T04:18:46.3032168Z [ 2025-04-25T04:18:46.3032525Z inpType=int8_t 2025-04-25T04:18:46.3033159Z ] 2025-04-25T04:18:46.3034619Z 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:18:46.3037735Z 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:18:46.3040136Z 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:18:46.3042673Z 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:18:46.3044204Z with 2025-04-25T04:18:46.3044433Z [ 2025-04-25T04:18:46.3044660Z inpType=uint8_t 2025-04-25T04:18:46.3044884Z ] 2025-04-25T04:18:46.3046173Z 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:18:46.3048838Z 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:18:46.3051142Z 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:18:46.3053253Z 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:18:46.3054611Z with 2025-04-25T04:18:46.3054799Z [ 2025-04-25T04:18:46.3054993Z inpType=uint8_t 2025-04-25T04:18:46.3055227Z ] 2025-04-25T04:18:46.3056921Z 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:18:46.3061525Z 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:18:46.3066280Z 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:18:46.3070514Z 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:18:46.3073188Z with 2025-04-25T04:18:46.3073519Z [ 2025-04-25T04:18:46.3073862Z inpType=uint8_t 2025-04-25T04:18:46.3074490Z ] 2025-04-25T04:18:46.3076147Z 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:18:46.3080103Z 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:18:46.3084105Z 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:18:46.3088327Z 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:18:46.3091196Z with 2025-04-25T04:18:46.3091645Z [ 2025-04-25T04:18:46.3092001Z inpType=uint8_t 2025-04-25T04:18:46.3092411Z ] 2025-04-25T04:18:46.3094042Z 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:18:46.3097639Z 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:18:46.3100108Z 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:18:46.3102567Z 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:18:46.3104216Z with 2025-04-25T04:18:46.3104405Z [ 2025-04-25T04:18:46.3104627Z inpType=uint8_t 2025-04-25T04:18:46.3104912Z ] 2025-04-25T04:18:46.3105786Z 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:18:46.3108092Z 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:18:46.3123455Z 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:18:46.3129899Z 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:18:46.3132531Z with 2025-04-25T04:18:46.3132873Z [ 2025-04-25T04:18:46.3133210Z inpType=uint8_t 2025-04-25T04:18:46.3133845Z ] 2025-04-25T04:18:46.3135503Z 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:18:46.3139391Z 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:18:46.3142607Z 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:18:46.3145137Z 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:18:46.3146779Z with 2025-04-25T04:18:46.3146973Z [ 2025-04-25T04:18:46.3147169Z inpType=uint8_t 2025-04-25T04:18:46.3147452Z ] 2025-04-25T04:18:46.3148912Z 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:18:46.3152893Z 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:18:46.3157013Z 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:18:46.3161501Z 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:18:46.3164862Z with 2025-04-25T04:18:46.3165210Z [ 2025-04-25T04:18:46.3165570Z inpType=uint8_t 2025-04-25T04:18:46.3166078Z ] 2025-04-25T04:18:46.3168416Z 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:18:46.3174419Z 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:18:46.3179659Z 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:18:46.3183829Z 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:18:46.3187285Z with 2025-04-25T04:18:46.3187624Z [ 2025-04-25T04:18:46.3187957Z inpType=uint8_t 2025-04-25T04:18:46.3188655Z ] 2025-04-25T04:18:46.3190725Z 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:18:46.3195166Z 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:18:46.3199562Z 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:18:46.3204030Z 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:18:46.3208545Z 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:18:46.3212838Z 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:18:46.3217292Z 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:18:46.3221718Z 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:18:46.3226106Z 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:18:46.3231109Z 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:18:46.3235680Z 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:18:46.3240738Z 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:18:46.3246426Z 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:18:46.3251335Z 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:18:46.3255587Z 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:18:46.3260180Z 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:18:46.3263641Z [1272/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-04-25T04:18:46.3264672Z [1273/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-04-25T04:18:46.3567997Z [1274/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-04-25T04:18:46.4308907Z [1275/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-04-25T04:18:46.5992480Z [1276/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-04-25T04:18:46.6507264Z [1277/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-04-25T04:18:46.7167134Z [1278/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-04-25T04:18:46.7247421Z [1279/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-04-25T04:18:46.7638376Z [1280/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-04-25T04:18:46.7709960Z [1281/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-04-25T04:18:46.7860291Z [1282/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-04-25T04:18:46.8632203Z [1283/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-04-25T04:18:47.0687455Z [1284/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-04-25T04:18:47.0692827Z 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:18:47.0697140Z with 2025-04-25T04:18:47.0697601Z [ 2025-04-25T04:18:47.0697947Z T=uint8_t, 2025-04-25T04:18:47.0698390Z accT=int32_t, 2025-04-25T04:18:47.0698833Z inpType=uint8_t 2025-04-25T04:18:47.0699288Z ] 2025-04-25T04:18:47.0701485Z 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:18:47.0703626Z with 2025-04-25T04:18:47.0703990Z [ 2025-04-25T04:18:47.0704323Z T=uint8_t, 2025-04-25T04:18:47.0704785Z accT=int32_t 2025-04-25T04:18:47.0705199Z ] 2025-04-25T04:18:47.0708494Z 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:18:47.0711703Z with 2025-04-25T04:18:47.0712054Z [ 2025-04-25T04:18:47.0712396Z T=uint8_t, 2025-04-25T04:18:47.0712809Z accT=int32_t 2025-04-25T04:18:47.0713229Z ] 2025-04-25T04:18:47.0715124Z 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:18:47.0717319Z with 2025-04-25T04:18:47.0717539Z [ 2025-04-25T04:18:47.0717954Z T=uint8_t, 2025-04-25T04:18:47.0718189Z accT=int32_t 2025-04-25T04:18:47.0718402Z ] 2025-04-25T04:18:47.0720292Z 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:18:47.0721895Z with 2025-04-25T04:18:47.0722077Z [ 2025-04-25T04:18:47.0722264Z T=uint8_t, 2025-04-25T04:18:47.0722476Z accT=int32_t, 2025-04-25T04:18:47.0722713Z inpType=uint8_t 2025-04-25T04:18:47.0722941Z ] 2025-04-25T04:18:47.0724104Z 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:18:47.0725035Z with 2025-04-25T04:18:47.0725229Z [ 2025-04-25T04:18:47.0725410Z T=uint8_t, 2025-04-25T04:18:47.0725667Z accT=int32_t 2025-04-25T04:18:47.0725937Z ] 2025-04-25T04:18:47.0727473Z 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:18:47.0729145Z with 2025-04-25T04:18:47.0729321Z [ 2025-04-25T04:18:47.0729505Z T=uint8_t, 2025-04-25T04:18:47.0729731Z accT=int32_t 2025-04-25T04:18:47.0730057Z ] 2025-04-25T04:18:47.0731283Z 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:18:47.0732293Z with 2025-04-25T04:18:47.0732483Z [ 2025-04-25T04:18:47.0732672Z T=uint8_t, 2025-04-25T04:18:47.0732993Z accT=int32_t 2025-04-25T04:18:47.0733344Z ] 2025-04-25T04:18:47.0781454Z 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:18:47.0783246Z [1285/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-04-25T04:18:47.0844544Z [1286/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-04-25T04:18:47.0848566Z 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:18:47.0851668Z with 2025-04-25T04:18:47.0852044Z [ 2025-04-25T04:18:47.0852375Z T=uint8_t, 2025-04-25T04:18:47.0853024Z accT=int32_t, 2025-04-25T04:18:47.0853479Z inpType=uint8_t 2025-04-25T04:18:47.0853874Z ] 2025-04-25T04:18:47.0855457Z 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:18:47.0857264Z with 2025-04-25T04:18:47.0857598Z [ 2025-04-25T04:18:47.0857925Z T=uint8_t, 2025-04-25T04:18:47.0858309Z accT=int32_t 2025-04-25T04:18:47.0858727Z ] 2025-04-25T04:18:47.0861184Z 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:18:47.0864235Z with 2025-04-25T04:18:47.0864615Z [ 2025-04-25T04:18:47.0864923Z T=uint8_t, 2025-04-25T04:18:47.0865347Z accT=int32_t 2025-04-25T04:18:47.0865775Z ] 2025-04-25T04:18:47.0867535Z 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:18:47.0868753Z with 2025-04-25T04:18:47.0868979Z [ 2025-04-25T04:18:47.0869158Z T=uint8_t, 2025-04-25T04:18:47.0869403Z accT=int32_t 2025-04-25T04:18:47.0869618Z ] 2025-04-25T04:18:47.0871888Z 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:18:47.0874624Z with 2025-04-25T04:18:47.0874949Z [ 2025-04-25T04:18:47.0875309Z T=uint8_t, 2025-04-25T04:18:47.0875707Z accT=int16_t, 2025-04-25T04:18:47.0876168Z inpType=uint8_t 2025-04-25T04:18:47.0876634Z ] 2025-04-25T04:18:47.0878352Z 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:18:47.0879925Z with 2025-04-25T04:18:47.0880265Z [ 2025-04-25T04:18:47.0880575Z T=uint8_t, 2025-04-25T04:18:47.0880960Z accT=int16_t 2025-04-25T04:18:47.0881380Z ] 2025-04-25T04:18:47.0883901Z 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:18:47.0886501Z with 2025-04-25T04:18:47.0886815Z [ 2025-04-25T04:18:47.0887131Z T=uint8_t, 2025-04-25T04:18:47.0887562Z accT=int16_t 2025-04-25T04:18:47.0887954Z ] 2025-04-25T04:18:47.0889631Z 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:18:47.0891415Z with 2025-04-25T04:18:47.0891725Z [ 2025-04-25T04:18:47.0892008Z T=uint8_t, 2025-04-25T04:18:47.0892362Z accT=int16_t 2025-04-25T04:18:47.0892597Z ] 2025-04-25T04:18:47.0895301Z 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:18:47.0896942Z with 2025-04-25T04:18:47.0897263Z [ 2025-04-25T04:18:47.0897563Z T=uint8_t, 2025-04-25T04:18:47.0897940Z accT=int32_t, 2025-04-25T04:18:47.0898315Z inpType=uint8_t 2025-04-25T04:18:47.0898720Z ] 2025-04-25T04:18:47.0900245Z 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:18:47.0901975Z with 2025-04-25T04:18:47.0902814Z [ 2025-04-25T04:18:47.0903371Z T=uint8_t, 2025-04-25T04:18:47.0903825Z accT=int32_t 2025-04-25T04:18:47.0905208Z ] 2025-04-25T04:18:47.0909858Z 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:18:47.0912298Z with 2025-04-25T04:18:47.0912598Z [ 2025-04-25T04:18:47.0912897Z T=uint8_t, 2025-04-25T04:18:47.0913290Z accT=int32_t 2025-04-25T04:18:47.0913662Z ] 2025-04-25T04:18:47.0915323Z 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:18:47.0917051Z with 2025-04-25T04:18:47.0917350Z [ 2025-04-25T04:18:47.0917646Z T=uint8_t, 2025-04-25T04:18:47.0917859Z accT=int32_t 2025-04-25T04:18:47.0918076Z ] 2025-04-25T04:18:47.0919657Z 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:18:47.0922287Z with 2025-04-25T04:18:47.0922642Z [ 2025-04-25T04:18:47.0922959Z T=uint8_t, 2025-04-25T04:18:47.0923333Z accT=int16_t, 2025-04-25T04:18:47.0923738Z inpType=uint8_t 2025-04-25T04:18:47.0924179Z ] 2025-04-25T04:18:47.0925859Z 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:18:47.0927814Z with 2025-04-25T04:18:47.0928142Z [ 2025-04-25T04:18:47.0928462Z T=uint8_t, 2025-04-25T04:18:47.0928869Z accT=int16_t 2025-04-25T04:18:47.0929263Z ] 2025-04-25T04:18:47.0931781Z 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:18:47.0934428Z with 2025-04-25T04:18:47.0934776Z [ 2025-04-25T04:18:47.0935098Z T=uint8_t, 2025-04-25T04:18:47.0935496Z accT=int16_t 2025-04-25T04:18:47.0935902Z ] 2025-04-25T04:18:47.0937291Z 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:18:47.0938403Z with 2025-04-25T04:18:47.0938578Z [ 2025-04-25T04:18:47.0938759Z T=uint8_t, 2025-04-25T04:18:47.0938965Z accT=int16_t 2025-04-25T04:18:47.0939185Z ] 2025-04-25T04:18:47.0940717Z 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:18:47.0942279Z with 2025-04-25T04:18:47.0942505Z [ 2025-04-25T04:18:47.0942683Z T=uint8_t, 2025-04-25T04:18:47.0942938Z accT=int32_t, 2025-04-25T04:18:47.0943256Z inpType=uint8_t 2025-04-25T04:18:47.0943487Z ] 2025-04-25T04:18:47.0944292Z 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:18:47.0945553Z with 2025-04-25T04:18:47.0945788Z [ 2025-04-25T04:18:47.0946004Z T=uint8_t, 2025-04-25T04:18:47.0946265Z accT=int32_t 2025-04-25T04:18:47.0946471Z ] 2025-04-25T04:18:47.0947861Z 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:18:47.0949412Z with 2025-04-25T04:18:47.0949596Z [ 2025-04-25T04:18:47.0949776Z T=uint8_t, 2025-04-25T04:18:47.0949982Z accT=int32_t 2025-04-25T04:18:47.0950199Z ] 2025-04-25T04:18:47.0951142Z 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:18:47.0952202Z with 2025-04-25T04:18:47.0952408Z [ 2025-04-25T04:18:47.0952582Z T=uint8_t, 2025-04-25T04:18:47.0952789Z accT=int32_t 2025-04-25T04:18:47.0953012Z ] 2025-04-25T04:18:47.0954837Z 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:18:47.0957237Z with 2025-04-25T04:18:47.0957546Z [ 2025-04-25T04:18:47.0957848Z T=uint8_t, 2025-04-25T04:18:47.0958207Z accT=int16_t, 2025-04-25T04:18:47.0958600Z inpType=uint8_t 2025-04-25T04:18:47.0958973Z ] 2025-04-25T04:18:47.0960404Z 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:18:47.0961990Z with 2025-04-25T04:18:47.0962293Z [ 2025-04-25T04:18:47.0962568Z T=uint8_t, 2025-04-25T04:18:47.0962936Z accT=int16_t 2025-04-25T04:18:47.0963270Z ] 2025-04-25T04:18:47.0966031Z 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:18:47.0968660Z with 2025-04-25T04:18:47.0968997Z [ 2025-04-25T04:18:47.0969348Z T=uint8_t, 2025-04-25T04:18:47.0969735Z accT=int16_t 2025-04-25T04:18:47.0970124Z ] 2025-04-25T04:18:47.0971798Z 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:18:47.0973692Z with 2025-04-25T04:18:47.0974024Z [ 2025-04-25T04:18:47.0974615Z T=uint8_t, 2025-04-25T04:18:47.0975029Z accT=int16_t 2025-04-25T04:18:47.0975435Z ] 2025-04-25T04:18:47.0978058Z 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:18:47.0980825Z with 2025-04-25T04:18:47.0981172Z [ 2025-04-25T04:18:47.0981504Z T=uint8_t, 2025-04-25T04:18:47.0981924Z accT=int32_t, 2025-04-25T04:18:47.0982519Z inpType=uint8_t 2025-04-25T04:18:47.0982973Z ] 2025-04-25T04:18:47.0984630Z 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:18:47.0986568Z with 2025-04-25T04:18:47.0987233Z [ 2025-04-25T04:18:47.0987560Z T=uint8_t, 2025-04-25T04:18:47.0987952Z accT=int32_t 2025-04-25T04:18:47.0988320Z ] 2025-04-25T04:18:47.0990894Z 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:18:47.0993360Z with 2025-04-25T04:18:47.0993673Z [ 2025-04-25T04:18:47.0993973Z T=uint8_t, 2025-04-25T04:18:47.0994380Z accT=int32_t 2025-04-25T04:18:47.0994764Z ] 2025-04-25T04:18:47.0996387Z 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:18:47.0998223Z with 2025-04-25T04:18:47.0998541Z [ 2025-04-25T04:18:47.0998877Z T=uint8_t, 2025-04-25T04:18:47.0999289Z accT=int32_t 2025-04-25T04:18:47.0999652Z ] 2025-04-25T04:18:47.1001450Z 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:18:47.1003040Z with 2025-04-25T04:18:47.1003241Z [ 2025-04-25T04:18:47.1003430Z T=uint8_t, 2025-04-25T04:18:47.1003684Z accT=int16_t, 2025-04-25T04:18:47.1004279Z inpType=uint8_t 2025-04-25T04:18:47.1004808Z ] 2025-04-25T04:18:47.1006322Z 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:18:47.1007856Z with 2025-04-25T04:18:47.1008180Z [ 2025-04-25T04:18:47.1008477Z T=uint8_t, 2025-04-25T04:18:47.1008854Z accT=int16_t 2025-04-25T04:18:47.1009209Z ] 2025-04-25T04:18:47.1011548Z 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:18:47.1013997Z with 2025-04-25T04:18:47.1014303Z [ 2025-04-25T04:18:47.1014605Z T=uint8_t, 2025-04-25T04:18:47.1014951Z accT=int16_t 2025-04-25T04:18:47.1015309Z ] 2025-04-25T04:18:47.1017044Z 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:18:47.1018751Z with 2025-04-25T04:18:47.1019063Z [ 2025-04-25T04:18:47.1019370Z T=uint8_t, 2025-04-25T04:18:47.1019726Z accT=int16_t 2025-04-25T04:18:47.1020120Z ] 2025-04-25T04:18:47.1022320Z 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:18:47.1024974Z with 2025-04-25T04:18:47.1025288Z [ 2025-04-25T04:18:47.1025594Z T=uint8_t, 2025-04-25T04:18:47.1025952Z accT=int32_t, 2025-04-25T04:18:47.1026340Z inpType=uint8_t 2025-04-25T04:18:47.1026695Z ] 2025-04-25T04:18:47.1028094Z 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:18:47.1029640Z with 2025-04-25T04:18:47.1029949Z [ 2025-04-25T04:18:47.1030222Z T=uint8_t, 2025-04-25T04:18:47.1030739Z accT=int32_t 2025-04-25T04:18:47.1031119Z ] 2025-04-25T04:18:47.1033477Z 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:18:47.1036050Z with 2025-04-25T04:18:47.1036367Z [ 2025-04-25T04:18:47.1036684Z T=uint8_t, 2025-04-25T04:18:47.1037062Z accT=int32_t 2025-04-25T04:18:47.1037451Z ] 2025-04-25T04:18:47.1039050Z 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:18:47.1040787Z with 2025-04-25T04:18:47.1041110Z [ 2025-04-25T04:18:47.1041392Z T=uint8_t, 2025-04-25T04:18:47.1041772Z accT=int32_t 2025-04-25T04:18:47.1042137Z ] 2025-04-25T04:18:47.1044753Z 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:18:47.1047474Z with 2025-04-25T04:18:47.1047810Z [ 2025-04-25T04:18:47.1048137Z T=uint8_t, 2025-04-25T04:18:47.1048502Z accT=int16_t, 2025-04-25T04:18:47.1048898Z inpType=uint8_t 2025-04-25T04:18:47.1049310Z ] 2025-04-25T04:18:47.1050823Z 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:18:47.1052447Z with 2025-04-25T04:18:47.1052768Z [ 2025-04-25T04:18:47.1053041Z T=uint8_t, 2025-04-25T04:18:47.1053437Z accT=int16_t 2025-04-25T04:18:47.1053811Z ] 2025-04-25T04:18:47.1056366Z 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:18:47.1057757Z with 2025-04-25T04:18:47.1057957Z [ 2025-04-25T04:18:47.1058209Z T=uint8_t, 2025-04-25T04:18:47.1058837Z accT=int16_t 2025-04-25T04:18:47.1059463Z ] 2025-04-25T04:18:47.1061127Z 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:18:47.1062835Z with 2025-04-25T04:18:47.1063150Z [ 2025-04-25T04:18:47.1063459Z T=uint8_t, 2025-04-25T04:18:47.1063837Z accT=int16_t 2025-04-25T04:18:47.1064189Z ] 2025-04-25T04:18:47.1066567Z 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:18:47.1069066Z with 2025-04-25T04:18:47.1069276Z [ 2025-04-25T04:18:47.1069458Z T=uint8_t, 2025-04-25T04:18:47.1069697Z accT=int32_t, 2025-04-25T04:18:47.1069927Z inpType=uint8_t 2025-04-25T04:18:47.1070162Z ] 2025-04-25T04:18:47.1071202Z 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:18:47.1072141Z with 2025-04-25T04:18:47.1072324Z [ 2025-04-25T04:18:47.1072507Z T=uint8_t, 2025-04-25T04:18:47.1072733Z accT=int32_t 2025-04-25T04:18:47.1072947Z ] 2025-04-25T04:18:47.1074204Z 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:18:47.1075783Z with 2025-04-25T04:18:47.1076030Z [ 2025-04-25T04:18:47.1076264Z T=uint8_t, 2025-04-25T04:18:47.1076498Z accT=int32_t 2025-04-25T04:18:47.1076721Z ] 2025-04-25T04:18:47.1077550Z 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:18:47.1078466Z with 2025-04-25T04:18:47.1078640Z [ 2025-04-25T04:18:47.1078813Z T=uint8_t, 2025-04-25T04:18:47.1079019Z accT=int32_t 2025-04-25T04:18:47.1079243Z ] 2025-04-25T04:18:47.1080624Z 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:18:47.1081973Z with 2025-04-25T04:18:47.1082157Z [ 2025-04-25T04:18:47.1082325Z T=uint8_t, 2025-04-25T04:18:47.1082539Z accT=int16_t, 2025-04-25T04:18:47.1082762Z inpType=uint8_t 2025-04-25T04:18:47.1083053Z ] 2025-04-25T04:18:47.1084426Z 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:18:47.1086173Z with 2025-04-25T04:18:47.1086513Z [ 2025-04-25T04:18:47.1086820Z T=uint8_t, 2025-04-25T04:18:47.1087214Z accT=int16_t 2025-04-25T04:18:47.1087570Z ] 2025-04-25T04:18:47.1089900Z 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:18:47.1092600Z with 2025-04-25T04:18:47.1092901Z [ 2025-04-25T04:18:47.1093207Z T=uint8_t, 2025-04-25T04:18:47.1093550Z accT=int16_t 2025-04-25T04:18:47.1093877Z ] 2025-04-25T04:18:47.1095135Z 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:18:47.1096053Z with 2025-04-25T04:18:47.1096226Z [ 2025-04-25T04:18:47.1096399Z T=uint8_t, 2025-04-25T04:18:47.1096607Z accT=int16_t 2025-04-25T04:18:47.1096987Z ] 2025-04-25T04:18:47.1098306Z 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:18:47.1101142Z 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:18:47.1105479Z 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:18:47.1111124Z 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:18:47.1115410Z 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:18:47.1118440Z 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:18:47.1120103Z [1287/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-04-25T04:18:47.1121742Z 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:18:47.1123310Z with 2025-04-25T04:18:47.1123501Z [ 2025-04-25T04:18:47.1123671Z T=uint8_t, 2025-04-25T04:18:47.1123893Z accT=int32_t, 2025-04-25T04:18:47.1124162Z inpType=uint8_t 2025-04-25T04:18:47.1124444Z ] 2025-04-25T04:18:47.1125387Z 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:18:47.1126274Z with 2025-04-25T04:18:47.1126460Z [ 2025-04-25T04:18:47.1126628Z T=uint8_t, 2025-04-25T04:18:47.1126847Z accT=int32_t 2025-04-25T04:18:47.1127058Z ] 2025-04-25T04:18:47.1128910Z 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:18:47.1130346Z with 2025-04-25T04:18:47.1130531Z [ 2025-04-25T04:18:47.1130718Z T=uint8_t, 2025-04-25T04:18:47.1130937Z accT=int32_t 2025-04-25T04:18:47.1131155Z ] 2025-04-25T04:18:47.1132075Z 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:18:47.1133114Z with 2025-04-25T04:18:47.1133310Z [ 2025-04-25T04:18:47.1133488Z T=uint8_t, 2025-04-25T04:18:47.1133825Z accT=int32_t 2025-04-25T04:18:47.1134037Z ] 2025-04-25T04:18:47.1135533Z 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:18:47.1136898Z with 2025-04-25T04:18:47.1137084Z [ 2025-04-25T04:18:47.1137257Z T=uint8_t, 2025-04-25T04:18:47.1137519Z accT=int16_t, 2025-04-25T04:18:47.1137750Z inpType=uint8_t 2025-04-25T04:18:47.1137987Z ] 2025-04-25T04:18:47.1138793Z 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:18:47.1139665Z with 2025-04-25T04:18:47.1139856Z [ 2025-04-25T04:18:47.1140042Z T=uint8_t, 2025-04-25T04:18:47.1140326Z accT=int16_t 2025-04-25T04:18:47.1140592Z ] 2025-04-25T04:18:47.1141889Z 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:18:47.1143236Z with 2025-04-25T04:18:47.1143413Z [ 2025-04-25T04:18:47.1143596Z T=uint8_t, 2025-04-25T04:18:47.1143807Z accT=int16_t 2025-04-25T04:18:47.1144025Z ] 2025-04-25T04:18:47.1144850Z 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:18:47.1145811Z with 2025-04-25T04:18:47.1146007Z [ 2025-04-25T04:18:47.1146219Z T=uint8_t, 2025-04-25T04:18:47.1146486Z accT=int16_t 2025-04-25T04:18:47.1146823Z ] 2025-04-25T04:18:47.1148465Z 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:18:47.1149990Z with 2025-04-25T04:18:47.1150181Z [ 2025-04-25T04:18:47.1150462Z T=uint8_t, 2025-04-25T04:18:47.1150742Z accT=int32_t, 2025-04-25T04:18:47.1151003Z inpType=uint8_t 2025-04-25T04:18:47.1151224Z ] 2025-04-25T04:18:47.1152054Z 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:18:47.1153224Z with 2025-04-25T04:18:47.1153449Z [ 2025-04-25T04:18:47.1153693Z T=uint8_t, 2025-04-25T04:18:47.1153999Z accT=int32_t 2025-04-25T04:18:47.1154210Z ] 2025-04-25T04:18:47.1155615Z 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:18:47.1157000Z with 2025-04-25T04:18:47.1157195Z [ 2025-04-25T04:18:47.1157424Z T=uint8_t, 2025-04-25T04:18:47.1157707Z accT=int32_t 2025-04-25T04:18:47.1158075Z ] 2025-04-25T04:18:47.1159631Z 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:18:47.1161377Z with 2025-04-25T04:18:47.1161658Z [ 2025-04-25T04:18:47.1162224Z T=uint8_t, 2025-04-25T04:18:47.1162669Z accT=int32_t 2025-04-25T04:18:47.1162987Z ] 2025-04-25T04:18:47.1165238Z 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:18:47.1167613Z with 2025-04-25T04:18:47.1168129Z [ 2025-04-25T04:18:47.1168438Z T=uint8_t, 2025-04-25T04:18:47.1168822Z accT=int16_t, 2025-04-25T04:18:47.1169203Z inpType=uint8_t 2025-04-25T04:18:47.1169580Z ] 2025-04-25T04:18:47.1171057Z 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:18:47.1172768Z with 2025-04-25T04:18:47.1173098Z [ 2025-04-25T04:18:47.1173408Z T=uint8_t, 2025-04-25T04:18:47.1173792Z accT=int16_t 2025-04-25T04:18:47.1174127Z ] 2025-04-25T04:18:47.1178494Z 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:18:47.1181073Z with 2025-04-25T04:18:47.1181392Z [ 2025-04-25T04:18:47.1181714Z T=uint8_t, 2025-04-25T04:18:47.1182100Z accT=int16_t 2025-04-25T04:18:47.1182500Z ] 2025-04-25T04:18:47.1184130Z 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:18:47.1185909Z with 2025-04-25T04:18:47.1186258Z [ 2025-04-25T04:18:47.1186565Z T=uint8_t, 2025-04-25T04:18:47.1186811Z accT=int16_t 2025-04-25T04:18:47.1198562Z ] 2025-04-25T04:18:47.1656935Z 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:18:47.1659193Z 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:18:47.1660691Z [1288/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-04-25T04:18:47.1738596Z [1289/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-04-25T04:18:47.1741009Z 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:18:47.1742958Z 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:18:47.1744877Z 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:18:47.1747986Z 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:18:47.1750066Z 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:18:47.1752204Z 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:18:47.1754089Z 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:18:47.1756581Z 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:18:47.1758975Z 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:18:47.1761197Z 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:18:47.1763184Z 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:18:47.1766264Z 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:18:47.1770064Z 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:18:47.1774227Z 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:18:47.1777872Z 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:18:47.1786120Z 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:18:47.1789153Z 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:18:47.1791866Z 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:18:47.1796682Z 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:18:47.1801424Z 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:18:47.1805073Z 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:18:47.1808513Z 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:18:47.1812266Z 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:18:47.1816260Z 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:18:47.1820494Z 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:18:47.1824235Z 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:18:47.1827837Z 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:18:47.1831559Z 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:18:47.1834682Z 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:18:47.1837206Z 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:18:47.1840365Z 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:18:47.1843564Z 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:18:47.1847490Z 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:18:47.1851827Z 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:18:47.1855913Z 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:18:47.1859273Z 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:18:47.1861470Z 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:18:47.1863495Z 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:18:47.1865743Z 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:18:47.1869958Z 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:18:47.1875039Z 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:18:47.1880502Z 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:18:47.1883428Z 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:18:47.1886353Z 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:18:47.1889605Z 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:18:47.1892953Z 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:18:47.1900692Z 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:18:47.1907353Z 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:18:47.1912203Z 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:18:47.1916712Z 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:18:47.1920419Z 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:18:47.1924266Z 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:18:47.1929627Z 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:18:47.1934854Z 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:18:47.1938363Z 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:18:47.1941688Z 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:18:47.1945207Z 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:18:47.1948575Z 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:18:47.1952196Z 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:18:47.1955872Z 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:18:47.1959211Z 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:18:47.1963080Z 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:18:47.1966526Z 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:18:47.1970793Z 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:18:47.1974662Z 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:18:47.1979142Z 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:18:47.1981446Z 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:18:47.1983814Z 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:18:47.1985872Z 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:18:47.1988191Z 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:18:47.1990774Z 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:18:47.1993397Z 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:18:47.1996932Z 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:18:47.2000859Z 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:18:47.2004596Z 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:18:47.2008226Z 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:18:47.2013063Z 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:18:47.2016954Z 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:18:47.2020920Z 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:18:47.2025573Z 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:18:47.2029965Z 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:18:47.2035366Z 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:18:47.2038264Z 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:18:47.2041729Z 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:18:47.2046082Z 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:18:47.2049833Z 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:18:47.2053509Z 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:18:47.2057119Z 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:18:47.2061272Z 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:18:47.2065570Z 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:18:47.2069125Z 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:18:47.2072383Z 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:18:47.2075632Z 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:18:47.2079050Z 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:18:47.2082146Z 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:18:47.2084163Z 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:18:47.2086107Z 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:18:47.2088216Z 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:18:47.2090130Z 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:18:47.2092330Z 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:18:47.2094482Z 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:18:47.2096976Z 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:18:47.2098975Z 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:18:47.2101073Z 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:18:47.2103104Z 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:18:47.2107008Z 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:18:47.2110962Z 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:18:47.2114834Z 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:18:47.2118633Z 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:18:47.2122731Z 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:18:47.2126401Z 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:18:47.2131509Z 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:18:47.2135432Z 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:18:47.2139450Z 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:18:47.2143267Z 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:18:47.2147110Z 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:18:47.2152211Z 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:18:47.2158093Z 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:18:47.2163887Z 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:18:47.2169721Z 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:18:47.2172058Z [1290/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-04-25T04:18:47.2176321Z 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:18:47.2178632Z with 2025-04-25T04:18:47.2179013Z [ 2025-04-25T04:18:47.2179307Z T=uint8_t, 2025-04-25T04:18:47.2179747Z accT=int32_t, 2025-04-25T04:18:47.2180167Z inpType=uint8_t 2025-04-25T04:18:47.2180559Z ] 2025-04-25T04:18:47.2181977Z 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:18:47.2183130Z with 2025-04-25T04:18:47.2183392Z [ 2025-04-25T04:18:47.2183615Z T=uint8_t, 2025-04-25T04:18:47.2183958Z accT=int32_t 2025-04-25T04:18:47.2184228Z ] 2025-04-25T04:18:47.2185682Z 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:18:47.2187976Z with 2025-04-25T04:18:47.2188267Z [ 2025-04-25T04:18:47.2188617Z T=uint8_t, 2025-04-25T04:18:47.2189052Z accT=int32_t 2025-04-25T04:18:47.2189496Z ] 2025-04-25T04:18:47.2192731Z 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:18:47.2194959Z with 2025-04-25T04:18:47.2195307Z [ 2025-04-25T04:18:47.2195622Z T=uint8_t, 2025-04-25T04:18:47.2196176Z accT=int32_t 2025-04-25T04:18:47.2196444Z ] 2025-04-25T04:18:47.2197948Z 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:18:47.2199689Z with 2025-04-25T04:18:47.2199928Z [ 2025-04-25T04:18:47.2200137Z T=uint8_t, 2025-04-25T04:18:47.2200503Z accT=int16_t, 2025-04-25T04:18:47.2200839Z inpType=uint8_t 2025-04-25T04:18:47.2201123Z ] 2025-04-25T04:18:47.2204657Z 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:18:47.2206607Z with 2025-04-25T04:18:47.2207224Z [ 2025-04-25T04:18:47.2207565Z T=uint8_t, 2025-04-25T04:18:47.2207944Z accT=int16_t 2025-04-25T04:18:47.2208340Z ] 2025-04-25T04:18:47.2211006Z 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:18:47.2213687Z with 2025-04-25T04:18:47.2214021Z [ 2025-04-25T04:18:47.2214362Z T=uint8_t, 2025-04-25T04:18:47.2214778Z accT=int16_t 2025-04-25T04:18:47.2215170Z ] 2025-04-25T04:18:47.2217275Z 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:18:47.2219262Z with 2025-04-25T04:18:47.2219622Z [ 2025-04-25T04:18:47.2219940Z T=uint8_t, 2025-04-25T04:18:47.2220334Z accT=int16_t 2025-04-25T04:18:47.2220711Z ] 2025-04-25T04:18:47.2223431Z 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:18:47.2225164Z with 2025-04-25T04:18:47.2225368Z [ 2025-04-25T04:18:47.2225741Z T=uint8_t, 2025-04-25T04:18:47.2226006Z accT=int32_t, 2025-04-25T04:18:47.2226242Z inpType=uint8_t 2025-04-25T04:18:47.2226468Z ] 2025-04-25T04:18:47.2228012Z 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:18:47.2229987Z with 2025-04-25T04:18:47.2230432Z [ 2025-04-25T04:18:47.2230754Z T=uint8_t, 2025-04-25T04:18:47.2231162Z accT=int32_t 2025-04-25T04:18:47.2231551Z ] 2025-04-25T04:18:47.2234152Z 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:18:47.2236887Z with 2025-04-25T04:18:47.2237234Z [ 2025-04-25T04:18:47.2237555Z T=uint8_t, 2025-04-25T04:18:47.2237941Z accT=int32_t 2025-04-25T04:18:47.2238345Z ] 2025-04-25T04:18:47.2240191Z 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:18:47.2242665Z with 2025-04-25T04:18:47.2243055Z [ 2025-04-25T04:18:47.2243409Z T=uint8_t, 2025-04-25T04:18:47.2243861Z accT=int32_t 2025-04-25T04:18:47.2244542Z ] 2025-04-25T04:18:47.2248343Z 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:18:47.2251717Z with 2025-04-25T04:18:47.2252075Z [ 2025-04-25T04:18:47.2252437Z T=uint8_t, 2025-04-25T04:18:47.2252818Z accT=int16_t, 2025-04-25T04:18:47.2253234Z inpType=uint8_t 2025-04-25T04:18:47.2253628Z ] 2025-04-25T04:18:47.2255209Z 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:18:47.2256900Z with 2025-04-25T04:18:47.2257210Z [ 2025-04-25T04:18:47.2257706Z T=uint8_t, 2025-04-25T04:18:47.2258117Z accT=int16_t 2025-04-25T04:18:47.2258539Z ] 2025-04-25T04:18:47.2261028Z 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:18:47.2263769Z with 2025-04-25T04:18:47.2264083Z [ 2025-04-25T04:18:47.2264433Z T=uint8_t, 2025-04-25T04:18:47.2264810Z accT=int16_t 2025-04-25T04:18:47.2265183Z ] 2025-04-25T04:18:47.2267114Z 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:18:47.2268898Z with 2025-04-25T04:18:47.2269220Z [ 2025-04-25T04:18:47.2269527Z T=uint8_t, 2025-04-25T04:18:47.2269947Z accT=int16_t 2025-04-25T04:18:47.2270405Z ] 2025-04-25T04:18:47.2272825Z 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:18:47.2275560Z 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:18:47.2279257Z [1291/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-04-25T04:18:47.2283774Z 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:18:47.2288886Z 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:18:47.2292908Z 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:18:47.2295825Z 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:18:47.2298969Z 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:18:47.2301924Z 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:18:47.2304657Z 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:18:47.2307836Z 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:18:47.2310350Z 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:18:47.2314119Z 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:18:47.2317643Z 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:18:47.2320516Z 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:18:47.2322476Z 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:18:47.2325215Z 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:18:47.2327677Z 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:18:47.2330343Z 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:18:47.2335298Z 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:18:47.2338830Z 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:18:47.2342563Z 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:18:47.2346053Z 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:18:47.2350589Z 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:18:47.2354160Z 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:18:47.2358072Z 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:18:47.2362074Z 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:18:47.2365737Z 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:18:47.2369393Z 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:18:47.2373011Z 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:18:47.2376872Z 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:18:47.2381710Z 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:18:47.2386336Z 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:18:47.2390702Z 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:18:47.2393770Z 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:18:47.2397490Z 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:18:47.2402414Z 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:18:47.2407620Z 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:18:47.2411951Z 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:18:47.2414699Z 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:18:47.2418001Z 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:18:47.2421940Z 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:18:47.2426508Z 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:18:47.2430813Z 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:18:47.2433118Z 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:18:47.2436572Z 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:18:47.2440381Z 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:18:47.2444721Z 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:18:47.2447872Z 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:18:47.2451192Z 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:18:47.2454776Z 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:18:47.2458803Z 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:18:47.2462610Z 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:18:47.2466142Z 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:18:47.2470061Z 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:18:47.2474006Z 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:18:47.2476764Z 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:18:47.2479994Z 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:18:47.2482846Z 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:18:47.2485274Z 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:18:47.2487783Z 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:18:47.3337813Z 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:18:47.3340348Z 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:18:47.3341783Z [1292/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-04-25T04:18:47.3344225Z 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:18:47.3345575Z with 2025-04-25T04:18:47.3346022Z [ 2025-04-25T04:18:47.3346501Z T=int8_t, 2025-04-25T04:18:47.3346882Z accT=int32_t, 2025-04-25T04:18:47.3347253Z inpType=int8_t 2025-04-25T04:18:47.3347626Z ] 2025-04-25T04:18:47.3348952Z 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:18:47.3350404Z with 2025-04-25T04:18:47.3350696Z [ 2025-04-25T04:18:47.3350963Z T=int8_t, 2025-04-25T04:18:47.3351321Z accT=int32_t 2025-04-25T04:18:47.3351654Z ] 2025-04-25T04:18:47.3352956Z 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:18:47.3354973Z with 2025-04-25T04:18:47.3355274Z [ 2025-04-25T04:18:47.3355563Z T=int8_t, 2025-04-25T04:18:47.3355916Z accT=int32_t 2025-04-25T04:18:47.3356251Z ] 2025-04-25T04:18:47.3357440Z 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:18:47.3358328Z with 2025-04-25T04:18:47.3358525Z [ 2025-04-25T04:18:47.3358719Z T=int8_t, 2025-04-25T04:18:47.3358995Z accT=int32_t 2025-04-25T04:18:47.3359221Z ] 2025-04-25T04:18:47.3450490Z 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:18:47.3453746Z [1293/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-04-25T04:18:47.3456400Z 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:18:47.3458891Z with 2025-04-25T04:18:47.3459210Z [ 2025-04-25T04:18:47.3459527Z T=int8_t, 2025-04-25T04:18:47.3460191Z accT=int32_t, 2025-04-25T04:18:47.3460864Z inpType=int8_t 2025-04-25T04:18:47.3461224Z ] 2025-04-25T04:18:47.3462102Z 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:18:47.3463046Z with 2025-04-25T04:18:47.3463233Z [ 2025-04-25T04:18:47.3463417Z T=int8_t, 2025-04-25T04:18:47.3463622Z accT=int32_t 2025-04-25T04:18:47.3463840Z ] 2025-04-25T04:18:47.3465122Z 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:18:47.3466742Z with 2025-04-25T04:18:47.3466983Z [ 2025-04-25T04:18:47.3467161Z T=int8_t, 2025-04-25T04:18:47.3467403Z accT=int32_t 2025-04-25T04:18:47.3467677Z ] 2025-04-25T04:18:47.3468612Z 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:18:47.3469679Z with 2025-04-25T04:18:47.3469875Z [ 2025-04-25T04:18:47.3470064Z T=int8_t, 2025-04-25T04:18:47.3470368Z accT=int32_t 2025-04-25T04:18:47.3470597Z ] 2025-04-25T04:18:47.3472005Z 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:18:47.3473495Z with 2025-04-25T04:18:47.3473667Z [ 2025-04-25T04:18:47.3473853Z T=int8_t, 2025-04-25T04:18:47.3474070Z accT=int16_t, 2025-04-25T04:18:47.3474291Z inpType=int8_t 2025-04-25T04:18:47.3474517Z ] 2025-04-25T04:18:47.3476269Z 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:18:47.3478184Z with 2025-04-25T04:18:47.3478619Z [ 2025-04-25T04:18:47.3478954Z T=int8_t, 2025-04-25T04:18:47.3479325Z accT=int16_t 2025-04-25T04:18:47.3479715Z ] 2025-04-25T04:18:47.3482208Z 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:18:47.3484257Z with 2025-04-25T04:18:47.3484478Z [ 2025-04-25T04:18:47.3484847Z T=int8_t, 2025-04-25T04:18:47.3485133Z accT=int16_t 2025-04-25T04:18:47.3485389Z ] 2025-04-25T04:18:47.3486694Z 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:18:47.3488506Z with 2025-04-25T04:18:47.3488840Z [ 2025-04-25T04:18:47.3489157Z T=int8_t, 2025-04-25T04:18:47.3489544Z accT=int16_t 2025-04-25T04:18:47.3489940Z ] 2025-04-25T04:18:47.3492284Z 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:18:47.3494872Z with 2025-04-25T04:18:47.3495418Z [ 2025-04-25T04:18:47.3495829Z T=int8_t, 2025-04-25T04:18:47.3496185Z accT=int32_t, 2025-04-25T04:18:47.3496632Z inpType=int8_t 2025-04-25T04:18:47.3497037Z ] 2025-04-25T04:18:47.3498511Z 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:18:47.3500163Z with 2025-04-25T04:18:47.3500496Z [ 2025-04-25T04:18:47.3500809Z T=int8_t, 2025-04-25T04:18:47.3501187Z accT=int32_t 2025-04-25T04:18:47.3502632Z ] 2025-04-25T04:18:47.3504952Z 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:18:47.3509571Z with 2025-04-25T04:18:47.3509861Z [ 2025-04-25T04:18:47.3510078Z T=int8_t, 2025-04-25T04:18:47.3510435Z accT=int32_t 2025-04-25T04:18:47.3510646Z ] 2025-04-25T04:18:47.3511788Z 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:18:47.3513375Z with 2025-04-25T04:18:47.3513555Z [ 2025-04-25T04:18:47.3513737Z T=int8_t, 2025-04-25T04:18:47.3514069Z accT=int32_t 2025-04-25T04:18:47.3514447Z ] 2025-04-25T04:18:47.3516662Z 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:18:47.3518812Z with 2025-04-25T04:18:47.3519163Z [ 2025-04-25T04:18:47.3519479Z T=int8_t, 2025-04-25T04:18:47.3519852Z accT=int16_t, 2025-04-25T04:18:47.3520147Z inpType=int8_t 2025-04-25T04:18:47.3520433Z ] 2025-04-25T04:18:47.3521334Z 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:18:47.3522315Z with 2025-04-25T04:18:47.3522544Z [ 2025-04-25T04:18:47.3522762Z T=int8_t, 2025-04-25T04:18:47.3523013Z accT=int16_t 2025-04-25T04:18:47.3523234Z ] 2025-04-25T04:18:47.3524794Z 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:18:47.3526250Z with 2025-04-25T04:18:47.3526440Z [ 2025-04-25T04:18:47.3526611Z T=int8_t, 2025-04-25T04:18:47.3526831Z accT=int16_t 2025-04-25T04:18:47.3527038Z ] 2025-04-25T04:18:47.3527856Z 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:18:47.3528927Z with 2025-04-25T04:18:47.3529101Z [ 2025-04-25T04:18:47.3529282Z T=int8_t, 2025-04-25T04:18:47.3529499Z accT=int16_t 2025-04-25T04:18:47.3529712Z ] 2025-04-25T04:18:47.3916709Z 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:18:47.3925520Z 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:18:47.3928758Z [1294/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-04-25T04:18:47.3931934Z 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:18:47.3937347Z 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:18:47.3942283Z 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:18:47.3946957Z 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:18:47.3950565Z 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:18:47.3954012Z 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:18:47.3957783Z 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:18:47.3961231Z 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:18:47.3964741Z 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:18:47.3968224Z 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:18:47.3971533Z 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:18:47.3975133Z 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:18:47.4251691Z 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:18:47.4254928Z [1295/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-04-25T04:18:47.4916987Z [1296/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-04-25T04:18:47.5886450Z [1297/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-04-25T04:18:47.6172895Z [1298/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-04-25T04:18:47.6260476Z [1299/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-04-25T04:18:47.7332396Z [1300/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-04-25T04:18:47.7349423Z [1301/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-04-25T04:18:47.7772676Z [1302/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-04-25T04:18:47.7978539Z [1303/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-04-25T04:18:47.8306506Z [1304/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-04-25T04:18:47.8401221Z [1305/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-04-25T04:18:47.8476371Z [1306/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-04-25T04:18:47.8618527Z 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:18:47.8621154Z 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:18:47.8623224Z [1307/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-04-25T04:18:47.9466972Z [1308/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-04-25T04:18:47.9873386Z [1309/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-04-25T04:18:48.0213476Z [1310/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-04-25T04:18:48.0332949Z [1311/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-04-25T04:18:48.0648975Z [1312/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-04-25T04:18:48.0663341Z [1313/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-04-25T04:18:48.0773049Z [1314/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-04-25T04:18:48.0858081Z [1315/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-04-25T04:18:48.1467379Z [1316/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-04-25T04:18:48.1470409Z 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:18:48.1472883Z 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:18:48.1476256Z 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:18:48.1480168Z 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:18:48.1482915Z 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:18:48.1485221Z 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:18:48.1487674Z 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:18:48.1490448Z 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:18:48.1493101Z 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:18:48.1495733Z 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:18:48.1498273Z 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:18:48.1501797Z 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:18:48.1505562Z [1317/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-04-25T04:18:48.2485079Z [1318/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-04-25T04:18:48.2933166Z [1319/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-04-25T04:18:48.3130312Z [1320/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-04-25T04:18:48.3309235Z [1321/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-04-25T04:18:48.3545838Z [1322/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-04-25T04:18:48.3633405Z [1323/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-04-25T04:18:48.3929678Z [1324/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-04-25T04:18:48.4100162Z [1325/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-04-25T04:18:48.4456526Z [1326/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-04-25T04:18:48.5471644Z [1327/7581] Linking CXX shared library bin\asmjit.dll 2025-04-25T04:18:48.6076826Z [1328/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-04-25T04:18:48.6553200Z [1329/7581] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-04-25T04:18:48.6627512Z [1330/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-04-25T04:18:48.7237724Z [1331/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-04-25T04:18:48.7359793Z [1332/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-04-25T04:18:48.9376133Z [1333/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-04-25T04:18:48.9613511Z [1334/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-04-25T04:18:48.9667214Z [1335/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-04-25T04:18:48.9684992Z [1336/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-04-25T04:18:48.9961576Z [1337/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-04-25T04:18:48.9976795Z [1338/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-04-25T04:18:49.2258263Z [1339/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-04-25T04:18:49.2367872Z [1340/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-04-25T04:18:49.2381890Z [1341/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-04-25T04:18:49.2434188Z [1342/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-04-25T04:18:49.2701495Z [1343/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-04-25T04:18:49.2721409Z [1344/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-04-25T04:18:49.4099155Z [1345/7581] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-04-25T04:18:49.5029131Z 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:18:49.5030244Z [1346/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-04-25T04:18:49.5173991Z [1347/7581] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-04-25T04:18:49.5387894Z 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:18:49.5389788Z [1348/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-04-25T04:18:49.5833952Z [1349/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-04-25T04:18:49.5986038Z [1350/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-04-25T04:18:49.6460352Z [1351/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-04-25T04:18:49.6478050Z [1352/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-04-25T04:18:49.6565677Z [1353/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-04-25T04:18:49.6935841Z [1354/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-04-25T04:18:49.7068800Z [1355/7581] Linking CXX static library lib\onnx_proto.lib 2025-04-25T04:18:49.7779071Z [1356/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-04-25T04:18:49.8387697Z [1357/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-04-25T04:18:49.8562004Z [1358/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-04-25T04:18:49.8839088Z [1359/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-04-25T04:18:49.8931556Z [1360/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-04-25T04:18:49.9048136Z [1361/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-04-25T04:18:49.9141297Z [1362/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-04-25T04:18:50.1513756Z [1363/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-04-25T04:18:50.2220821Z [1364/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-04-25T04:18:50.3459091Z [1365/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-04-25T04:18:50.3538061Z [1366/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-04-25T04:18:50.3611381Z [1367/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-04-25T04:18:50.4092521Z [1368/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-04-25T04:18:50.6699376Z [1369/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-04-25T04:18:50.7477399Z [1370/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-04-25T04:18:50.7597705Z [1371/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-04-25T04:18:50.7731006Z [1372/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-04-25T04:18:50.8471197Z [1373/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-04-25T04:18:50.8704546Z [1374/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-04-25T04:18:50.8803973Z [1375/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-04-25T04:18:50.9996009Z [1376/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-04-25T04:18:51.1351322Z [1377/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-04-25T04:18:51.2713486Z [1378/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-04-25T04:18:51.3208271Z [1379/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-04-25T04:18:51.3297340Z [1380/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-04-25T04:18:51.3660506Z [1381/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-04-25T04:18:51.3894764Z [1382/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-04-25T04:18:51.4073382Z [1383/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-04-25T04:18:51.4881619Z [1384/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-04-25T04:18:51.6277135Z [1385/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-04-25T04:18:51.8141008Z [1386/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-04-25T04:18:51.8732322Z [1387/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-04-25T04:18:51.8842569Z [1388/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-04-25T04:18:51.9010381Z [1389/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-04-25T04:18:51.9102412Z [1390/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-04-25T04:18:51.9996217Z [1391/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-04-25T04:18:52.0068535Z [1392/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-04-25T04:18:52.1416279Z [1393/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-04-25T04:18:52.2705911Z [1394/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-04-25T04:18:52.3355038Z [1395/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-04-25T04:18:52.3986668Z [1396/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-04-25T04:18:52.4414435Z [1397/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-04-25T04:18:52.4515510Z [1398/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-04-25T04:18:52.5003693Z [1399/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-04-25T04:18:52.5724543Z [1400/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-04-25T04:18:52.6426673Z [1401/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-04-25T04:18:52.7677987Z [1402/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-04-25T04:18:52.8441585Z [1403/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-04-25T04:18:52.8904883Z [1404/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-04-25T04:18:52.8984537Z [1405/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-04-25T04:18:52.9326151Z [1406/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-04-25T04:18:53.0607541Z [1407/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-04-25T04:18:53.0947452Z [1408/7581] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-04-25T04:18:53.1338170Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:18:53.1338795Z 2025-04-25T04:18:53.1338805Z 2025-04-25T04:18:53.1339067Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:18:53.1339511Z 2025-04-25T04:18:53.1339551Z 2025-04-25T04:18:53.1339557Z 2025-04-25T04:18:53.1339577Z 2025-04-25T04:18:53.1340148Z [1409/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-04-25T04:18:53.1475975Z [1410/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-04-25T04:18:53.2613456Z [1411/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-04-25T04:18:53.3933533Z [1412/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-04-25T04:18:53.4246057Z [1413/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-04-25T04:18:53.4306526Z [1414/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-04-25T04:18:53.4755417Z [1415/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-04-25T04:18:53.8337789Z [1416/7581] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-04-25T04:18:54.1477728Z [1417/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-04-25T04:18:54.1596423Z [1418/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-04-25T04:18:54.2067834Z [1419/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-04-25T04:18:54.2745450Z [1420/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-04-25T04:18:54.2801273Z [1421/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-04-25T04:18:54.3488351Z [1422/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-04-25T04:18:54.4355835Z [1423/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-04-25T04:18:54.4492442Z [1424/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-04-25T04:18:54.4718425Z [1425/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-04-25T04:18:54.7406146Z [1426/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-04-25T04:18:54.8000769Z [1427/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-04-25T04:18:54.8443554Z [1428/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-04-25T04:18:54.8650370Z [1429/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-04-25T04:18:54.8873547Z [1430/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-04-25T04:18:55.0324027Z [1431/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-04-25T04:18:55.2619639Z [1432/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-04-25T04:18:55.2718267Z [1433/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-04-25T04:18:55.3234205Z [1434/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-04-25T04:18:55.8041217Z [1435/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-04-25T04:18:55.8780250Z [1436/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-04-25T04:18:55.8881918Z [1437/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-04-25T04:18:55.9085591Z [1438/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-04-25T04:18:56.0013394Z [1439/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-04-25T04:18:56.2692920Z [1440/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-04-25T04:18:56.2916540Z [1441/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-04-25T04:18:56.3191769Z [1442/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-04-25T04:18:56.6819419Z [1443/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-04-25T04:18:56.8639966Z [1444/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-04-25T04:18:56.9205716Z [1445/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-04-25T04:18:56.9553853Z [1446/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-04-25T04:18:56.9966382Z [1447/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-04-25T04:18:57.2586409Z [1448/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-04-25T04:18:57.3346568Z [1449/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-04-25T04:18:57.3656943Z [1450/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-04-25T04:18:57.7270767Z [1451/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-04-25T04:18:57.8768229Z [1452/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-04-25T04:18:58.0160443Z [1453/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-04-25T04:18:58.0839571Z [1454/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-04-25T04:18:58.0942397Z [1455/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-04-25T04:18:58.2528760Z [1456/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-04-25T04:18:58.3640624Z [1457/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-04-25T04:18:58.5508062Z [1458/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-04-25T04:18:58.7370627Z [1459/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-04-25T04:18:58.8967277Z [1460/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-04-25T04:18:58.9253486Z [1461/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-04-25T04:18:59.0558871Z [1462/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-04-25T04:18:59.1134347Z [1463/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-04-25T04:18:59.2584910Z [1464/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-04-25T04:18:59.3466438Z [1465/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-04-25T04:18:59.5379020Z [1466/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-04-25T04:18:59.7375386Z [1467/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-04-25T04:18:59.9421284Z [1468/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-04-25T04:18:59.9511606Z [1469/7581] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-04-25T04:18:59.9617683Z Microsoft (R) Macro Assembler (x64) Version 14.29.30158.0 2025-04-25T04:18:59.9617993Z 2025-04-25T04:18:59.9618183Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:18:59.9618462Z 2025-04-25T04:18:59.9618466Z 2025-04-25T04:18:59.9618507Z 2025-04-25T04:18:59.9618900Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-04-25T04:18:59.9619419Z 2025-04-25T04:18:59.9619768Z [1470/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-04-25T04:19:00.0737907Z [1471/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-04-25T04:19:00.0970473Z [1472/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-04-25T04:19:00.1903150Z [1473/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-04-25T04:19:00.3153822Z [1474/7581] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-04-25T04:19:00.4375053Z [1475/7581] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-04-25T04:19:00.4993338Z [1476/7581] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-04-25T04:19:01.0424757Z [1477/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-04-25T04:19:01.0881725Z [1478/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-04-25T04:19:01.0996652Z [1479/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-04-25T04:19:01.3507816Z [1480/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-04-25T04:19:01.3959239Z [1481/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-04-25T04:19:01.4985086Z [1482/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-04-25T04:19:01.7918926Z [1483/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-04-25T04:19:01.8361506Z [1484/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-04-25T04:19:02.0318068Z [1485/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-04-25T04:19:02.2619182Z [1486/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-04-25T04:19:02.3428833Z [1487/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-04-25T04:19:02.5716112Z [1488/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-04-25T04:19:02.5801951Z [1489/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-04-25T04:19:02.6917790Z [1490/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-04-25T04:19:03.0040282Z [1491/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-04-25T04:19:03.0967005Z [1492/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-04-25T04:19:03.2465267Z [1493/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-04-25T04:19:03.4194720Z [1494/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-04-25T04:19:03.4942891Z [1495/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-04-25T04:19:03.7656329Z [1496/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-04-25T04:19:03.8373964Z [1497/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-04-25T04:19:03.8724458Z [1498/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-04-25T04:19:04.1004251Z [1499/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-04-25T04:19:04.1986107Z [1500/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-04-25T04:19:04.4209250Z [1501/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-04-25T04:19:04.5413786Z [1502/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-04-25T04:19:04.6147291Z [1503/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-04-25T04:19:04.8643387Z [1504/7581] 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:19:05.0708019Z [1505/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-04-25T04:19:05.0816698Z [1506/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-04-25T04:19:05.3238985Z [1507/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-04-25T04:19:05.4419814Z [1508/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-04-25T04:19:05.5335968Z [1509/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-04-25T04:19:05.6011304Z [1510/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-04-25T04:19:05.7808591Z [1511/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-04-25T04:19:06.0295078Z [1512/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-04-25T04:19:06.1789815Z [1513/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-04-25T04:19:06.2109927Z [1514/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-04-25T04:19:06.4797038Z [1515/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-04-25T04:19:06.5225764Z [1516/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-04-25T04:19:06.6426546Z [1517/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-04-25T04:19:06.7079290Z [1518/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-04-25T04:19:06.9080554Z [1519/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-04-25T04:19:07.1635246Z [1520/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-04-25T04:19:07.2739495Z [1521/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-04-25T04:19:07.3345813Z [1522/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-04-25T04:19:07.5961869Z [1523/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-04-25T04:19:07.6099418Z [1524/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-04-25T04:19:07.7469713Z [1525/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-04-25T04:19:07.8085148Z [1526/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-04-25T04:19:08.1218829Z [1527/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-04-25T04:19:08.2382237Z [1528/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-04-25T04:19:08.3331646Z [1529/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-04-25T04:19:08.3850014Z [1530/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-04-25T04:19:08.6076230Z [1531/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-04-25T04:19:08.7204221Z [1532/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-04-25T04:19:08.7934155Z [1533/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-04-25T04:19:09.0061854Z [1534/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-04-25T04:19:09.1619843Z [1535/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-04-25T04:19:09.1843733Z [1536/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-04-25T04:19:09.2111788Z [1537/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-04-25T04:19:09.3040833Z [1538/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-04-25T04:19:09.3200108Z [1539/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-04-25T04:19:09.3876592Z [1540/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-04-25T04:19:09.8576806Z [1541/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-04-25T04:19:10.0302011Z [1542/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-04-25T04:19:10.1071048Z [1543/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-04-25T04:19:10.2602898Z [1544/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-04-25T04:19:10.3903398Z [1545/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-04-25T04:19:10.5565658Z [1546/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-04-25T04:19:10.6402404Z [1547/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-04-25T04:19:10.7501812Z [1548/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-04-25T04:19:10.9163959Z [1549/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-04-25T04:19:11.0812715Z [1550/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-04-25T04:19:11.2032235Z [1551/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-04-25T04:19:11.4893962Z [1552/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-04-25T04:19:11.6670415Z [1553/7581] 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:19:11.8189808Z [1554/7581] 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:19:11.9521937Z [1555/7581] 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:19:12.0262540Z [1556/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-04-25T04:19:12.2033769Z [1557/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-04-25T04:19:12.3148296Z [1558/7581] 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:19:12.4776264Z [1559/7581] 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:19:12.7818477Z [1560/7581] 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:19:12.9639538Z [1561/7581] 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:19:13.1256218Z [1562/7581] 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:19:13.2486414Z [1563/7581] 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:19:13.9988746Z [1564/7581] 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:19:14.1012093Z [1565/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-04-25T04:19:14.1234559Z [1566/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-04-25T04:19:14.1784558Z [1567/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-04-25T04:19:14.2040302Z [1568/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-04-25T04:19:14.2359736Z [1569/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-04-25T04:19:14.2690317Z [1570/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-04-25T04:19:14.2827853Z [1571/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-04-25T04:19:15.2762629Z [1572/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-04-25T04:19:15.3450812Z [1573/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-04-25T04:19:15.3790108Z [1574/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-04-25T04:19:15.4008948Z [1575/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-04-25T04:19:15.4470774Z [1576/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-04-25T04:19:15.4550945Z [1577/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-04-25T04:19:15.4662140Z [1578/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-04-25T04:19:15.5007428Z [1579/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-04-25T04:19:15.5602473Z [1580/7581] 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:19:16.3534155Z [1581/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-04-25T04:19:16.4389196Z [1582/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-04-25T04:19:16.5820959Z [1583/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-04-25T04:19:16.6135823Z [1584/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-04-25T04:19:16.6229563Z [1585/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-04-25T04:19:16.6381185Z [1586/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-04-25T04:19:16.6481971Z [1587/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-04-25T04:19:16.6601360Z [1588/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-04-25T04:19:17.5238795Z [1589/7581] 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:19:17.6382481Z [1590/7581] 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:19:17.7018829Z [1591/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-04-25T04:19:17.7093438Z [1592/7581] 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:19:17.7527216Z [1593/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-04-25T04:19:17.7598348Z [1594/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-04-25T04:19:17.7901165Z [1595/7581] 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:19:17.8044182Z [1596/7581] 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:19:18.7623071Z [1597/7581] 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:19:18.8135859Z [1598/7581] 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:19:18.8221620Z [1599/7581] 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:19:18.8326842Z [1600/7581] 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:19:18.8891680Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:18.8892619Z [1601/7581] 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:19:18.9259057Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:18.9259908Z [1602/7581] 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:19:18.9479716Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:18.9481392Z [1603/7581] 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:19:18.9573919Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:18.9574774Z [1604/7581] 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:19:19.9256501Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:19.9258198Z [1605/7581] 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:19:19.9406408Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:19.9407546Z [1606/7581] 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:19:19.9485337Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:19.9486258Z [1607/7581] 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:19:19.9511257Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:19.9512269Z [1608/7581] 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:19:20.0233666Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:20.0234650Z [1609/7581] 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:19:20.0637612Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:20.0638491Z [1610/7581] 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:19:20.0711319Z [1611/7581] 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:19:20.1060241Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:20.1061811Z [1612/7581] 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:19:21.0021924Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:21.0023598Z [1613/7581] 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:19:21.0652534Z [1614/7581] 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:19:21.0983607Z [1615/7581] 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:19:21.1079607Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:21.1080781Z [1616/7581] 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:19:21.1272463Z [1617/7581] 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:19:21.2374685Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:21.2376318Z [1618/7581] 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:19:21.2566245Z [1619/7581] 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:19:21.2860117Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:21.2861734Z [1620/7581] 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:19:22.1576385Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:22.1577207Z [1621/7581] 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:19:22.1790794Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:22.1791752Z [1622/7581] 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:19:22.2615818Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:22.2617611Z [1623/7581] 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:19:22.2751162Z [1624/7581] 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:19:22.2922663Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:22.2924091Z [1625/7581] 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:19:22.3103908Z [1626/7581] 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:19:22.3402504Z [1627/7581] 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:19:22.4421790Z [1628/7581] 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:19:23.2156111Z [1629/7581] 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:19:23.3094470Z [1630/7581] 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:19:23.3692655Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:23.3695009Z [1631/7581] 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:19:23.3792059Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:23.3792908Z [1632/7581] 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:19:23.4444640Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:23.4446162Z [1633/7581] 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:19:23.4780198Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:23.4781016Z [1634/7581] 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:19:23.5120426Z [1635/7581] 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:19:23.5991917Z [1636/7581] 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:19:24.3642610Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:24.4634458Z [1637/7581] 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:19:24.4635512Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:24.4636214Z [1638/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-04-25T04:19:24.4961590Z [1639/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-04-25T04:19:24.5315104Z [1640/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-04-25T04:19:24.5512039Z [1641/7581] 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:19:24.5616133Z [1642/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-04-25T04:19:24.5975026Z [1643/7581] 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:19:24.7597906Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:24.7598784Z [1644/7581] 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:19:25.4811906Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.4813299Z [1645/7581] 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:19:25.6125156Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.6126107Z [1646/7581] 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:19:25.6303594Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.6304473Z [1647/7581] 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:19:25.7239334Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.7240304Z [1648/7581] 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:19:25.7258816Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.7260136Z [1649/7581] 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:19:25.7322174Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.7323773Z [1650/7581] 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:19:25.7428427Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.7429482Z [1651/7581] 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:19:25.9149936Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:25.9151331Z [1652/7581] 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:19:26.5629057Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:26.5630690Z [1653/7581] 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:19:26.7506275Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:26.7507841Z [1654/7581] 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:19:26.7719262Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:26.7720127Z [1655/7581] 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:19:26.8200500Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:26.8201936Z [1656/7581] 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:19:26.8312822Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:26.8314403Z [1657/7581] 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:19:26.8698832Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:26.8699814Z [1658/7581] 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:19:27.0206527Z [1659/7581] 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:19:27.0226576Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:27.0228777Z [1660/7581] 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:19:27.7037953Z [1661/7581] 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:19:27.8521767Z [1662/7581] 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:19:27.9325924Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:27.9326866Z [1663/7581] 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:19:27.9580279Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:27.9581166Z [1664/7581] 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:19:27.9835190Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:27.9836779Z [1665/7581] 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:19:28.0613026Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:28.0614046Z [1666/7581] 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:19:28.1179278Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:28.1180938Z [1667/7581] 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:19:28.1311082Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:28.1312211Z [1668/7581] 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:19:28.8379900Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:28.8381293Z [1669/7581] 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:19:28.9258498Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:28.9260330Z [1670/7581] 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:19:29.0460362Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.0462044Z [1671/7581] 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:19:29.1212745Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.1214484Z [1672/7581] 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:19:29.1614351Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.1615356Z [1673/7581] 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:19:29.1898882Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.1899860Z [1674/7581] 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:19:29.2734565Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.2736198Z [1675/7581] 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:19:29.2926638Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.2928297Z [1676/7581] 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:19:29.9980064Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:29.9980998Z [1677/7581] 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:19:30.0190942Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.0192182Z [1678/7581] 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:19:30.2320368Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.2322003Z [1679/7581] 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:19:30.2876136Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.2877707Z [1680/7581] 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:19:30.3297458Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.3299133Z [1681/7581] 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:19:30.3800854Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.3802482Z [1682/7581] 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:19:30.4141721Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.4142691Z [1683/7581] 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:19:30.4271002Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:30.4271848Z [1684/7581] 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:19:31.1508488Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.1509832Z [1685/7581] 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:19:31.1578933Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.1579843Z [1686/7581] 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:19:31.3717857Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.3718908Z [1687/7581] 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:19:31.4710325Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.4711285Z [1688/7581] 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:19:31.4951841Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.4953486Z [1689/7581] 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:19:31.5462048Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.5463010Z [1690/7581] 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:19:31.5624233Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.5625713Z [1691/7581] 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:19:31.6110456Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:31.6111410Z [1692/7581] 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:19:32.2463867Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.2464702Z [1693/7581] 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:19:32.3105317Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.3106210Z [1694/7581] 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:19:32.5241566Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.5243277Z [1695/7581] 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:19:32.5623302Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.5624330Z [1696/7581] 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:19:32.6231321Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.6233621Z [1697/7581] 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:19:32.6994731Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.6995590Z [1698/7581] 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:19:32.7199372Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.7201182Z [1699/7581] 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:19:32.7728755Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:32.7730313Z [1700/7581] 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:19:33.4168292Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:33.5105791Z [1701/7581] 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:19:33.5106634Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-04-25T04:19:33.5107605Z [1702/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-04-25T04:19:33.6756531Z [1703/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-04-25T04:19:33.7104488Z [1704/7581] 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:19:33.7662870Z [1705/7581] 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:19:33.8992329Z [1706/7581] 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:19:33.9388181Z [1707/7581] 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:19:33.9957575Z [1708/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-04-25T04:19:34.5650654Z [1709/7581] 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:19:34.6684756Z [1710/7581] 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:19:34.7984202Z [1711/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-04-25T04:19:34.8273541Z [1712/7581] 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:19:34.9635013Z [1713/7581] 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:19:35.0679788Z [1714/7581] 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:19:35.0823831Z [1715/7581] 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:19:35.0843999Z [1716/7581] 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:19:35.7580119Z [1717/7581] 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:19:35.8090053Z [1718/7581] 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:19:35.9545469Z [1719/7581] 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:19:35.9674008Z [1720/7581] 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:19:36.0909245Z [1721/7581] 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:19:36.1984645Z [1722/7581] 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:19:36.2596965Z [1723/7581] 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:19:36.3578935Z [1724/7581] 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:19:36.9568079Z [1725/7581] 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:19:36.9853751Z [1726/7581] 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:19:37.0501108Z [1727/7581] 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:19:37.0709625Z [1728/7581] 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:19:37.2776127Z [1729/7581] 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:19:37.4345919Z [1730/7581] 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:19:37.4462104Z [1731/7581] 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:19:37.5273714Z [1732/7581] 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:19:39.0890334Z [1733/7581] 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:19:39.0909682Z [1734/7581] 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:19:39.0962437Z [1735/7581] 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:19:39.1052140Z [1736/7581] 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:19:39.1072095Z [1737/7581] 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:19:39.1150454Z [1738/7581] 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:19:39.1178676Z [1739/7581] 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:19:39.1202420Z [1740/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-04-25T04:19:40.2636024Z [1741/7581] 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:19:40.2699753Z [1742/7581] 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:19:40.3101594Z [1743/7581] 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:19:40.3470548Z [1744/7581] 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:19:40.3564992Z [1745/7581] 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:19:40.3627697Z [1746/7581] 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:19:40.3805620Z [1747/7581] 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:19:40.4306237Z [1748/7581] 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:19:41.4623670Z [1749/7581] 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:19:41.4734256Z [1750/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-04-25T04:19:41.4829283Z [1751/7581] 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:19:41.5021346Z [1752/7581] 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:19:41.5126451Z [1753/7581] 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:19:41.5443815Z [1754/7581] 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:19:41.5569365Z [1755/7581] 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:19:41.5755235Z [1756/7581] 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:19:42.5608487Z [1757/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-04-25T04:19:42.6433199Z [1758/7581] 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:19:42.6801237Z [1759/7581] 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:19:42.6968258Z [1760/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-04-25T04:19:42.7074324Z [1761/7581] 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:19:42.7530181Z [1762/7581] 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:19:42.7828070Z [1763/7581] 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:19:42.7939128Z [1764/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-04-25T04:19:43.6885758Z [1765/7581] 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:19:43.8209529Z [1766/7581] 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:19:43.8309076Z [1767/7581] 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:19:43.9102864Z [1768/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-04-25T04:19:43.9196958Z [1769/7581] 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:19:43.9414054Z [1770/7581] 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:19:43.9866831Z [1771/7581] 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:19:43.9886806Z [1772/7581] 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:19:44.8692550Z [1773/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-04-25T04:19:44.9982640Z [1774/7581] 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:19:45.0056875Z [1775/7581] 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:19:45.1486067Z [1776/7581] 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:19:45.1596047Z [1777/7581] 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:19:45.1811853Z [1778/7581] 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:19:45.1886884Z [1779/7581] 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:19:45.2367738Z [1780/7581] 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:19:46.1406499Z [1781/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-04-25T04:19:46.1618820Z [1782/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-04-25T04:19:46.1841814Z [1783/7581] 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:19:46.3227124Z [1784/7581] 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:19:46.3596832Z [1785/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-04-25T04:19:46.3782179Z [1786/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-04-25T04:19:46.4056418Z [1787/7581] 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:19:46.4161721Z [1788/7581] 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:19:47.4044379Z [1789/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-04-25T04:19:47.4286612Z [1790/7581] 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:19:47.4638113Z [1791/7581] 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:19:47.5165608Z [1792/7581] 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:19:47.5822064Z [1793/7581] 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:19:47.5891167Z [1794/7581] 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:19:47.6251455Z [1795/7581] 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:19:47.7143872Z [1796/7581] 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:19:48.5644424Z [1797/7581] 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:19:48.6208143Z [1798/7581] 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:19:48.6705177Z [1799/7581] 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:19:48.6794943Z [1800/7581] 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:19:48.6973521Z [1801/7581] 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:19:48.7217093Z [1802/7581] 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:19:48.7308116Z [1803/7581] 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:19:48.8453427Z [1804/7581] 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:19:49.7041823Z [1805/7581] 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:19:49.8595845Z [1806/7581] 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:19:49.8710790Z [1807/7581] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-04-25T04:19:49.8775832Z [1808/7581] 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:19:49.8856216Z [1809/7581] 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:19:49.8948853Z [1810/7581] 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:19:49.9747818Z [1811/7581] 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:19:49.9855128Z [1812/7581] 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:19:50.8543261Z [1813/7581] 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:19:51.0044468Z [1814/7581] 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:19:51.0168562Z [1815/7581] 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:19:51.0913113Z [1816/7581] 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:19:51.0993274Z [1817/7581] 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:19:51.1018289Z [1818/7581] 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:19:51.1090951Z [1819/7581] 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:19:51.1660030Z [1820/7581] 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:19:51.8395358Z [1821/7581] 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:19:52.1930922Z [1822/7581] 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:19:52.2401416Z [1823/7581] 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:19:52.2499538Z [1824/7581] 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:19:52.2595502Z [1825/7581] 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:19:52.2680237Z [1826/7581] 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:19:52.3065234Z [1827/7581] 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:19:52.3383281Z [1828/7581] 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:19:52.8557078Z [1829/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-04-25T04:19:53.2415142Z [1830/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-04-25T04:19:53.3429650Z [1831/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-04-25T04:19:53.3515849Z [1832/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-04-25T04:19:53.3670418Z [1833/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-04-25T04:19:53.3777302Z [1834/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-04-25T04:19:53.4363565Z [1835/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-04-25T04:19:53.4990705Z [1836/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-04-25T04:19:53.9546872Z [1837/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-04-25T04:19:54.3230119Z [1838/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-04-25T04:19:54.3969307Z [1839/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-04-25T04:19:54.3988378Z [1840/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-04-25T04:19:54.4287962Z [1841/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-04-25T04:19:54.4512337Z [1842/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-04-25T04:19:54.5183193Z [1843/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-04-25T04:19:54.6488468Z [1844/7581] 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:19:55.1651734Z [1845/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-04-25T04:19:55.5541293Z [1846/7581] 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:19:55.5875540Z [1847/7581] 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:19:55.6070995Z [1848/7581] 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:19:55.6170719Z [1849/7581] 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:19:55.6516575Z [1850/7581] 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:19:55.6829792Z [1851/7581] 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:19:55.8235917Z [1852/7581] 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:19:56.2011182Z [1853/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-04-25T04:19:56.8156475Z [1854/7581] 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:19:56.8343011Z [1855/7581] 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:19:56.8449634Z [1856/7581] 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:19:56.8557862Z [1857/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-04-25T04:19:56.8670558Z [1858/7581] 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:19:56.8992806Z [1859/7581] 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:19:57.0194984Z [1860/7581] 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:19:57.4100399Z [1861/7581] 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:19:57.9884047Z [1862/7581] 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:19:58.0258480Z [1863/7581] 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:19:58.0346907Z [1864/7581] 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:19:58.0838106Z [1865/7581] 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:19:58.0969880Z [1866/7581] 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:19:58.1248436Z [1867/7581] 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:19:58.2305501Z [1868/7581] 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:19:58.6032674Z [1869/7581] 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:19:59.1867101Z [1870/7581] 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:19:59.2619468Z [1871/7581] 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:19:59.2724941Z [1872/7581] 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:19:59.2848310Z [1873/7581] 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:19:59.2942582Z [1874/7581] 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:19:59.3509086Z [1875/7581] 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:19:59.3963803Z [1876/7581] 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:19:59.8560935Z [1877/7581] 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:20:00.4323929Z [1878/7581] 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:20:00.4464320Z [1879/7581] 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:20:00.4986034Z [1880/7581] 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:20:00.5234871Z [1881/7581] 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:20:00.5471643Z [1882/7581] 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:20:00.5740101Z [1883/7581] 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:20:00.5979699Z [1884/7581] 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:20:00.9949187Z [1885/7581] 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:20:01.5692887Z [1886/7581] 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:20:01.6005044Z [1887/7581] 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:20:01.7319175Z [1888/7581] 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:20:01.7404503Z [1889/7581] 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:20:01.7483575Z [1890/7581] 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:20:01.8174965Z [1891/7581] 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:20:01.8655873Z [1892/7581] 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:20:02.1977261Z [1893/7581] 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:20:02.8257030Z [1894/7581] 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:20:02.8633531Z [1895/7581] 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:20:02.8946814Z [1896/7581] 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:20:02.9300058Z [1897/7581] 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:20:02.9578477Z [1898/7581] 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:20:03.0246284Z [1899/7581] 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:20:03.2141146Z [1900/7581] 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:20:03.3733375Z [1901/7581] 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:20:04.0524659Z [1902/7581] 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:20:04.0793802Z [1903/7581] 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:20:04.0816009Z [1904/7581] 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:20:04.1005968Z [1905/7581] 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:20:04.1801801Z [1906/7581] 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:20:04.1978061Z [1907/7581] 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:20:04.3883044Z [1908/7581] 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:20:04.5774648Z [1909/7581] 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:20:04.6245337Z [1910/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-04-25T04:20:04.7009438Z [1911/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-04-25T04:20:04.7123332Z [1912/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-04-25T04:20:04.7601932Z [1913/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-04-25T04:20:05.2736199Z [1914/7581] 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:20:05.3122481Z [1915/7581] 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:20:05.3852767Z [1916/7581] 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:20:05.4047951Z [1917/7581] 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:20:05.4628770Z [1918/7581] 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:20:05.6730943Z [1919/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-04-25T04:20:05.8240552Z [1920/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-04-25T04:20:05.8527855Z [1921/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-04-25T04:20:05.9239679Z [1922/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-04-25T04:20:05.9240750Z 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:20:05.9241881Z 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:20:05.9242936Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-04-25T04:20:05.9599415Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'NOGDI' 2025-04-25T04:20:05.9601297Z [1923/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-04-25T04:20:06.2493874Z [1924/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-04-25T04:20:06.3070046Z [1925/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-04-25T04:20:06.4156201Z [1926/7581] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-04-25T04:20:06.5088336Z [1927/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-04-25T04:20:06.5895172Z [1928/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiCallbackApi.cpp.obj 2025-04-25T04:20:06.6247839Z [1929/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiMetricApi.cpp.obj 2025-04-25T04:20:06.6524026Z [1930/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiEventApi.cpp.obj 2025-04-25T04:20:06.6648782Z [1931/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfiler.cpp.obj 2025-04-25T04:20:06.7265969Z [1932/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-04-25T04:20:06.7513896Z [1933/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerConfig.cpp.obj 2025-04-25T04:20:06.8122367Z [1934/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiNvPerfMetric.cpp.obj 2025-04-25T04:20:06.8534082Z [1935/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\WeakSymbols.cpp.obj 2025-04-25T04:20:06.9381764Z [1936/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerApi.cpp.obj 2025-04-25T04:20:07.0317237Z [1937/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\cupti_strings.cpp.obj 2025-04-25T04:20:07.1866412Z [1938/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-04-25T04:20:07.2755257Z [1939/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfilerController.cpp.obj 2025-04-25T04:20:07.3091754Z [1940/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfiler.cpp.obj 2025-04-25T04:20:07.3093777Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\numeric(34): warning C4244: '=': conversion from '_Ty' to '_Ty', possible loss of data 2025-04-25T04:20:07.3094730Z with 2025-04-25T04:20:07.3094971Z [ 2025-04-25T04:20:07.3095208Z _Ty=int64_t 2025-04-25T04:20:07.3095483Z ] 2025-04-25T04:20:07.3095764Z and 2025-04-25T04:20:07.3096139Z [ 2025-04-25T04:20:07.3096466Z _Ty=unsigned long 2025-04-25T04:20:07.3097147Z ] 2025-04-25T04:20:07.3100763Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\EventProfiler.cpp(68): note: see reference to function template instantiation '_Ty std::accumulate>,std::vector>>>>>,unsigned long,libkineto::Event::sumInstance::>(const _InIt,const _InIt,_Ty,_Fn)' being compiled 2025-04-25T04:20:07.3103620Z with 2025-04-25T04:20:07.3103833Z [ 2025-04-25T04:20:07.3104013Z _Ty=unsigned long, 2025-04-25T04:20:07.4053669Z _InIt=std::_List_const_iterator>>, 2025-04-25T04:20:07.4055359Z _Fn=libkineto::Event::sumInstance:: 2025-04-25T04:20:07.4056402Z ] 2025-04-25T04:20:07.4057667Z [1941/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-04-25T04:20:07.4128436Z [1942/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-04-25T04:20:07.5347443Z [1943/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-04-25T04:20:07.5367464Z [1944/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-04-25T04:20:07.5430333Z [1945/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-04-25T04:20:07.5863161Z [1946/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-04-25T04:20:07.6137643Z [1947/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-04-25T04:20:07.6161225Z [1948/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-04-25T04:20:07.7884287Z [1949/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-04-25T04:20:07.8583951Z [1950/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-04-25T04:20:07.8949920Z [1951/7581] Linking CXX static library lib\mimalloc-static.lib 2025-04-25T04:20:07.9608194Z [1952/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-04-25T04:20:07.9716021Z [1953/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-04-25T04:20:08.0048216Z [1954/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-04-25T04:20:08.0115487Z [1955/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-04-25T04:20:08.0819458Z [1956/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-04-25T04:20:08.1147453Z [1957/7581] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-04-25T04:20:08.2532963Z [1958/7581] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-04-25T04:20:08.2618504Z [1959/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-04-25T04:20:08.3735921Z [1960/7581] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-04-25T04:20:08.3816911Z [1961/7581] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-04-25T04:20:08.3892863Z [1962/7581] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-04-25T04:20:08.4084929Z [1963/7581] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-04-25T04:20:08.4610871Z [1964/7581] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-04-25T04:20:08.4769261Z [1965/7581] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-04-25T04:20:08.5164893Z [1966/7581] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-04-25T04:20:08.6404505Z [1967/7581] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-04-25T04:20:08.6553138Z [1968/7581] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-04-25T04:20:08.7268097Z [1969/7581] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-04-25T04:20:08.7611491Z [1970/7581] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-04-25T04:20:08.9019395Z [1971/7581] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-04-25T04:20:08.9252586Z [1972/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-04-25T04:20:08.9322963Z [1973/7581] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-04-25T04:20:08.9881391Z [1974/7581] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-04-25T04:20:09.0425856Z [1975/7581] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-04-25T04:20:09.0725313Z [1976/7581] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-04-25T04:20:09.1149882Z [1977/7581] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-04-25T04:20:09.1318547Z [1978/7581] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-04-25T04:20:09.2789772Z [1979/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-04-25T04:20:09.2850123Z [1980/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-04-25T04:20:09.3846368Z [1981/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-04-25T04:20:09.4063652Z [1982/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-04-25T04:20:09.4233939Z [1983/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-04-25T04:20:09.4517386Z [1984/7581] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-04-25T04:20:09.5884799Z [1985/7581] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-04-25T04:20:09.6304807Z [1986/7581] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-04-25T04:20:09.6543549Z [1987/7581] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-04-25T04:20:09.7171491Z [1988/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-04-25T04:20:09.7444761Z [1989/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-04-25T04:20:09.7533311Z [1990/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-04-25T04:20:09.7561668Z [1991/7581] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-04-25T04:20:09.8172155Z [1992/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-04-25T04:20:09.8316217Z [1993/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-04-25T04:20:09.9298108Z [1994/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-04-25T04:20:10.0941662Z [1995/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-04-25T04:20:10.1184796Z [1996/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-04-25T04:20:10.1326290Z [1997/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-04-25T04:20:10.1776506Z 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:20:10.1778505Z [1998/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-04-25T04:20:10.1988100Z [1999/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-04-25T04:20:10.2131421Z [2000/7581] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-04-25T04:20:10.2574263Z [2001/7581] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-04-25T04:20:10.3277616Z [2002/7581] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-04-25T04:20:10.4028610Z [2003/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-04-25T04:20:10.4134908Z [2004/7581] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-04-25T04:20:10.4913765Z [2005/7581] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-04-25T04:20:10.5050758Z [2006/7581] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-04-25T04:20:10.5272006Z [2007/7581] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-04-25T04:20:10.5435680Z [2008/7581] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-04-25T04:20:10.6810359Z [2009/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-04-25T04:20:10.6826470Z [2010/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-04-25T04:20:10.7102053Z [2011/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-04-25T04:20:10.7463323Z [2012/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-04-25T04:20:10.7714436Z [2013/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-04-25T04:20:10.7826397Z [2014/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-04-25T04:20:10.7919880Z [2015/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-04-25T04:20:10.8418742Z [2016/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-04-25T04:20:10.9456551Z [2017/7581] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-04-25T04:20:10.9580628Z [2018/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-04-25T04:20:10.9657990Z [2019/7581] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-04-25T04:20:10.9812887Z [2020/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-04-25T04:20:11.0095367Z [2021/7581] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-04-25T04:20:11.0542848Z [2022/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-04-25T04:20:11.0982033Z [2023/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-04-25T04:20:11.1475742Z [2024/7581] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-04-25T04:20:11.2574126Z [2025/7581] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-04-25T04:20:11.2589293Z [2026/7581] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-04-25T04:20:11.2757998Z [2027/7581] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-04-25T04:20:11.2823600Z [2028/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-04-25T04:20:11.3012093Z [2029/7581] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-04-25T04:20:11.3317278Z [2030/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-04-25T04:20:11.3563638Z [2031/7581] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-04-25T04:20:11.4517891Z [2032/7581] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-04-25T04:20:11.4587807Z [2033/7581] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-04-25T04:20:11.4854617Z [2034/7581] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-04-25T04:20:11.5395122Z [2035/7581] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-04-25T04:20:11.5718286Z [2036/7581] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-04-25T04:20:11.5792442Z [2037/7581] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-04-25T04:20:11.7100729Z [2038/7581] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-04-25T04:20:11.7271197Z [2039/7581] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-04-25T04:20:11.7585000Z [2040/7581] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-04-25T04:20:11.7871546Z [2041/7581] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-04-25T04:20:11.8408375Z [2042/7581] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-04-25T04:20:11.9061393Z [2043/7581] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-04-25T04:20:11.9131384Z [2044/7581] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-04-25T04:20:11.9153225Z [2045/7581] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-04-25T04:20:11.9849803Z [2046/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.0351115Z [2047/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.0420068Z [2048/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.0547747Z [2049/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.0602307Z [2050/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.1071628Z [2051/7581] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-04-25T04:20:12.1545024Z [2052/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.1558105Z [2053/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.1675020Z [2054/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.2111732Z [2055/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.2352930Z [2056/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.2366895Z [2057/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.2513463Z [2058/7581] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-04-25T04:20:12.2705226Z [2059/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.3170533Z [2060/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.3403004Z [2061/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.3854827Z [2062/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.3984844Z [2063/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.4233751Z [2064/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.4454388Z [2065/7581] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.4470659Z [2066/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.4766818Z [2067/7581] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.5262514Z [2068/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.5494205Z [2069/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.5678791Z [2070/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.5802975Z [2071/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.5904773Z [2072/7581] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.6034680Z [2073/7581] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.6166534Z [2074/7581] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.6262416Z [2075/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.6988882Z [2076/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.7042542Z [2077/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.7168879Z [2078/7581] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.7732341Z [2079/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.7784118Z [2080/7581] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.7830549Z [2081/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.7909980Z [2082/7581] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.8031301Z [2083/7581] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.8104938Z [2084/7581] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.8777062Z [2085/7581] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-04-25T04:20:12.8953000Z [2086/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-04-25T04:20:12.9036873Z [2087/7581] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-04-25T04:20:12.9167667Z [2088/7581] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.9226850Z [2089/7581] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-04-25T04:20:12.9284467Z [2090/7581] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-04-25T04:20:12.9501439Z [2091/7581] Linking C static library lib\libittnotify.lib 2025-04-25T04:20:12.9521124Z [2092/7581] Linking CXX static library lib\XNNPACK.lib 2025-04-25T04:20:12.9788883Z [2093/7581] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-04-25T04:20:12.9822360Z [2094/7581] Linking CXX static library lib\gloo.lib 2025-04-25T04:20:12.9887670Z [2095/7581] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-04-25T04:20:13.4174431Z [2096/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_halving_doubling.cc.obj 2025-04-25T04:20:13.4298870Z [2097/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring.cc.obj 2025-04-25T04:20:13.4418427Z [2098/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_bcube.cc.obj 2025-04-25T04:20:13.4419592Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmemory(674): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-04-25T04:20:13.4421448Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(708): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&,const size_t&>(_Alloc &,_Objty *const ,int &,const size_t &)' being compiled 2025-04-25T04:20:13.4422987Z with 2025-04-25T04:20:13.4423164Z [ 2025-04-25T04:20:13.4423415Z _Alloc=std::allocator, 2025-04-25T04:20:13.4423755Z _Ty=gloo::cuda::bcube::Node, 2025-04-25T04:20:13.4424040Z _Objty=gloo::cuda::bcube::Node 2025-04-25T04:20:13.4424309Z ] 2025-04-25T04:20:13.4425453Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(713): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&,const size_t&>(_Alloc &,_Objty *const ,int &,const size_t &)' being compiled 2025-04-25T04:20:13.4426667Z with 2025-04-25T04:20:13.4426850Z [ 2025-04-25T04:20:13.4427077Z _Alloc=std::allocator, 2025-04-25T04:20:13.4427417Z _Ty=gloo::cuda::bcube::Node, 2025-04-25T04:20:13.4427700Z _Objty=gloo::cuda::bcube::Node 2025-04-25T04:20:13.4427971Z ] 2025-04-25T04:20:13.4429088Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(726): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(int &,const size_t &)' being compiled 2025-04-25T04:20:13.4430290Z with 2025-04-25T04:20:13.4430471Z [ 2025-04-25T04:20:13.4430659Z _Ty=gloo::cuda::bcube::Node 2025-04-25T04:20:13.4430919Z ] 2025-04-25T04:20:13.4431906Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(298): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(int &,const size_t &)' being compiled 2025-04-25T04:20:13.4432973Z with 2025-04-25T04:20:13.4433141Z [ 2025-04-25T04:20:13.4433351Z _Ty=gloo::cuda::bcube::Node 2025-04-25T04:20:13.4433617Z ] 2025-04-25T04:20:13.4492413Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(296): note: while compiling class template member function 'void gloo::CudaAllreduceBcube>::createNodes(void)' 2025-04-25T04:20:13.4495890Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(508): note: see reference to class template instantiation 'gloo::CudaAllreduceBcube>' being compiled 2025-04-25T04:20:13.4498604Z [2099/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_local.cc.obj 2025-04-25T04:20:13.4917808Z [2100/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring_chunked.cc.obj 2025-04-25T04:20:13.5399124Z [2101/7581] Linking CXX shared library bin\fbgemm.dll 2025-04-25T04:20:13.6843650Z [2102/7581] Linking CXX static library lib\kineto.lib 2025-04-25T04:20:13.8766814Z [2103/7581] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_broadcast_one_to_all.cc.obj 2025-04-25T04:20:13.8939089Z [2104/7581] Linking CXX static library lib\onnx.lib 2025-04-25T04:20:14.0559836Z [2105/7581] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda.cu.obj 2025-04-25T04:20:14.2019212Z cuda.cu 2025-04-25T04:20:14.2019928Z tmpxft_00000d68_00000000-7_cuda.cudafe1.cpp 2025-04-25T04:20:14.2020885Z [2106/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAAllocatorConfig.cpp.obj 2025-04-25T04:20:14.3453035Z [2107/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDADeviceAssertionHost.cpp.obj 2025-04-25T04:20:14.3507302Z [2108/7581] Linking CXX shared library bin\c10.dll 2025-04-25T04:20:14.4253711Z [2109/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAException.cpp.obj 2025-04-25T04:20:14.4326308Z [2110/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDACachingAllocator.cpp.obj 2025-04-25T04:20:14.5424382Z [2111/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMiscFunctions.cpp.obj 2025-04-25T04:20:14.5540564Z [2112/7581] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_private.cu.obj 2025-04-25T04:20:14.6289166Z cuda_private.cu 2025-04-25T04:20:14.6289794Z tmpxft_000016a4_00000000-7_cuda_private.cudafe1.cpp 2025-04-25T04:20:14.6290839Z [2113/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\driver_api.cpp.obj 2025-04-25T04:20:14.6376279Z [2114/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAFunctions.cpp.obj 2025-04-25T04:20:14.7195007Z [2115/7581] Linking C static library sleef\lib\sleef.lib 2025-04-25T04:20:14.8135552Z [2116/7581] Linking CXX static library lib\gloo_cuda.lib 2025-04-25T04:20:14.8633765Z [2117/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMallocAsyncAllocator.cpp.obj 2025-04-25T04:20:14.8793480Z [2118/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDAGuardImpl.cpp.obj 2025-04-25T04:20:14.9355928Z [2119/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDATest.cpp.obj 2025-04-25T04:20:14.9472532Z [2120/7581] Generating ../../../torch/utils/data/datapipes/datapipe.pyi 2025-04-25T04:20:14.9736690Z [2121/7581] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAStream.cpp.obj 2025-04-25T04:20:15.1417162Z [2122/7581] Linking CXX shared library bin\c10_cuda.dll 2025-04-25T04:20:15.3084902Z [2123/7581] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-04-25T04:20:15.3692190Z [2124/7581] Linking CXX static library lib\gtest.lib 2025-04-25T04:20:15.4747266Z [2125/7581] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-04-25T04:20:15.5727149Z [2126/7581] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-04-25T04:20:15.6211750Z [2127/7581] Regenerating version file... 2025-04-25T04:20:15.6637684Z [2128/7581] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-04-25T04:20:15.8155394Z [2129/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-04-25T04:20:15.8509870Z [2130/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-04-25T04:20:15.8661877Z [2131/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-04-25T04:20:16.0224475Z [2132/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-04-25T04:20:16.1339129Z [2133/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-04-25T04:20:16.2316176Z [2134/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-04-25T04:20:16.2686401Z [2135/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-04-25T04:20:16.4081116Z [2136/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-04-25T04:20:16.4436830Z [2137/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-04-25T04:20:16.4772544Z [2138/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-04-25T04:20:16.5316188Z [2139/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-04-25T04:20:16.6872349Z [2140/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-04-25T04:20:16.7039274Z [2141/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-04-25T04:20:16.7478554Z [2142/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-04-25T04:20:16.9626981Z [2143/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-04-25T04:20:16.9881558Z [2144/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-04-25T04:20:17.0546559Z [2145/7581] Generating sources 2025-04-25T04:20:17.1903348Z [2146/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sleep.cc.obj 2025-04-25T04:20:17.2996553Z [2147/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-04-25T04:20:17.3857353Z [2148/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-04-25T04:20:18.9701110Z [2149/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-04-25T04:20:18.9718327Z [2150/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-04-25T04:20:18.9794669Z [2151/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-04-25T04:20:19.2058987Z [2152/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-04-25T04:20:19.2192128Z [2153/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-04-25T04:20:19.3514022Z [2154/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-04-25T04:20:19.3859984Z [2155/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-04-25T04:20:19.3879045Z [2156/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-04-25T04:20:19.4791763Z [2157/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-04-25T04:20:19.7564367Z [2158/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-04-25T04:20:20.0212186Z [2159/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-04-25T04:20:20.4374667Z [2160/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-04-25T04:20:20.4396510Z [2161/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-04-25T04:20:20.4415991Z [2162/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-04-25T04:20:20.4433962Z [2163/7581] 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:20:20.4452125Z [2164/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-04-25T04:20:20.4729480Z [2165/7581] Linking CXX static library lib\dnnl.lib 2025-04-25T04:20:20.7148949Z [2166/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-04-25T04:20:20.7218313Z [2167/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-04-25T04:20:20.7330180Z [2168/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-04-25T04:20:20.7348024Z [2169/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-04-25T04:20:20.7554077Z [2170/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-04-25T04:20:20.9416448Z [2171/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-04-25T04:20:20.9542240Z [2172/7581] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-04-25T04:20:20.9812334Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-04-25T04:20:20.9812692Z 2025-04-25T04:20:20.9812697Z 2025-04-25T04:20:20.9812880Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-04-25T04:20:20.9813183Z 2025-04-25T04:20:20.9813187Z 2025-04-25T04:20:20.9813192Z 2025-04-25T04:20:20.9813197Z 2025-04-25T04:20:20.9813730Z [2173/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-04-25T04:20:20.9953212Z [2174/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-04-25T04:20:20.9969363Z [2175/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-04-25T04:20:21.0058025Z [2176/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-04-25T04:20:21.0704989Z [2177/7581] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-04-25T04:20:21.1237096Z [2178/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-04-25T04:20:21.1415006Z [2179/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-04-25T04:20:21.2121113Z [2180/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-04-25T04:20:21.2413461Z [2181/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-04-25T04:20:21.3163304Z [2182/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-04-25T04:20:21.3401696Z [2183/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-04-25T04:20:21.3566320Z [2184/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-04-25T04:20:21.3664685Z [2185/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-04-25T04:20:21.3685666Z [2186/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-04-25T04:20:21.3918809Z [2187/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-04-25T04:20:21.4045456Z [2188/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-04-25T04:20:21.4273731Z [2189/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-04-25T04:20:21.4649269Z [2190/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-04-25T04:20:21.4940224Z [2191/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-04-25T04:20:21.5003718Z [2192/7581] 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:20:21.5213997Z [2193/7581] 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:20:21.5475431Z [2194/7581] 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:20:21.5783553Z [2195/7581] 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:20:21.6045730Z [2196/7581] 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:20:21.6225853Z [2197/7581] 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:20:21.6446469Z [2198/7581] 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:20:21.6660461Z [2199/7581] 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:20:21.6929687Z [2200/7581] 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:20:21.7138796Z [2201/7581] 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:20:21.7448260Z [2202/7581] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-04-25T04:20:21.7774707Z [2203/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-04-25T04:20:21.7789686Z [2204/7581] 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:20:21.7849844Z [2205/7581] 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:20:21.8107541Z [2206/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-04-25T04:20:21.8320816Z [2207/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-04-25T04:20:21.8811356Z [2208/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-04-25T04:20:21.8874670Z [2209/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-04-25T04:20:21.8982207Z [2210/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-04-25T04:20:21.9174960Z [2211/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-04-25T04:20:21.9283367Z [2212/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-04-25T04:20:21.9566520Z [2213/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-04-25T04:20:21.9925227Z [2214/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-04-25T04:20:22.0051269Z [2215/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-04-25T04:20:22.0195761Z [2216/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-04-25T04:20:22.0308321Z [2217/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-04-25T04:20:22.0460642Z [2218/7581] 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:20:22.0765830Z [2219/7581] 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:20:22.1246243Z [2220/7581] 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:20:22.1800727Z [2221/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-04-25T04:20:22.1863540Z [2222/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:20:22.1878280Z [2223/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-04-25T04:20:22.1971108Z [2224/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:20:22.2343844Z [2225/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-04-25T04:20:22.2514914Z [2226/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-04-25T04:20:22.3178412Z [2227/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:20:22.3245078Z [2228/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-04-25T04:20:22.3261785Z [2229/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-04-25T04:20:22.3409545Z [2230/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-04-25T04:20:22.3835186Z [2231/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-04-25T04:20:22.4014748Z [2232/7581] 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:20:22.4471103Z [2233/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-04-25T04:20:22.4686763Z [2234/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-04-25T04:20:22.5066037Z [2235/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-04-25T04:20:22.5232296Z [2236/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-04-25T04:20:22.5420313Z [2237/7581] 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:20:22.5830632Z [2238/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-04-25T04:20:22.5969446Z [2239/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-04-25T04:20:22.6035266Z [2240/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-04-25T04:20:22.6342311Z [2241/7581] 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:20:22.6527834Z [2242/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:20:22.6812118Z [2243/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:20:22.7216622Z [2244/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-04-25T04:20:22.7330802Z [2245/7581] 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:20:22.7416023Z [2246/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:20:22.7779259Z [2247/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:20:22.8025896Z [2248/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-04-25T04:20:22.8309162Z [2249/7581] 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:20:22.8545165Z [2250/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-04-25T04:20:22.8826215Z [2251/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-04-25T04:20:22.9068479Z [2252/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-04-25T04:20:22.9333305Z [2253/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-04-25T04:20:22.9346844Z [2254/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-04-25T04:20:22.9685329Z [2255/7581] 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:20:22.9963055Z [2256/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-04-25T04:20:23.0260332Z [2257/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-04-25T04:20:23.0417011Z [2258/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-04-25T04:20:23.0810140Z [2259/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-04-25T04:20:23.1082970Z [2260/7581] 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:20:23.1209819Z [2261/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-04-25T04:20:23.1434977Z [2262/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-04-25T04:20:23.1767708Z [2263/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-04-25T04:20:23.1870230Z [2264/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-04-25T04:20:23.2391357Z [2265/7581] 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:20:23.2479005Z [2266/7581] 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:20:23.2691427Z [2267/7581] 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:20:23.2806688Z [2268/7581] 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:20:23.3450891Z [2269/7581] 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:20:23.3699110Z [2270/7581] 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:20:23.3716250Z [2271/7581] 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:20:23.3732328Z [2272/7581] 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:20:23.3899332Z [2273/7581] 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:20:23.4141791Z [2274/7581] 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:20:23.4789002Z [2275/7581] 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:20:23.5041461Z [2276/7581] 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:20:23.5098912Z [2277/7581] 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:20:23.5240487Z [2278/7581] 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:20:23.5469780Z [2279/7581] 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:20:23.5534811Z [2280/7581] 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:20:23.6086603Z [2281/7581] 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:20:23.6556210Z [2282/7581] 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:20:23.6736451Z [2283/7581] 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:20:23.6758577Z [2284/7581] 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:20:23.6815322Z [2285/7581] 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:20:23.6868763Z [2286/7581] 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:20:23.7682441Z [2287/7581] 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:20:23.7907415Z [2288/7581] 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:20:23.8051647Z [2289/7581] 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:20:23.8143460Z [2290/7581] 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:20:23.8250254Z [2291/7581] 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:20:23.8537518Z [2292/7581] 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:20:23.9128652Z [2293/7581] 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:20:23.9311740Z [2294/7581] 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:20:23.9498583Z [2295/7581] 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:20:23.9565520Z [2296/7581] 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:20:23.9684439Z [2297/7581] 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:20:23.9702043Z [2298/7581] 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:20:24.0411791Z [2299/7581] 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:20:24.0516989Z [2300/7581] 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:20:24.1018093Z [2301/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-04-25T04:20:24.1031346Z [2302/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-04-25T04:20:24.1258182Z [2303/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-04-25T04:20:24.1340241Z [2304/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-04-25T04:20:24.1717631Z [2305/7581] 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:20:24.1929486Z [2306/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-04-25T04:20:24.2168192Z [2307/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-04-25T04:20:24.2265507Z [2308/7581] 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:20:24.2462067Z [2309/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-04-25T04:20:24.2648233Z [2310/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-04-25T04:20:24.2860391Z [2311/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-04-25T04:20:24.3260588Z [2312/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-04-25T04:20:24.3495460Z [2313/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-04-25T04:20:24.3764573Z [2314/7581] 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:20:24.4583048Z [2315/7581] 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:20:24.4986641Z [2316/7581] 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:20:24.5046056Z [2317/7581] 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:20:24.5059516Z [2318/7581] 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:20:24.5113851Z [2319/7581] 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:20:24.5282019Z [2320/7581] 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:20:24.5995930Z [2321/7581] 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:20:24.6490072Z [2322/7581] 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:20:24.6612552Z [2323/7581] 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:20:24.6630698Z [2324/7581] 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:20:24.6701418Z [2325/7581] 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:20:24.6716669Z [2326/7581] 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:20:24.7587169Z [2327/7581] 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:20:24.7696363Z [2328/7581] 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:20:24.7829848Z [2329/7581] 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:20:24.7994280Z [2330/7581] 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:20:24.8059937Z [2331/7581] 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:20:24.8403819Z [2332/7581] 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:20:24.8815971Z [2333/7581] 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:20:24.8903020Z [2334/7581] 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:20:24.8961875Z [2335/7581] 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:20:24.9208404Z [2336/7581] 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:20:24.9482952Z [2337/7581] 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:20:24.9605508Z [2338/7581] 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:20:25.0097853Z [2339/7581] 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:20:25.0185044Z [2340/7581] 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:20:25.0256669Z [2341/7581] 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:20:25.0314438Z [2342/7581] 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:20:25.1425389Z [2343/7581] 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:20:25.1438664Z [2344/7581] 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:20:25.1451225Z [2345/7581] 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:20:25.1462184Z [2346/7581] 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:20:25.1474742Z [2347/7581] 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:20:25.1688514Z [2348/7581] 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:20:25.2524154Z [2349/7581] 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:20:25.2770004Z [2350/7581] 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:20:25.2862280Z [2351/7581] 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:20:25.2885861Z [2352/7581] 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:20:25.3031587Z [2353/7581] 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:20:25.3439342Z [2354/7581] 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:20:25.3585876Z [2355/7581] 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:20:25.4017745Z [2356/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-04-25T04:20:25.4074683Z [2357/7581] 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:20:25.4196717Z [2358/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-04-25T04:20:25.4501355Z [2359/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-04-25T04:20:25.4671625Z [2360/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-04-25T04:20:25.4811739Z [2361/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-04-25T04:20:25.5245023Z [2362/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-04-25T04:20:25.5260469Z [2363/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-04-25T04:20:25.5701421Z [2364/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-04-25T04:20:25.5719363Z [2365/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-04-25T04:20:25.5856002Z [2366/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-04-25T04:20:25.6054560Z [2367/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-04-25T04:20:25.6334414Z [2368/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-04-25T04:20:25.6835681Z [2369/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-04-25T04:20:25.6968588Z [2370/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-04-25T04:20:25.7022894Z [2371/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-04-25T04:20:25.7077742Z [2372/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-04-25T04:20:25.7149324Z [2373/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-04-25T04:20:25.7437152Z [2374/7581] 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:20:25.8233825Z [2375/7581] 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:20:25.8286943Z [2376/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-04-25T04:20:25.8355407Z [2377/7581] 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:20:25.8509910Z [2378/7581] 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:20:25.8611171Z [2379/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-04-25T04:20:25.8679093Z [2380/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-04-25T04:20:25.9494949Z [2381/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-04-25T04:20:25.9630803Z [2382/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-04-25T04:20:25.9878563Z [2383/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-04-25T04:20:25.9893113Z [2384/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-04-25T04:20:25.9984294Z [2385/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-04-25T04:20:26.0721342Z [2386/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-04-25T04:20:26.0827294Z [2387/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-04-25T04:20:26.0884341Z [2388/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-04-25T04:20:26.1185149Z [2389/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-04-25T04:20:26.1284039Z [2390/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-04-25T04:20:26.1299303Z [2391/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-04-25T04:20:26.1916862Z [2392/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-04-25T04:20:26.2034982Z [2393/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-04-25T04:20:26.2338406Z [2394/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-04-25T04:20:26.2445884Z [2395/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-04-25T04:20:26.2558421Z [2396/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-04-25T04:20:26.5245447Z [2397/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-04-25T04:20:26.5265425Z [2398/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-04-25T04:20:26.5283707Z [2399/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-04-25T04:20:26.5300057Z [2400/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-04-25T04:20:26.5315323Z [2401/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-04-25T04:20:26.5331432Z [2402/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-04-25T04:20:26.6524669Z [2403/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-04-25T04:20:26.6584372Z [2404/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-04-25T04:20:26.6760429Z [2405/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-04-25T04:20:26.6822015Z [2406/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-04-25T04:20:26.6836212Z [2407/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-04-25T04:20:26.7061595Z [2408/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-04-25T04:20:26.7747885Z [2409/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-04-25T04:20:26.7964399Z [2410/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-04-25T04:20:26.8030662Z [2411/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-04-25T04:20:26.8099758Z [2412/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-04-25T04:20:26.8115489Z [2413/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-04-25T04:20:26.8381202Z [2414/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-04-25T04:20:26.8944877Z [2415/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-04-25T04:20:26.9200768Z [2416/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-04-25T04:20:26.9356958Z [2417/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-04-25T04:20:26.9425037Z [2418/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-04-25T04:20:26.9496327Z [2419/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-04-25T04:20:27.0160935Z [2420/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-04-25T04:20:27.0281360Z [2421/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-04-25T04:20:27.0565551Z [2422/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-04-25T04:20:27.0790920Z [2423/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-04-25T04:20:27.1119541Z [2424/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-04-25T04:20:27.1205694Z [2425/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-04-25T04:20:27.1302626Z [2426/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-04-25T04:20:27.1685487Z [2427/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-04-25T04:20:27.1783410Z [2428/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-04-25T04:20:27.2020207Z [2429/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-04-25T04:20:27.2435122Z [2430/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-04-25T04:20:27.2579429Z [2431/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-04-25T04:20:27.2961053Z [2432/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-04-25T04:20:27.3233979Z [2433/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-04-25T04:20:27.3576150Z [2434/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-04-25T04:20:27.3649188Z [2435/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-04-25T04:20:27.3740917Z [2436/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-04-25T04:20:27.3811023Z [2437/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-04-25T04:20:27.4147360Z [2438/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-04-25T04:20:27.4231433Z [2439/7581] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi 2025-04-25T04:20:27.4499393Z [2440/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-04-25T04:20:27.4974181Z [2441/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-04-25T04:20:27.4989246Z [2442/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-04-25T04:20:27.5100719Z [2443/7581] 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:20:27.5609610Z [2444/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-04-25T04:20:27.5623254Z [2445/7581] 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:20:27.5849559Z [2446/7581] 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:20:27.6202715Z [2447/7581] 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:20:27.6410099Z [2448/7581] 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:20:27.6480094Z [2449/7581] 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:20:27.6544113Z [2450/7581] 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:20:27.6851570Z [2451/7581] 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:20:27.7040769Z [2452/7581] 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:20:27.7153329Z [2453/7581] 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:20:27.7473005Z [2454/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-04-25T04:20:27.7762923Z [2455/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-04-25T04:20:27.7850319Z [2456/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-04-25T04:20:27.7989846Z [2457/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-04-25T04:20:27.8271949Z [2458/7581] 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:20:27.8287908Z [2459/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-04-25T04:20:27.8366118Z [2460/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-04-25T04:20:27.8616318Z [2461/7581] 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:20:27.9120231Z [2462/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-04-25T04:20:27.9186396Z [2463/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-04-25T04:20:27.9573090Z [2464/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-04-25T04:20:27.9733665Z [2465/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-04-25T04:20:27.9758681Z [2466/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-04-25T04:20:27.9830159Z [2467/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-04-25T04:20:28.0092642Z [2468/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-04-25T04:20:28.0316516Z [2469/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-04-25T04:20:28.0423660Z [2470/7581] 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:20:28.1086687Z [2471/7581] 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:20:28.1151622Z [2472/7581] 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:20:28.1413549Z [2473/7581] 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:20:28.1431733Z [2474/7581] 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:20:28.1509333Z [2475/7581] 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:20:28.1585408Z [2476/7581] 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:20:28.1601017Z [2477/7581] 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:20:28.2540803Z [2478/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-04-25T04:20:28.2607004Z [2479/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-04-25T04:20:28.2900055Z [2480/7581] 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:20:28.2986157Z [2481/7581] 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:20:28.3163398Z [2482/7581] 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:20:28.3225051Z [2483/7581] 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:20:28.3323961Z [2484/7581] 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:20:28.4190421Z [2485/7581] 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:20:28.4533283Z [2486/7581] 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:20:28.4548339Z [2487/7581] 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:20:28.4722847Z [2488/7581] 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:20:28.4737627Z [2489/7581] 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:20:28.4839080Z [2490/7581] 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:20:28.5080552Z [2491/7581] 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:20:28.5563518Z [2492/7581] 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:20:28.6097055Z [2493/7581] 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:20:28.6327483Z [2494/7581] 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:20:28.6385512Z [2495/7581] 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:20:28.6446236Z [2496/7581] 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:20:28.6564540Z [2497/7581] 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:20:28.6835881Z [2498/7581] 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:20:28.7076702Z [2499/7581] 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:20:28.7681552Z [2500/7581] 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:20:28.7752318Z [2501/7581] 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:20:28.7880343Z [2502/7581] 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:20:28.7991183Z [2503/7581] 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:20:28.8048099Z [2504/7581] 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:20:28.8625368Z [2505/7581] 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:20:28.8880316Z [2506/7581] 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:20:28.9132785Z [2507/7581] 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:20:28.9219643Z [2508/7581] 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:20:28.9237869Z [2509/7581] 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:20:28.9302798Z [2510/7581] 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:20:28.9373891Z [2511/7581] 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:20:28.9943646Z [2512/7581] 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:20:29.0210588Z [2513/7581] 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:20:29.0548328Z [2514/7581] 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:20:29.0622612Z [2515/7581] 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:20:29.0732244Z [2516/7581] 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:20:29.0827682Z [2517/7581] 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:20:29.1030140Z [2518/7581] 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:20:29.1395513Z [2519/7581] 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:20:29.1575273Z [2520/7581] 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:20:29.1950555Z [2521/7581] 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:20:29.2064886Z [2522/7581] 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:20:29.2118324Z [2523/7581] 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:20:29.2198974Z [2524/7581] 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:20:29.2580707Z [2525/7581] 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:20:29.2711625Z [2526/7581] 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:20:29.3239375Z [2527/7581] 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:20:29.3299428Z [2528/7581] 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:20:29.3383075Z [2529/7581] 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:20:29.3446489Z [2530/7581] 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:20:29.3681829Z [2531/7581] 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:20:29.4087094Z [2532/7581] 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:20:29.4634405Z [2533/7581] 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:20:29.4799446Z [2534/7581] 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:20:29.4853775Z [2535/7581] 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:20:29.4940122Z [2536/7581] 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:20:29.5133537Z [2537/7581] 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:20:29.5325966Z [2538/7581] 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:20:29.5391399Z [2539/7581] 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:20:29.6085430Z [2540/7581] 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:20:29.6205317Z [2541/7581] 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:20:29.6335853Z [2542/7581] 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:20:29.6349006Z [2543/7581] 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:20:29.6500738Z [2544/7581] 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:20:29.6969970Z [2545/7581] 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:20:29.7421252Z [2546/7581] 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:20:29.7582260Z [2547/7581] 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:20:29.7645376Z [2548/7581] 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:20:29.7768092Z [2549/7581] 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:20:29.7782744Z [2550/7581] 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:20:29.7840973Z [2551/7581] 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:20:29.8188087Z [2552/7581] 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:20:29.8558464Z [2553/7581] 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:20:29.8852048Z [2554/7581] 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:20:29.8970052Z [2555/7581] 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:20:29.9047829Z [2556/7581] 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:20:29.9059993Z [2557/7581] 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:20:29.9189119Z [2558/7581] 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:20:29.9377594Z [2559/7581] 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:20:29.9687008Z [2560/7581] 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:20:30.0235427Z [2561/7581] 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:20:30.0301105Z [2562/7581] 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:20:30.0414719Z [2563/7581] 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:20:30.0484776Z [2564/7581] 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:20:30.0559891Z [2565/7581] 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:20:30.0915266Z [2566/7581] 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:20:30.1022914Z [2567/7581] 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:20:30.1594734Z [2568/7581] 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:20:30.1791505Z [2569/7581] 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:20:30.1852770Z [2570/7581] 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:20:30.1867087Z [2571/7581] 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:20:30.2011885Z [2572/7581] 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:20:30.2303361Z [2573/7581] 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:20:30.2583677Z [2574/7581] 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:20:30.2919239Z [2575/7581] 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:20:30.3177568Z [2576/7581] 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:20:30.3242667Z [2577/7581] 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:20:30.3308216Z [2578/7581] 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:20:30.3328445Z [2579/7581] 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:20:30.3927797Z [2580/7581] 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:20:30.3993236Z [2581/7581] 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:20:30.4515050Z [2582/7581] 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:20:30.4749467Z [2583/7581] 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:20:30.4890330Z [2584/7581] 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:20:30.4955688Z [2585/7581] 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:20:30.5174426Z [2586/7581] 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:20:30.5679635Z [2587/7581] 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:20:30.5875568Z [2588/7581] 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:20:30.5949046Z [2589/7581] 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:20:30.6295713Z [2590/7581] 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:20:30.6309736Z [2591/7581] 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:20:30.6491854Z [2592/7581] 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:20:30.7056382Z [2593/7581] 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:20:30.7219255Z [2594/7581] 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:20:30.7409663Z [2595/7581] 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:20:30.7428888Z [2596/7581] 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:20:30.7700056Z [2597/7581] 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:20:30.7914004Z [2598/7581] 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:20:30.8259013Z [2599/7581] 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:20:30.8408236Z [2600/7581] 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:20:30.8757939Z [2601/7581] 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:20:30.8830811Z [2602/7581] 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:20:30.8972708Z [2603/7581] 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:20:30.9207812Z [2604/7581] 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:20:30.9545402Z [2605/7581] 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:20:30.9787298Z [2606/7581] 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:20:30.9917893Z [2607/7581] 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:20:31.0616869Z [2608/7581] 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:20:31.0777201Z [2609/7581] 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:20:31.0834097Z [2610/7581] 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:20:31.1019734Z [2611/7581] 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:20:31.1230450Z [2612/7581] 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:20:31.1346903Z [2613/7581] 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:20:31.1419098Z [2614/7581] 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:20:31.1846749Z [2615/7581] 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:20:31.2110455Z [2616/7581] 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:20:31.2347871Z [2617/7581] 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:20:31.2439106Z [2618/7581] 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:20:31.2766819Z [2619/7581] 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:20:31.3155642Z [2620/7581] 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:20:31.3543901Z [2621/7581] 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:20:31.3599562Z [2622/7581] 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:20:31.5633985Z [2623/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-04-25T04:20:31.7997773Z [2624/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-04-25T04:20:31.9275734Z [2625/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-04-25T04:20:31.9385169Z [2626/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-04-25T04:20:32.1318091Z [2627/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-04-25T04:20:32.1479131Z [2628/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-04-25T04:20:32.3647527Z [2629/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-04-25T04:20:32.4130111Z [2630/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-04-25T04:20:32.6964967Z [2631/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-04-25T04:20:32.9954246Z [2632/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-04-25T04:20:33.3104739Z [2633/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-04-25T04:20:33.3916881Z [2634/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-04-25T04:20:33.5051562Z [2635/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-04-25T04:20:33.7743188Z [2636/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-04-25T04:20:34.0058460Z [2637/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-04-25T04:20:34.4947920Z [2638/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-04-25T04:20:34.6035865Z [2639/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-04-25T04:20:35.0345137Z [2640/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-04-25T04:20:35.0877175Z [2641/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-04-25T04:20:35.1705214Z [2642/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-04-25T04:20:35.5557965Z [2643/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-04-25T04:20:35.9394264Z [2644/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-04-25T04:20:35.9994663Z [2645/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-04-25T04:20:36.4143348Z [2646/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-04-25T04:20:36.5026984Z [2647/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-04-25T04:20:36.5604418Z [2648/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-04-25T04:20:36.5837355Z [2649/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-04-25T04:20:36.5921976Z [2650/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-04-25T04:20:36.6090152Z [2651/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-04-25T04:20:37.2122875Z [2652/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-04-25T04:20:37.2662081Z [2653/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-04-25T04:20:37.4062854Z [2654/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-04-25T04:20:37.4977952Z [2655/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-04-25T04:20:37.9107162Z [2656/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-04-25T04:20:38.2992700Z [2657/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-04-25T04:20:38.3859738Z [2658/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-04-25T04:20:38.4039320Z [2659/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-04-25T04:20:38.5727235Z [2660/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-04-25T04:20:38.8174345Z [2661/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-04-25T04:20:39.1490898Z [2662/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-04-25T04:20:39.6312934Z [2663/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-04-25T04:20:39.8744600Z [2664/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-04-25T04:20:40.0167577Z [2665/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-04-25T04:20:40.1305986Z [2666/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-04-25T04:20:40.3393650Z [2667/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-04-25T04:20:40.3983384Z [2668/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-04-25T04:20:40.4979647Z [2669/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-04-25T04:20:40.9078377Z [2670/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-04-25T04:20:40.9570026Z [2671/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-04-25T04:20:40.9760913Z [2672/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-04-25T04:20:40.9855196Z [2673/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-04-25T04:20:41.4196510Z [2674/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-04-25T04:20:41.4769359Z [2675/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-04-25T04:20:41.4871325Z [2676/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-04-25T04:20:41.5082130Z [2677/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-04-25T04:20:41.6865588Z [2678/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-04-25T04:20:41.8299069Z [2679/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-04-25T04:20:41.9971544Z [2680/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-04-25T04:20:42.0091598Z [2681/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-04-25T04:20:42.2597483Z [2682/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-04-25T04:20:42.5996847Z [2683/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-04-25T04:20:42.9214317Z [2684/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-04-25T04:20:43.5660838Z [2685/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-04-25T04:20:45.7205607Z [2686/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-04-25T04:20:45.8982178Z [2687/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-04-25T04:20:45.9892198Z [2688/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-04-25T04:20:46.1418081Z [2689/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-04-25T04:20:46.2681370Z [2690/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-04-25T04:20:46.4793731Z [2691/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-04-25T04:20:46.8489936Z [2692/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-04-25T04:20:47.5790704Z [2693/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-04-25T04:20:49.8180678Z [2694/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-04-25T04:20:49.8463086Z [2695/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-04-25T04:20:50.0776719Z [2696/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-04-25T04:20:50.1608176Z [2697/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-04-25T04:20:50.2296451Z [2698/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-04-25T04:20:50.4364892Z [2699/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-04-25T04:20:50.7908203Z [2700/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-04-25T04:20:51.1668165Z [2701/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-04-25T04:20:51.5447270Z [2702/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-04-25T04:20:51.6797386Z [2703/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-04-25T04:20:51.8283065Z [2704/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-04-25T04:20:52.7111275Z [2705/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-04-25T04:20:53.7654512Z [2706/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-04-25T04:20:53.7976289Z [2707/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-04-25T04:20:53.8875148Z [2708/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-04-25T04:20:53.9661057Z [2709/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-04-25T04:20:54.0563828Z [2710/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-04-25T04:20:54.2606311Z [2711/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-04-25T04:20:54.6809428Z [2712/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-04-25T04:20:54.8311583Z [2713/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-04-25T04:20:54.9374450Z [2714/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-04-25T04:20:55.1577695Z [2715/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-04-25T04:20:55.3276566Z [2716/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-04-25T04:20:55.4063222Z [2717/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-04-25T04:20:55.4557003Z [2718/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-04-25T04:20:55.5059115Z [2719/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-04-25T04:20:55.5452702Z [2720/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-04-25T04:20:55.6371285Z [2721/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-04-25T04:20:55.9055650Z [2722/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-04-25T04:20:55.9812502Z [2723/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-04-25T04:20:56.2642642Z [2724/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-04-25T04:20:56.2840560Z [2725/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-04-25T04:20:56.3780769Z [2726/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-04-25T04:20:56.4950234Z [2727/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-04-25T04:20:56.5378962Z [2728/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-04-25T04:20:56.6163314Z [2729/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-04-25T04:20:56.6761641Z [2730/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-04-25T04:20:56.7070207Z [2731/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-04-25T04:20:57.1309140Z [2732/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-04-25T04:20:57.3249134Z [2733/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-04-25T04:20:57.3430381Z [2734/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-04-25T04:20:57.5244262Z [2735/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-04-25T04:20:57.6139952Z [2736/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-04-25T04:20:57.6254676Z [2737/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-04-25T04:20:57.6659556Z [2738/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-04-25T04:20:57.6835405Z [2739/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-04-25T04:20:57.7180939Z [2740/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-04-25T04:20:57.9920683Z [2741/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-04-25T04:20:58.1209487Z [2742/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-04-25T04:20:58.4114107Z [2743/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-04-25T04:20:58.5203541Z [2744/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-04-25T04:20:58.6339011Z [2745/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-04-25T04:20:58.7408554Z [2746/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-04-25T04:20:58.7802862Z [2747/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-04-25T04:20:58.8558039Z [2748/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-04-25T04:20:58.8889036Z [2749/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-04-25T04:20:59.0234031Z [2750/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-04-25T04:20:59.0957543Z [2751/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-04-25T04:20:59.1960971Z [2752/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-04-25T04:20:59.3451148Z [2753/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-04-25T04:20:59.5154885Z [2754/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-04-25T04:20:59.7645286Z [2755/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-04-25T04:20:59.7849576Z [2756/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-04-25T04:20:59.8405141Z [2757/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-04-25T04:20:59.9022325Z [2758/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-04-25T04:20:59.9636333Z [2759/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-04-25T04:21:00.1082439Z [2760/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-04-25T04:21:00.1423152Z [2761/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-04-25T04:21:00.1624736Z [2762/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-04-25T04:21:00.1986915Z [2763/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-04-25T04:21:00.3532566Z [2764/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-04-25T04:21:00.8222416Z [2765/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-04-25T04:21:00.9313735Z [2766/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-04-25T04:21:01.0431914Z [2767/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-04-25T04:21:01.1597271Z [2768/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-04-25T04:21:01.1761366Z [2769/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-04-25T04:21:01.2951086Z [2770/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-04-25T04:21:01.3628574Z [2771/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-04-25T04:21:01.3667505Z [2772/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-04-25T04:21:01.9194323Z [2773/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-04-25T04:21:02.0043282Z [2774/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-04-25T04:21:02.1775160Z [2775/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-04-25T04:21:02.2336526Z [2776/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-04-25T04:21:02.2522717Z [2777/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-04-25T04:21:02.4560336Z [2778/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-04-25T04:21:02.4811520Z [2779/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-04-25T04:21:02.5714056Z [2780/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-04-25T04:21:02.5914151Z [2781/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-04-25T04:21:03.0310183Z [2782/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-04-25T04:21:03.2681456Z [2783/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-04-25T04:21:03.3345745Z [2784/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-04-25T04:21:03.5278441Z [2785/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-04-25T04:21:03.5437277Z [2786/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-04-25T04:21:03.6292999Z [2787/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-04-25T04:21:03.6779347Z [2788/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-04-25T04:21:03.7313406Z [2789/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-04-25T04:21:04.2902530Z [2790/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-04-25T04:21:04.3347730Z [2791/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-04-25T04:21:04.3859174Z [2792/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-04-25T04:21:04.5668438Z [2793/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-04-25T04:21:04.6751855Z [2794/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-04-25T04:21:04.6901147Z [2795/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-04-25T04:21:04.7010652Z [2796/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-04-25T04:21:04.7254850Z [2797/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-04-25T04:21:04.7934981Z [2798/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-04-25T04:21:05.3552214Z [2799/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-04-25T04:21:05.4666409Z [2800/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-04-25T04:21:05.7015138Z [2801/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-04-25T04:21:05.7307496Z [2802/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-04-25T04:21:05.7577451Z [2803/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-04-25T04:21:05.7608229Z [2804/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-04-25T04:21:05.8472812Z [2805/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-04-25T04:21:05.8964758Z [2806/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-04-25T04:21:06.3265893Z [2807/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-04-25T04:21:06.5188648Z [2808/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-04-25T04:21:06.7442978Z [2809/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-04-25T04:21:06.7612224Z [2810/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-04-25T04:21:06.7704963Z [2811/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-04-25T04:21:06.8817437Z [2812/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-04-25T04:21:06.9130910Z [2813/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-04-25T04:21:07.0093489Z [2814/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-04-25T04:21:07.4548449Z [2815/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-04-25T04:21:07.6532454Z [2816/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-04-25T04:21:07.7753605Z [2817/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-04-25T04:21:07.7919518Z [2818/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-04-25T04:21:07.8376032Z [2819/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-04-25T04:21:07.8582495Z [2820/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-04-25T04:21:07.9353761Z [2821/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-04-25T04:21:08.1171078Z [2822/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-04-25T04:21:08.8119847Z [2823/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-04-25T04:21:08.8247133Z [2824/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-04-25T04:21:08.8392105Z [2825/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-04-25T04:21:08.8903008Z [2826/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-04-25T04:21:08.9386452Z [2827/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-04-25T04:21:08.9928521Z [2828/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-04-25T04:21:09.0891068Z [2829/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-04-25T04:21:09.1586359Z [2830/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-04-25T04:21:09.8127737Z [2831/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-04-25T04:21:09.8720747Z [2832/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-04-25T04:21:09.9376352Z [2833/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-04-25T04:21:09.9505870Z [2834/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-04-25T04:21:10.0499064Z [2835/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-04-25T04:21:10.0644657Z [2836/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-04-25T04:21:10.1853631Z [2837/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-04-25T04:21:10.2383805Z [2838/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-04-25T04:21:10.9488702Z [2839/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-04-25T04:21:10.9926781Z [2840/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-04-25T04:21:11.0021902Z [2841/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-04-25T04:21:11.0221657Z [2842/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-04-25T04:21:11.0932932Z [2843/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-04-25T04:21:11.1110715Z [2844/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-04-25T04:21:11.1367675Z [2845/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-04-25T04:21:11.2776065Z [2846/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-04-25T04:21:12.0525700Z [2847/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-04-25T04:21:12.1192643Z [2848/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-04-25T04:21:12.1609141Z [2849/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-04-25T04:21:12.2017060Z [2850/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-04-25T04:21:12.2313767Z [2851/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-04-25T04:21:12.2656429Z [2852/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-04-25T04:21:12.3312130Z [2853/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-04-25T04:21:12.3848829Z [2854/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-04-25T04:21:13.1381688Z [2855/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-04-25T04:21:13.2090813Z [2856/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-04-25T04:21:13.2606342Z [2857/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-04-25T04:21:13.2817731Z [2858/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-04-25T04:21:13.2937383Z [2859/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-04-25T04:21:13.3293193Z [2860/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-04-25T04:21:13.4074036Z [2861/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-04-25T04:21:13.6166314Z [2862/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-04-25T04:21:14.3266853Z [2863/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-04-25T04:21:14.3656609Z [2864/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-04-25T04:21:14.3944653Z [2865/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-04-25T04:21:14.4533240Z [2866/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-04-25T04:21:14.8188356Z [2867/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-04-25T04:21:15.3862886Z [2868/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-04-25T04:21:15.4363178Z [2869/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-04-25T04:21:15.4748084Z [2870/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-04-25T04:21:15.6613484Z [2871/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-04-25T04:21:15.8837701Z [2872/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-04-25T04:21:16.0347662Z [2873/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-04-25T04:21:16.5022701Z [2874/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-04-25T04:21:16.5169452Z [2875/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-04-25T04:21:16.6704954Z [2876/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-04-25T04:21:16.9812976Z [2877/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-04-25T04:21:17.0676910Z [2878/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-04-25T04:21:17.1105138Z [2879/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-04-25T04:21:17.2623330Z [2880/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-04-25T04:21:17.3958630Z [2881/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-04-25T04:21:17.4514980Z [2882/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-04-25T04:21:17.6305087Z [2883/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-04-25T04:21:17.8174481Z [2884/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-04-25T04:21:18.0883283Z [2885/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-04-25T04:21:18.2426226Z [2886/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-04-25T04:21:18.2772985Z [2887/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-04-25T04:21:18.4054028Z [2888/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-04-25T04:21:18.4848617Z [2889/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-04-25T04:21:18.5589941Z [2890/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-04-25T04:21:18.6975341Z [2891/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-04-25T04:21:18.8011321Z [2892/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-04-25T04:21:19.1463841Z [2893/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-04-25T04:21:19.2002209Z [2894/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-04-25T04:21:19.3216843Z [2895/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-04-25T04:21:19.5483760Z [2896/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-04-25T04:21:19.6630010Z [2897/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-04-25T04:21:19.7294511Z [2898/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-04-25T04:21:19.8086080Z [2899/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-04-25T04:21:20.2416489Z [2900/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-04-25T04:21:20.3221361Z [2901/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-04-25T04:21:20.6312322Z [2902/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-04-25T04:21:20.6872433Z [2903/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-04-25T04:21:20.7061167Z [2904/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-04-25T04:21:20.8947294Z [2905/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-04-25T04:21:21.4013537Z [2906/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-04-25T04:21:21.4369413Z [2907/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-04-25T04:21:21.7111749Z [2908/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-04-25T04:21:21.8032364Z [2909/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-04-25T04:21:21.9078308Z [2910/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-04-25T04:21:21.9502281Z [2911/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-04-25T04:21:22.4624374Z [2912/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-04-25T04:21:22.5363930Z [2913/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-04-25T04:21:22.5563765Z [2914/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-04-25T04:21:22.8369169Z [2915/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-04-25T04:21:22.8667760Z [2916/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-04-25T04:21:22.9142383Z [2917/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-04-25T04:21:23.0742338Z [2918/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-04-25T04:21:25.7148302Z [2919/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-04-25T04:21:26.2532940Z [2920/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-04-25T04:21:26.3026369Z [2921/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-04-25T04:21:26.3483411Z [2922/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-04-25T04:21:26.5437130Z [2923/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-04-25T04:21:26.6382451Z [2924/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-04-25T04:21:26.6778334Z [2925/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-04-25T04:21:26.7533049Z [2926/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-04-25T04:21:26.7982960Z [2927/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-04-25T04:21:26.8251779Z [2928/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-04-25T04:21:27.2491399Z [2929/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-04-25T04:21:27.3525564Z [2930/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-04-25T04:21:28.4616527Z [2931/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-04-25T04:21:29.5048911Z [2932/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-04-25T04:21:30.0638651Z [2933/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-04-25T04:21:30.3235618Z [2934/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-04-25T04:21:30.4309496Z [2935/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-04-25T04:21:30.4534908Z [2936/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-04-25T04:21:30.5391290Z [2937/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-04-25T04:21:30.5625079Z [2938/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-04-25T04:21:30.5767879Z [2939/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-04-25T04:21:30.6482662Z [2940/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-04-25T04:21:31.1875083Z [2941/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-04-25T04:21:31.2647010Z [2942/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-04-25T04:21:31.4184147Z [2943/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-04-25T04:21:31.5368728Z [2944/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-04-25T04:21:31.6399150Z [2945/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-04-25T04:21:31.6758740Z [2946/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-04-25T04:21:31.6961650Z [2947/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-04-25T04:21:31.7641142Z [2948/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-04-25T04:21:31.8053804Z [2949/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-04-25T04:21:32.3426305Z [2950/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-04-25T04:21:32.4555429Z [2951/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-04-25T04:21:32.5351818Z [2952/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-04-25T04:21:32.6934239Z [2953/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-04-25T04:21:32.8013208Z [2954/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-04-25T04:21:32.8112484Z [2955/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-04-25T04:21:32.8271365Z [2956/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-04-25T04:21:33.2020842Z [2957/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-04-25T04:21:33.4750837Z [2958/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-04-25T04:21:33.6043186Z [2959/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-04-25T04:21:34.0210069Z [2960/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-04-25T04:21:34.1591971Z [2961/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-04-25T04:21:34.2014692Z [2962/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-04-25T04:21:34.6043589Z [2963/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-04-25T04:21:34.8347752Z [2964/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-04-25T04:21:35.2319134Z [2965/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-04-25T04:21:35.2822813Z [2966/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-04-25T04:21:35.3791147Z [2967/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-04-25T04:21:35.6641844Z [2968/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-04-25T04:21:35.7193726Z [2969/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-04-25T04:21:35.9345409Z [2970/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-04-25T04:21:36.5949738Z [2971/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-04-25T04:21:36.6580385Z [2972/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-04-25T04:21:36.7415793Z [2973/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-04-25T04:21:37.0022428Z [2974/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-04-25T04:21:37.0198998Z [2975/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-04-25T04:21:37.0361374Z [2976/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-04-25T04:21:37.0647526Z [2977/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-04-25T04:21:37.7256069Z [2978/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-04-25T04:21:37.8735693Z [2979/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-04-25T04:21:38.0477825Z [2980/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-04-25T04:21:38.0750440Z [2981/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-04-25T04:21:38.1201994Z [2982/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-04-25T04:21:38.1390627Z [2983/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-04-25T04:21:38.4463361Z [2984/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-04-25T04:21:38.5877772Z [2985/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-04-25T04:21:39.1539151Z [2986/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-04-25T04:21:39.3578489Z [2987/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-04-25T04:21:39.4975556Z [2988/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-04-25T04:21:39.5167959Z [2989/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-04-25T04:21:39.6195201Z [2990/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-04-25T04:21:39.8305053Z [2991/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-04-25T04:21:40.3256983Z [2992/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-04-25T04:21:40.4347828Z [2993/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-04-25T04:21:40.4980772Z [2994/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-04-25T04:21:40.6847521Z [2995/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-04-25T04:21:41.0372249Z [2996/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-04-25T04:21:41.1422225Z [2997/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-04-25T04:21:41.6456951Z [2998/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-04-25T04:21:41.6544324Z [2999/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-04-25T04:21:41.7041352Z [3000/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-04-25T04:21:41.8426129Z [3001/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-04-25T04:21:41.8614613Z [3002/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-04-25T04:21:42.4038605Z [3003/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-04-25T04:21:42.9501375Z [3004/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-04-25T04:21:43.0313900Z [3005/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-04-25T04:21:43.1678618Z [3006/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-04-25T04:21:43.4419233Z [3007/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-04-25T04:21:44.0121055Z [3008/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-04-25T04:21:44.1436776Z [3009/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-04-25T04:21:44.2747274Z [3010/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-04-25T04:21:44.5433499Z [3011/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-04-25T04:21:45.0184651Z [3012/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-04-25T04:21:45.1036082Z [3013/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-04-25T04:21:45.2354156Z [3014/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-04-25T04:21:45.2695181Z [3015/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-04-25T04:21:45.4810778Z [3016/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-04-25T04:21:45.5105666Z [3017/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-04-25T04:21:45.6221612Z [3018/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-04-25T04:21:45.7200813Z [3019/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-04-25T04:21:45.8405384Z [3020/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-04-25T04:21:45.9356547Z [3021/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-04-25T04:21:45.9572101Z [3022/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-04-25T04:21:45.9738228Z [3023/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-04-25T04:21:46.2666737Z [3024/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-04-25T04:21:46.5386695Z [3025/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-04-25T04:21:46.5552057Z [3026/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-04-25T04:21:46.7545767Z [3027/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-04-25T04:21:46.7697763Z [3028/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-04-25T04:21:47.6241909Z [3029/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-04-25T04:21:47.8200821Z [3030/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-04-25T04:21:47.8495835Z [3031/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-04-25T04:21:48.0916386Z [3032/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-04-25T04:21:48.1682655Z [3033/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-04-25T04:21:48.2371724Z [3034/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-04-25T04:21:48.3724532Z [3035/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-04-25T04:21:48.4915983Z [3036/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-04-25T04:21:49.5117232Z [3037/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-04-25T04:21:49.6762029Z [3038/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-04-25T04:21:49.8300206Z [3039/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-04-25T04:21:49.8678376Z [3040/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-04-25T04:21:50.1415741Z [3041/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-04-25T04:21:50.2152613Z [3042/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-04-25T04:21:50.3379371Z [3043/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-04-25T04:21:50.3610808Z [3044/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-04-25T04:21:51.2114249Z [3045/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-04-25T04:21:51.3752917Z [3046/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-04-25T04:21:51.5255759Z [3047/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-04-25T04:21:51.5405532Z [3048/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-04-25T04:21:51.5889217Z [3049/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-04-25T04:21:51.5982149Z [3050/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-04-25T04:21:51.6664457Z [3051/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-04-25T04:21:52.0071715Z [3052/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-04-25T04:21:52.3980894Z [3053/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-04-25T04:21:52.4544419Z [3054/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-04-25T04:21:52.7372025Z [3055/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-04-25T04:21:52.7615391Z [3056/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-04-25T04:21:52.7800069Z [3057/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-04-25T04:21:53.1246896Z [3058/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-04-25T04:21:53.1614731Z [3059/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-04-25T04:21:53.1662297Z [3060/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-04-25T04:21:53.2935477Z [3061/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-04-25T04:21:53.4303548Z [3062/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-04-25T04:21:53.5224966Z [3063/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-04-25T04:21:53.5810546Z [3064/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-04-25T04:21:53.8363723Z [3065/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-04-25T04:21:53.8935879Z [3066/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-04-25T04:21:53.9220134Z [3067/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-04-25T04:21:54.0676579Z [3068/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-04-25T04:21:54.0845006Z [3069/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-04-25T04:21:54.2550253Z [3070/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-04-25T04:21:54.5663554Z [3071/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:54.6801218Z [3072/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:54.6943497Z [3073/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:54.9632284Z [3074/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:55.0632865Z [3075/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:55.6757978Z [3076/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:55.6886178Z [3077/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:55.8153717Z [3078/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:56.0955071Z [3079/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:56.2159391Z [3080/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:56.2936985Z [3081/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:56.3045469Z [3082/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:56.8386197Z [3083/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:56.9595287Z [3084/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.0725782Z [3085/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-04-25T04:21:57.1812022Z [3086/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.2364365Z [3087/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-04-25T04:21:57.2961157Z [3088/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.4489503Z [3089/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-04-25T04:21:57.4725450Z [3090/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.6193969Z [3091/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.8508414Z [3092/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.9505359Z [3093/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:57.9593640Z [3094/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.0164428Z [3095/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.3345771Z [3096/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.4496727Z [3097/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.4808429Z [3098/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.6066318Z [3099/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.6196880Z [3100/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.7210237Z [3101/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:58.9564837Z [3102/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.0536422Z [3103/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.0773694Z [3104/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.1349635Z [3105/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.1634350Z [3106/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.2217999Z [3107/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.6439374Z [3108/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.6837389Z [3109/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:21:59.8659722Z [3110/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.0221244Z [3111/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.0370426Z [3112/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.0658936Z [3113/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.1652779Z [3114/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.2397396Z [3115/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.3101638Z [3116/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.4986235Z [3117/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.7179798Z [3118/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.7435056Z [3119/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.9312421Z [3120/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:00.9835449Z [3121/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.0042088Z [3122/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.0663153Z [3123/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.3456665Z [3124/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.6719342Z [3125/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.6816621Z [3126/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.7141163Z [3127/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.7142515Z 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:01.7144014Z 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:01.7144970Z with 2025-04-25T04:22:01.7145166Z [ 2025-04-25T04:22:01.7145417Z scalar_t=float, 2025-04-25T04:22:01.7146048Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-04-25T04:22:01.7146734Z ] 2025-04-25T04:22:01.7147803Z 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:22:01.7148983Z with 2025-04-25T04:22:01.7149193Z [ 2025-04-25T04:22:01.7149384Z scalar_t=float, 2025-04-25T04:22:01.7150011Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-04-25T04:22:01.7151196Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-04-25T04:22:01.7152054Z ] 2025-04-25T04:22:01.7155963Z 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:01.7160796Z with 2025-04-25T04:22:01.7161154Z [ 2025-04-25T04:22:01.7161628Z scalar_t=scalar_t, 2025-04-25T04:22:01.7162180Z data_t=at::vec::DEFAULT::Vectorized, 2025-04-25T04:22:01.7163811Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-04-25T04:22:01.7167009Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-04-25T04:22:01.7169229Z ] 2025-04-25T04:22:01.7171587Z 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:01.7174895Z with 2025-04-25T04:22:01.7175213Z [ 2025-04-25T04:22:01.7175436Z scalar_t=scalar_t 2025-04-25T04:22:01.7175704Z ] 2025-04-25T04:22:01.7178095Z 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:01.7181401Z with 2025-04-25T04:22:01.7181728Z [ 2025-04-25T04:22:01.7182068Z scalar_t=scalar_t 2025-04-25T04:22:01.7182526Z ] 2025-04-25T04:22:01.7184788Z 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:01.7187153Z with 2025-04-25T04:22:01.7187491Z [ 2025-04-25T04:22:01.7187835Z scalar_t=scalar_t 2025-04-25T04:22:01.7188285Z ] 2025-04-25T04:22:01.7218276Z 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:01.7220591Z with 2025-04-25T04:22:01.7220924Z [ 2025-04-25T04:22:01.7221211Z scalar_t=scalar_t 2025-04-25T04:22:01.7221582Z ] 2025-04-25T04:22:01.7223688Z 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:01.7226184Z [3128/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.8056607Z [3129/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:01.9152758Z [3130/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.0818418Z [3131/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.1770970Z [3132/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.3997001Z [3133/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.3998523Z 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:02.4000025Z 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:22:02.4155020Z 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:22:02.4157521Z [3134/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.5300398Z [3135/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-04-25T04:22:02.7441397Z [3136/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.7590174Z [3137/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.8207786Z [3138/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.8638860Z [3139/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:02.9626875Z [3140/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-04-25T04:22:03.1019471Z [3141/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-04-25T04:22:03.1361462Z [3142/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-04-25T04:22:03.1896050Z [3143/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-04-25T04:22:03.2260837Z [3144/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-04-25T04:22:03.2890972Z [3145/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-04-25T04:22:03.3218798Z [3146/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-04-25T04:22:03.3338206Z [3147/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-04-25T04:22:03.4042269Z [3148/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-04-25T04:22:03.4124474Z [3149/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-04-25T04:22:03.4996341Z [3150/7581] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-04-25T04:22:03.5468211Z 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:22:03.5469727Z command line(1): note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-04-25T04:22:03.5471494Z 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:22:03.5473268Z [3151/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-04-25T04:22:03.6849769Z [3152/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-04-25T04:22:03.8066765Z [3153/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-04-25T04:22:04.0186302Z [3154/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-04-25T04:22:04.5320585Z [3155/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-04-25T04:22:05.5508435Z [3156/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-04-25T04:22:06.0765830Z [3157/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-04-25T04:22:07.0472273Z [3158/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-04-25T04:22:07.4649915Z [3159/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-04-25T04:22:07.5049959Z [3160/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-04-25T04:22:07.7702110Z [3161/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-04-25T04:22:07.8461501Z [3162/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-04-25T04:22:07.9910849Z [3163/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-04-25T04:22:08.0693908Z [3164/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-04-25T04:22:08.1493630Z [3165/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-04-25T04:22:08.5057578Z [3166/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-04-25T04:22:08.8309936Z [3167/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-04-25T04:22:08.9937538Z [3168/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-04-25T04:22:09.0303426Z [3169/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-04-25T04:22:09.1498959Z [3170/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-04-25T04:22:09.6750496Z [3171/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-04-25T04:22:09.6955700Z [3172/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-04-25T04:22:09.7031928Z [3173/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-04-25T04:22:09.7577932Z [3174/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-04-25T04:22:10.0397313Z [3175/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-04-25T04:22:10.0713308Z [3176/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-04-25T04:22:10.6063313Z [3177/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-04-25T04:22:10.7998098Z [3178/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-04-25T04:22:11.6955095Z [3179/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-04-25T04:22:12.0721284Z [3180/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-04-25T04:22:12.7379113Z [3181/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-04-25T04:22:13.1091822Z [3182/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-04-25T04:22:13.5584938Z [3183/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-04-25T04:22:13.6143619Z [3184/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-04-25T04:22:13.6304371Z [3185/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-04-25T04:22:13.8587601Z [3186/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-04-25T04:22:13.9092851Z [3187/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-04-25T04:22:13.9478426Z [3188/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-04-25T04:22:13.9916006Z [3189/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-04-25T04:22:14.2650404Z [3190/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-04-25T04:22:14.6123875Z [3191/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-04-25T04:22:14.6414345Z [3192/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-04-25T04:22:14.7071431Z [3193/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-04-25T04:22:14.9441792Z [3194/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-04-25T04:22:15.0248156Z [3195/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-04-25T04:22:15.2534243Z [3196/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-04-25T04:22:15.5880483Z [3197/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-04-25T04:22:15.6575542Z [3198/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-04-25T04:22:15.7187696Z [3199/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-04-25T04:22:16.0088619Z [3200/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-04-25T04:22:16.0551689Z [3201/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-04-25T04:22:16.2291551Z [3202/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-04-25T04:22:16.3843981Z [3203/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-04-25T04:22:17.0586132Z [3204/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-04-25T04:22:17.1926269Z [3205/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-04-25T04:22:17.2048813Z [3206/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-04-25T04:22:17.4249715Z [3207/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-04-25T04:22:17.6064454Z [3208/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-04-25T04:22:17.9915273Z [3209/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-04-25T04:22:18.1653620Z [3210/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-04-25T04:22:18.3151775Z [3211/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-04-25T04:22:19.5345617Z [3212/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-04-25T04:22:19.6776007Z [3213/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-04-25T04:22:20.7535535Z [3214/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-04-25T04:22:20.8073712Z [3215/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-04-25T04:22:21.0062320Z [3216/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-04-25T04:22:21.3035954Z [3217/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-04-25T04:22:21.4042827Z [3218/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-04-25T04:22:21.6953633Z [3219/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-04-25T04:22:21.8729301Z [3220/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-04-25T04:22:22.0047241Z [3221/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-04-25T04:22:22.1126721Z [3222/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-04-25T04:22:22.1143766Z [3223/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-04-25T04:22:22.3515606Z [3224/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-04-25T04:22:22.3719572Z [3225/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-04-25T04:22:22.4442194Z [3226/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-04-25T04:22:22.4630423Z [3227/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-04-25T04:22:22.8958602Z [3228/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-04-25T04:22:23.1167414Z [3229/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-04-25T04:22:23.2062673Z [3230/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-04-25T04:22:23.2918883Z [3231/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-04-25T04:22:23.5072827Z [3232/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-04-25T04:22:23.5424527Z [3233/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-04-25T04:22:23.6003457Z [3234/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-04-25T04:22:23.6939133Z [3235/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-04-25T04:22:24.2438521Z [3236/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-04-25T04:22:24.4217329Z [3237/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-04-25T04:22:24.5200917Z [3238/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-04-25T04:22:24.6633350Z [3239/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-04-25T04:22:24.7846390Z [3240/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-04-25T04:22:24.8648477Z [3241/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-04-25T04:22:24.9680338Z [3242/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-04-25T04:22:25.3247391Z [3243/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-04-25T04:22:25.5280476Z [3244/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-04-25T04:22:25.7895035Z [3245/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-04-25T04:22:25.8693123Z [3246/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-04-25T04:22:25.9617849Z [3247/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-04-25T04:22:26.1328113Z [3248/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-04-25T04:22:26.5110464Z [3249/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-04-25T04:22:26.7020574Z [3250/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-04-25T04:22:26.9046455Z [3251/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-04-25T04:22:26.9930182Z [3252/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-04-25T04:22:27.0586169Z [3253/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-04-25T04:22:27.4946807Z [3254/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-04-25T04:22:27.8555666Z [3255/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-04-25T04:22:27.9451957Z [3256/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-04-25T04:22:28.1005407Z [3257/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-04-25T04:22:28.4662035Z [3258/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-04-25T04:22:28.6410120Z [3259/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-04-25T04:22:28.8678228Z [3260/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-04-25T04:22:29.0101797Z [3261/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-04-25T04:22:29.1035752Z [3262/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-04-25T04:22:29.2161596Z [3263/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-04-25T04:22:29.2647200Z [3264/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-04-25T04:22:29.2665167Z [3265/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-04-25T04:22:29.6376236Z [3266/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-04-25T04:22:29.8200756Z [3267/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-04-25T04:22:29.9573260Z [3268/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-04-25T04:22:30.0345393Z [3269/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-04-25T04:22:30.2621706Z [3270/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-04-25T04:22:30.3162000Z [3271/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-04-25T04:22:30.7722014Z [3272/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-04-25T04:22:31.1389085Z [3273/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-04-25T04:22:31.1518855Z [3274/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-04-25T04:22:31.4972978Z [3275/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-04-25T04:22:31.9301652Z [3276/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-04-25T04:22:32.2786375Z [3277/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-04-25T04:22:32.2963413Z [3278/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-04-25T04:22:32.6351929Z [3279/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-04-25T04:22:33.0851575Z [3280/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-04-25T04:22:33.3478455Z [3281/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-04-25T04:22:33.3877041Z [3282/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-04-25T04:22:33.4065124Z [3283/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-04-25T04:22:33.4250748Z [3284/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-04-25T04:22:33.7641541Z [3285/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-04-25T04:22:33.9762686Z [3286/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-04-25T04:22:34.1602349Z [3287/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-04-25T04:22:34.2142149Z [3288/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-04-25T04:22:34.4871410Z [3289/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-04-25T04:22:34.5350689Z [3290/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-04-25T04:22:34.5723431Z [3291/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-04-25T04:22:34.5934061Z [3292/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-04-25T04:22:34.9690520Z [3293/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-04-25T04:22:35.1512126Z [3294/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-04-25T04:22:35.4287209Z [3295/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-04-25T04:22:35.6877575Z [3296/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-04-25T04:22:35.7213560Z [3297/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-04-25T04:22:35.7339934Z [3298/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-04-25T04:22:35.7482713Z [3299/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-04-25T04:22:36.1280117Z [3300/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-04-25T04:22:36.5751135Z [3301/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-04-25T04:22:36.8350240Z [3302/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-04-25T04:22:36.8965744Z [3303/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-04-25T04:22:37.3508803Z [3304/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-04-25T04:22:37.6740292Z [3305/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-04-25T04:22:37.9933392Z [3306/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-04-25T04:22:38.0656950Z [3307/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-04-25T04:22:38.2682452Z [3308/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-04-25T04:22:38.4887963Z [3309/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-04-25T04:22:38.8053183Z [3310/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-04-25T04:22:39.2248895Z [3311/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-04-25T04:22:39.3964160Z [3312/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-04-25T04:22:39.5087264Z [3313/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-04-25T04:22:39.8204843Z [3314/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-04-25T04:22:39.9077437Z [3315/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-04-25T04:22:39.9670300Z [3316/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-04-25T04:22:40.3519316Z [3317/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-04-25T04:22:40.4637583Z [3318/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-04-25T04:22:41.0476850Z [3319/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-04-25T04:22:41.1226291Z [3320/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-04-25T04:22:41.5625634Z [3321/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-04-25T04:22:41.5921244Z [3322/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-04-25T04:22:42.0129882Z [3323/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-04-25T04:22:42.1979378Z [3324/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-04-25T04:22:42.2424347Z [3325/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-04-25T04:22:42.4527789Z [3326/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-04-25T04:22:42.6975975Z [3327/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-04-25T04:22:42.7625939Z [3328/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-04-25T04:22:43.2164472Z [3329/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-04-25T04:22:43.4474226Z [3330/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-04-25T04:22:43.5908704Z [3331/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-04-25T04:22:43.5928795Z [3332/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-04-25T04:22:43.6859327Z [3333/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-04-25T04:22:43.8727690Z [3334/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-04-25T04:22:43.9602704Z [3335/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-04-25T04:22:44.0401229Z [3336/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-04-25T04:22:44.7343735Z [3337/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-04-25T04:22:44.7754356Z [3338/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-04-25T04:22:44.8148341Z [3339/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-04-25T04:22:44.9956903Z [3340/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-04-25T04:22:45.0750061Z [3341/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-04-25T04:22:45.1893176Z [3342/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-04-25T04:22:45.8918336Z [3343/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-04-25T04:22:45.9431891Z [3344/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-04-25T04:22:45.9721733Z [3345/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-04-25T04:22:46.1752134Z [3346/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-04-25T04:22:46.2892928Z [3347/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-04-25T04:22:46.4112970Z [3348/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-04-25T04:22:47.0880804Z [3349/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-04-25T04:22:47.0985771Z [3350/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-04-25T04:22:47.4402343Z [3351/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-04-25T04:22:47.5156187Z [3352/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-04-25T04:22:47.6246317Z [3353/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-04-25T04:22:48.1870671Z [3354/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-04-25T04:22:48.1998165Z [3355/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-04-25T04:22:48.5323539Z [3356/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-04-25T04:22:48.5992425Z [3357/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-04-25T04:22:48.6609005Z [3358/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-04-25T04:22:48.7039654Z [3359/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-04-25T04:22:48.8221162Z [3360/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-04-25T04:22:49.1132778Z [3361/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-04-25T04:22:49.7817030Z [3362/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-04-25T04:22:49.9602055Z [3363/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-04-25T04:22:49.9994138Z [3364/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-04-25T04:22:50.2273179Z [3365/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-04-25T04:22:50.2445799Z [3366/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-04-25T04:22:50.2828055Z [3367/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-04-25T04:22:50.3215638Z [3368/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-04-25T04:22:50.5001519Z 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:22:50.5003474Z 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:22:50.5005068Z [3369/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-04-25T04:22:50.7882456Z [3370/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-04-25T04:22:51.4582474Z [3371/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-04-25T04:22:51.7596589Z [3372/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-04-25T04:22:52.2597164Z [3373/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-04-25T04:22:52.3384793Z [3374/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-04-25T04:22:53.9542488Z [3375/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-04-25T04:22:54.1620501Z [3376/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-04-25T04:22:54.2427433Z [3377/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-04-25T04:22:54.4954795Z [3378/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-04-25T04:22:54.6553674Z [3379/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-04-25T04:22:54.7933560Z [3380/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-04-25T04:22:55.1037331Z [3381/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-04-25T04:22:55.2986695Z [3382/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-04-25T04:22:55.8246839Z [3383/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-04-25T04:22:55.8520257Z [3384/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-04-25T04:22:56.2454633Z [3385/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-04-25T04:22:56.2640599Z [3386/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-04-25T04:22:56.4374612Z [3387/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-04-25T04:22:56.5173885Z [3388/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-04-25T04:22:57.4278616Z [3389/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-04-25T04:22:57.6023885Z [3390/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-04-25T04:22:57.7106310Z [3391/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-04-25T04:22:58.3846569Z [3392/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-04-25T04:22:58.6170792Z [3393/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-04-25T04:22:58.9486642Z [3394/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-04-25T04:22:59.4692443Z [3395/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-04-25T04:22:59.6488914Z [3396/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-04-25T04:23:00.1032488Z [3397/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-04-25T04:23:00.1428427Z [3398/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-04-25T04:23:00.2614944Z [3399/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-04-25T04:23:00.4066866Z [3400/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-04-25T04:23:00.7047233Z [3401/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-04-25T04:23:00.8289513Z [3402/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-04-25T04:23:00.8688428Z [3403/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-04-25T04:23:01.3142869Z [3404/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-04-25T04:23:01.3956748Z [3405/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-04-25T04:23:01.5448151Z [3406/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-04-25T04:23:02.6603645Z [3407/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-04-25T04:23:04.2680825Z [3408/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-04-25T04:23:04.6660577Z [3409/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-04-25T04:23:04.8331231Z [3410/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-04-25T04:23:04.9155874Z [3411/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-04-25T04:23:05.2767268Z [3412/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-04-25T04:23:05.3550650Z [3413/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-04-25T04:23:05.5002713Z [3414/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-04-25T04:23:05.5455397Z [3415/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-04-25T04:23:05.6216128Z [3416/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-04-25T04:23:06.6673749Z [3417/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-04-25T04:23:06.7554926Z [3418/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-04-25T04:23:08.2580839Z [3419/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-04-25T04:23:08.5636576Z [3420/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-04-25T04:23:08.6516796Z [3421/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-04-25T04:23:09.1415392Z [3422/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-04-25T04:23:09.4733980Z [3423/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-04-25T04:23:09.5072174Z [3424/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-04-25T04:23:09.5841898Z [3425/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-04-25T04:23:09.7279412Z [3426/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-04-25T04:23:10.6178841Z [3427/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-04-25T04:23:10.7555650Z [3428/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-04-25T04:23:12.2462724Z [3429/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-04-25T04:23:12.4851782Z [3430/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-04-25T04:23:12.4855535Z 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:23:12.4856530Z with 2025-04-25T04:23:12.4856745Z [ 2025-04-25T04:23:12.4856932Z T=int 2025-04-25T04:23:12.4857148Z ] 2025-04-25T04:23:12.4858275Z 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:23:12.7234589Z with 2025-04-25T04:23:12.7235019Z [ 2025-04-25T04:23:12.7235368Z T=int 2025-04-25T04:23:12.7235752Z ] 2025-04-25T04:23:12.7236728Z [3431/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-04-25T04:23:13.0471843Z [3432/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-04-25T04:23:13.6313862Z [3433/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-04-25T04:23:13.7850641Z [3434/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-04-25T04:23:14.5905089Z [3435/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-04-25T04:23:14.9809941Z [3436/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-04-25T04:23:16.1643232Z [3437/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-04-25T04:23:16.1645884Z 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:23:16.1647635Z with 2025-04-25T04:23:16.1647991Z [ 2025-04-25T04:23:16.1648286Z T=int 2025-04-25T04:23:16.1648571Z ] 2025-04-25T04:23:16.6524603Z 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:23:16.6526602Z with 2025-04-25T04:23:16.6526908Z [ 2025-04-25T04:23:16.6527216Z T=int 2025-04-25T04:23:16.6527538Z ] 2025-04-25T04:23:16.6528416Z [3438/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-04-25T04:23:16.7524434Z [3439/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-04-25T04:23:17.3051378Z [3440/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-04-25T04:23:17.7732543Z [3441/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-04-25T04:23:17.7971006Z [3442/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-04-25T04:23:17.8087975Z [3443/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-04-25T04:23:18.2335619Z [3444/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-04-25T04:23:18.3595079Z [3445/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-04-25T04:23:18.6672852Z [3446/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-04-25T04:23:18.8324858Z [3447/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-04-25T04:23:18.9806861Z [3448/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-04-25T04:23:19.2768002Z [3449/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-04-25T04:23:19.3280990Z [3450/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-04-25T04:23:19.3687455Z [3451/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-04-25T04:23:19.4645967Z [3452/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-04-25T04:23:19.8026456Z [3453/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-04-25T04:23:19.9776434Z [3454/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-04-25T04:23:20.2400000Z [3455/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-04-25T04:23:20.2993974Z [3456/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-04-25T04:23:20.4262517Z [3457/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-04-25T04:23:20.5537591Z [3458/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-04-25T04:23:20.5922639Z [3459/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-04-25T04:23:20.5924073Z 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:23:20.5924982Z with 2025-04-25T04:23:20.5925164Z [ 2025-04-25T04:23:20.5925349Z T=int 2025-04-25T04:23:20.5925532Z ] 2025-04-25T04:23:20.5926985Z 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:23:20.6115339Z with 2025-04-25T04:23:20.6115789Z [ 2025-04-25T04:23:20.6116111Z T=int 2025-04-25T04:23:20.6116450Z ] 2025-04-25T04:23:20.6117232Z [3460/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-04-25T04:23:20.8223204Z [3461/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-04-25T04:23:20.9377588Z [3462/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-04-25T04:23:21.1522036Z [3463/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-04-25T04:23:21.1925182Z [3464/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-04-25T04:23:21.3628568Z [3465/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-04-25T04:23:21.4352630Z [3466/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-04-25T04:23:21.6017948Z [3467/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-04-25T04:23:21.7430425Z [3468/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-04-25T04:23:21.7607214Z [3469/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-04-25T04:23:22.0587739Z [3470/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-04-25T04:23:22.0624424Z [3471/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-04-25T04:23:22.1614573Z [3472/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-04-25T04:23:22.3505386Z [3473/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-04-25T04:23:22.3598167Z [3474/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-04-25T04:23:22.4881315Z [3475/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-04-25T04:23:22.5837245Z [3476/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-04-25T04:23:22.9304348Z [3477/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-04-25T04:23:23.1881625Z [3478/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-04-25T04:23:23.2355032Z [3479/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-04-25T04:23:23.4300301Z [3480/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-04-25T04:23:23.5178157Z [3481/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-04-25T04:23:23.5706664Z [3482/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-04-25T04:23:23.5951600Z [3483/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-04-25T04:23:23.6349979Z [3484/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-04-25T04:23:23.9822006Z [3485/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-04-25T04:23:24.0219220Z [3486/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-04-25T04:23:24.1227201Z [3487/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-04-25T04:23:24.1962794Z [3488/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-04-25T04:23:24.2803594Z [3489/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-04-25T04:23:24.5404983Z [3490/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-04-25T04:23:24.5943928Z [3491/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-04-25T04:23:24.6439227Z [3492/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-04-25T04:23:24.7337089Z [3493/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-04-25T04:23:24.7905641Z [3494/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-04-25T04:23:25.3100672Z [3495/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-04-25T04:23:25.3470523Z [3496/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-04-25T04:23:25.5401128Z [3497/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-04-25T04:23:25.6102985Z [3498/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-04-25T04:23:25.9519376Z [3499/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-04-25T04:23:26.4117003Z [3500/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-04-25T04:23:26.4895914Z [3501/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-04-25T04:23:26.6935905Z [3502/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-04-25T04:23:27.6672358Z [3503/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-04-25T04:23:27.8741992Z [3504/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-04-25T04:23:27.9300460Z [3505/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-04-25T04:23:28.3848796Z [3506/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-04-25T04:23:28.8248402Z [3507/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-04-25T04:23:28.8980756Z [3508/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-04-25T04:23:29.0352929Z [3509/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-04-25T04:23:29.0591865Z [3510/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-04-25T04:23:29.5447141Z [3511/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-04-25T04:23:29.7657303Z [3512/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-04-25T04:23:29.9955297Z [3513/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-04-25T04:23:30.2245205Z [3514/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-04-25T04:23:30.6470759Z [3515/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-04-25T04:23:30.6649039Z [3516/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-04-25T04:23:30.9570972Z [3517/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-04-25T04:23:31.7442836Z [3518/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-04-25T04:23:31.8028449Z [3519/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-04-25T04:23:31.8216539Z [3520/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-04-25T04:23:32.8284831Z [3521/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-04-25T04:23:33.0619518Z [3522/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-04-25T04:23:33.7716795Z [3523/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-04-25T04:23:33.8706776Z [3524/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-04-25T04:23:34.1895235Z [3525/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-04-25T04:23:34.2320681Z [3526/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-04-25T04:23:34.4682645Z [3527/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-04-25T04:23:34.5133493Z [3528/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-04-25T04:23:34.8958455Z [3529/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-04-25T04:23:35.5060920Z [3530/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-04-25T04:23:35.5617238Z [3531/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-04-25T04:23:35.6066473Z [3532/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-04-25T04:23:35.7437660Z [3533/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-04-25T04:23:35.7635825Z [3534/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-04-25T04:23:35.9405127Z [3535/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-04-25T04:23:36.1930709Z [3536/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-04-25T04:23:36.2713029Z [3537/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-04-25T04:23:36.5248920Z [3538/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-04-25T04:23:36.7960660Z [3539/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-04-25T04:23:36.9752199Z [3540/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-04-25T04:23:37.9346205Z [3541/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-04-25T04:23:37.9930479Z [3542/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-04-25T04:23:38.3510219Z [3543/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-04-25T04:23:38.3630263Z [3544/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-04-25T04:23:39.7578500Z [3545/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-04-25T04:23:39.8416274Z [3546/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-04-25T04:23:39.9576809Z [3547/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-04-25T04:23:40.1846253Z [3548/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\DMAConnectivity.cpp.obj 2025-04-25T04:23:40.4041840Z [3549/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-04-25T04:23:40.5307870Z [3550/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-04-25T04:23:40.7928700Z [3551/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-04-25T04:23:40.9891579Z [3552/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-04-25T04:23:41.8402932Z [3553/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-04-25T04:23:42.2075060Z [3554/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-04-25T04:23:42.7306653Z [3555/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-04-25T04:23:42.7779845Z [3556/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-04-25T04:23:44.0624739Z [3557/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-04-25T04:23:44.2611907Z [3558/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-04-25T04:23:44.6117274Z [3559/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-04-25T04:23:44.7463933Z [3560/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-04-25T04:23:44.8096909Z [3561/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\SymmetricMemory.cpp.obj 2025-04-25T04:23:44.8955818Z [3562/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-04-25T04:23:45.2763353Z [3563/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-04-25T04:23:46.2876346Z [3564/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-04-25T04:23:46.3524500Z [3565/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-04-25T04:23:46.9372378Z [3566/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-04-25T04:23:47.1297007Z [3567/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-04-25T04:23:47.3161301Z [3568/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-04-25T04:23:47.5542529Z [3569/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-04-25T04:23:48.1367748Z [3570/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-04-25T04:23:48.1799041Z [3571/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-04-25T04:23:48.4552336Z [3572/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-04-25T04:23:48.6378978Z [3573/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-04-25T04:23:49.1574432Z [3574/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-04-25T04:23:49.2232518Z 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:23:49.2233721Z [3575/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-04-25T04:23:49.5278593Z [3576/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-04-25T04:23:49.6204725Z [3577/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-04-25T04:23:50.5506942Z [3578/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-04-25T04:23:51.1252074Z [3579/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-04-25T04:23:51.1839087Z [3580/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-04-25T04:23:52.0618469Z [3581/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-04-25T04:23:52.2254885Z [3582/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-04-25T04:23:52.5602564Z [3583/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-04-25T04:23:52.6762366Z [3584/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-04-25T04:23:53.3074019Z [3585/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-04-25T04:23:53.7362419Z [3586/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-04-25T04:23:55.0573511Z [3587/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-04-25T04:23:55.2546120Z [3588/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-04-25T04:23:56.2137750Z [3589/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-04-25T04:23:56.3691998Z [3590/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-04-25T04:23:56.6826066Z [3591/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-04-25T04:23:56.7102632Z [3592/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-04-25T04:23:57.5356302Z [3593/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-04-25T04:23:57.9234560Z [3594/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-04-25T04:23:59.1910808Z [3595/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-04-25T04:23:59.3583693Z [3596/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-04-25T04:24:00.3327333Z [3597/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-04-25T04:24:00.5311592Z [3598/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-04-25T04:24:00.7752410Z [3599/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-04-25T04:24:00.9245066Z [3600/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-04-25T04:24:01.7255373Z [3601/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-04-25T04:24:02.2407360Z [3602/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-04-25T04:24:03.3059055Z [3603/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-04-25T04:24:03.5095313Z [3604/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-04-25T04:24:04.5595123Z [3605/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-04-25T04:24:04.6093233Z [3606/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-04-25T04:24:05.0217603Z [3607/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-04-25T04:24:05.3272223Z [3608/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-04-25T04:24:05.6717991Z [3609/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-04-25T04:24:06.1201825Z [3610/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-04-25T04:24:07.1426278Z [3611/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-04-25T04:24:07.4183159Z [3612/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-04-25T04:24:08.4060284Z [3613/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-04-25T04:24:08.4633904Z [3614/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-04-25T04:24:08.9388826Z [3615/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-04-25T04:24:09.1789284Z [3616/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-04-25T04:24:09.6232440Z [3617/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-04-25T04:24:10.0377687Z [3618/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-04-25T04:24:11.0331358Z [3619/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-04-25T04:24:11.2285904Z [3620/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-04-25T04:24:12.3316349Z [3621/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-04-25T04:24:12.8346583Z [3622/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-04-25T04:24:13.1665700Z [3623/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-04-25T04:24:13.4570709Z [3624/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-04-25T04:24:13.6367490Z [3625/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-04-25T04:24:14.1276202Z [3626/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-04-25T04:24:14.1780640Z [3627/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-04-25T04:24:14.3955747Z [3628/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-04-25T04:24:14.6053364Z [3629/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-04-25T04:24:14.9620205Z [3630/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-04-25T04:24:14.9727154Z [3631/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-04-25T04:24:15.2825882Z [3632/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-04-25T04:24:15.2827970Z 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:15.2830378Z 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:15.4631533Z 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:15.4634274Z 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:15.4636642Z [3633/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-04-25T04:24:15.6099806Z [3634/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-04-25T04:24:15.6103745Z 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:15.6105208Z 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:15.9369536Z 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:15.9374208Z 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:15.9376666Z [3635/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-04-25T04:24:15.9379536Z 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:15.9382559Z 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:16.1151221Z 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:16.1154147Z 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:16.1157107Z [3636/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-04-25T04:24:16.1159296Z 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:16.1162154Z 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:16.2212743Z 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:16.2215356Z 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:16.2217905Z [3637/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-04-25T04:24:16.2220158Z 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:16.2223091Z 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:16.3126775Z 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:16.3129886Z 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:16.3132143Z [3638/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-04-25T04:24:16.7305884Z [3639/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:16.7308007Z 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:16.7310522Z 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:16.9494975Z 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:16.9497057Z 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:16.9498382Z [3640/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:16.9499601Z 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:17.0056212Z 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:17.0057749Z 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:17.0059109Z 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:17.0060325Z [3641/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-04-25T04:24:17.2522300Z [3642/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:17.2524483Z 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:17.2527158Z 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:17.3567202Z 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:17.3568769Z 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:17.3569947Z [3643/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-04-25T04:24:17.3571147Z 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:17.3572607Z 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:17.3746608Z 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:17.3749850Z 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:17.3752541Z [3644/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:17.3754758Z 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:17.3757289Z 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:17.4522890Z 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:17.4525888Z 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:17.4528134Z [3645/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:17.4530448Z 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:17.4533083Z 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:17.5784714Z 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:17.5787082Z 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:17.5789154Z [3646/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:17.5791213Z 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:17.5792802Z 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:17.9805570Z 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:17.9807126Z 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:17.9808423Z [3647/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:17.9809624Z 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:17.9810959Z 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:18.1302795Z 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:18.1304228Z 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:18.1305388Z [3648/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.1306554Z 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:18.1308121Z 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:18.1819155Z 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:18.1821210Z 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:18.1822382Z [3649/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-04-25T04:24:18.3146101Z [3650/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-04-25T04:24:18.3828560Z [3651/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.3829786Z 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:18.3831129Z 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:18.5162629Z 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:18.5165469Z 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:18.5167767Z [3652/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.5169908Z 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:18.5172322Z 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:18.6150106Z 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:18.6151594Z 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:18.6152918Z [3653/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.6154003Z 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:18.6155322Z 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:18.7054369Z 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:18.7056904Z 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:18.7059191Z [3654/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.7061603Z 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:18.7064096Z 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:18.8226881Z 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:18.8229241Z 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:18.8230790Z [3655/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.8232045Z 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:18.8233323Z 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:18.9539425Z 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:18.9542099Z 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:18.9544264Z [3656/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-04-25T04:24:18.9546658Z 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:18.9549560Z 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.0342947Z 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.0347055Z 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.0350433Z [3657/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.0353437Z 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.0357208Z 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.0938430Z 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.0941221Z 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.0943264Z [3658/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.0945426Z 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.0948147Z 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.3845802Z 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.3848137Z 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.3850193Z [3659/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.3852024Z 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.3854490Z 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.4881421Z 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.4882889Z 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.4884089Z [3660/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.4885305Z 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.4887002Z 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.5710858Z 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.5713870Z 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.5716254Z [3661/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.5718398Z 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.5720996Z 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.6442305Z 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.6443731Z 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.6445342Z [3662/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.6446766Z 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.6448137Z 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.7616220Z 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.7617653Z 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.7618952Z [3663/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.7621568Z 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.7624044Z 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.8323697Z 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.8325365Z 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.8326816Z [3664/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.8328079Z 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.8329448Z 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.9919548Z 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.9922142Z 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.9924678Z [3665/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:19.9927177Z 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.9929938Z 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:20.1537610Z 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:20.1539076Z 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:20.1540405Z [3666/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.1541599Z 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:20.1542897Z 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:20.1866605Z 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:20.1868090Z 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:20.1869456Z [3667/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.1870598Z 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:20.1871868Z 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:20.2205609Z 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:20.2208678Z 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:20.2211050Z [3668/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.2213251Z 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:20.2215843Z 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:20.2631524Z 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:20.2633004Z 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:20.2634253Z [3669/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.2635444Z 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:20.2636802Z 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:20.3217539Z 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:20.3219147Z 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:20.3221398Z [3670/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.3224111Z 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:20.3226631Z 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:20.7653052Z 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:20.7654629Z 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:20.7656324Z [3671/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.7659657Z 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:20.7662303Z 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:20.8095411Z 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:20.8098067Z 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:20.8102753Z [3672/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.8105801Z 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:20.8108118Z 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:20.9526359Z 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:20.9529084Z 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:20.9531544Z [3673/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:20.9533541Z 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:20.9536406Z 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:21.1125108Z 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:21.1126699Z 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:21.1128107Z [3674/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.1129351Z 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:21.1130811Z 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:21.1225865Z 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:21.1227331Z 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:21.1228638Z [3675/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.1229745Z 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:21.1231212Z 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:21.1919291Z 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:21.1922183Z 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:21.1924684Z [3676/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.1927013Z 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:21.1929454Z 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:21.2876381Z 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:21.2879177Z 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:21.2881478Z [3677/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.2883627Z 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:21.2886276Z 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:21.3778165Z 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:21.3781218Z 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:21.3782726Z [3678/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.3784004Z 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:21.3785337Z 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:21.4872332Z 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:21.4873866Z 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:21.4875209Z [3679/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.4876513Z 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:21.4878788Z 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:21.5892274Z 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:21.5895025Z 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:21.5897286Z [3680/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.5899308Z 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:21.5901844Z 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:21.8340222Z 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:21.8341801Z 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:21.8343126Z [3681/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:21.9062598Z 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:21.9063969Z [3682/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.0730763Z 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:22.0732033Z [3683/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.0733180Z 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:22.0734515Z 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:22.1217836Z 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:22.1220457Z 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:22.1222499Z [3684/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.1224426Z 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:22.1226847Z 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:22.1324553Z 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:22.1327286Z 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:22.1329478Z [3685/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.1331661Z 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:22.1334046Z 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:22.1993524Z 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:22.1996203Z 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:22.1998694Z [3686/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.2000796Z 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:22.2003248Z 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:22.5784338Z 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:22.5787112Z 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:22.5789500Z [3687/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.5791685Z 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:22.5794229Z 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:22.7404013Z 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:22.7405616Z 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:22.7406811Z [3688/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.7408111Z 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:22.7409538Z 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:22.8097589Z 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:22.8099267Z 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:22.8100565Z [3689/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.8101689Z 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:22.8103372Z 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:22.8105044Z 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:22.8106485Z 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:22.8107840Z 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:24:22.8110482Z 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:24:22.8112215Z with 2025-04-25T04:24:22.8112537Z [ 2025-04-25T04:24:22.8112900Z scalar_t=float, 2025-04-25T04:24:22.8113865Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-04-25T04:24:22.8114868Z ] 2025-04-25T04:24:22.8116845Z 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:24:22.8118958Z with 2025-04-25T04:24:22.8119297Z [ 2025-04-25T04:24:22.8119608Z scalar_t=float, 2025-04-25T04:24:22.8120670Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-04-25T04:24:22.8122315Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-04-25T04:24:22.8123330Z ] 2025-04-25T04:24:22.8127162Z 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:24:22.8131173Z with 2025-04-25T04:24:22.8131494Z [ 2025-04-25T04:24:22.8131829Z scalar_t=scalar_t, 2025-04-25T04:24:22.8132341Z data_t=at::vec::AVX2::Vectorized, 2025-04-25T04:24:22.8134015Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-04-25T04:24:22.8136175Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-04-25T04:24:22.8137282Z ] 2025-04-25T04:24:22.8140689Z 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:24:22.8143910Z with 2025-04-25T04:24:22.8144228Z [ 2025-04-25T04:24:22.8144573Z scalar_t=scalar_t 2025-04-25T04:24:22.8144999Z ] 2025-04-25T04:24:22.8148222Z 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:24:22.8151299Z with 2025-04-25T04:24:22.8151623Z [ 2025-04-25T04:24:22.8151955Z scalar_t=scalar_t 2025-04-25T04:24:22.8152435Z ] 2025-04-25T04:24:22.8154263Z 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:24:22.8155526Z with 2025-04-25T04:24:22.8155922Z [ 2025-04-25T04:24:22.8156119Z scalar_t=scalar_t 2025-04-25T04:24:22.8156345Z ] 2025-04-25T04:24:22.8538620Z 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:24:22.8541443Z with 2025-04-25T04:24:22.8541785Z [ 2025-04-25T04:24:22.8542157Z scalar_t=scalar_t 2025-04-25T04:24:22.8542598Z ] 2025-04-25T04:24:22.8544681Z 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:24:22.8547015Z [3690/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.8548826Z 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:22.8550822Z 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:22.8985903Z 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:22.8988564Z 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:22.8990695Z [3691/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:22.8992702Z 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:22.8995201Z 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:22.9950948Z 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:22.9952721Z 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:22.9954330Z [3692/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.0200274Z 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:23.0203207Z [3693/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.2349922Z 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:23.2351981Z [3694/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.3384794Z 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:23.3386867Z [3695/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.3388244Z 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:23.3390188Z 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:23.5390056Z 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:23.5392984Z 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:23.5395262Z [3696/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.5397691Z 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:23.5400179Z 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:23.7135845Z 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:23.7137463Z 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:23.7138930Z 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:24:23.7140254Z [3697/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.7141618Z 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:23.7144209Z 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:23.8918658Z 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:23.8920361Z 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:23.8921753Z [3698/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.8922956Z 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:23.8924571Z 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:23.9729434Z 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:23.9732746Z 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:23.9734949Z [3699/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.9737372Z 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:23.9740261Z 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:23.9849316Z 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:23.9850778Z 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:23.9852010Z [3700/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.9853107Z 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:23.9854344Z 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:23.9882496Z 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:23.9884996Z 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:23.9887179Z [3701/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-04-25T04:24:23.9889169Z 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:23.9891469Z 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:24.0275027Z 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:24.0277492Z 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:24.0280187Z [3702/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-04-25T04:24:24.0882644Z [3703/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-04-25T04:24:24.0884929Z 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:24.0888092Z 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:24.3470785Z 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:24.3473472Z 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:24.3475790Z [3704/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-04-25T04:24:24.4944585Z [3705/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-04-25T04:24:24.6408323Z [3706/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-04-25T04:24:24.7557594Z [3707/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-04-25T04:24:24.9941187Z [3708/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.1236692Z [3709/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.1306017Z [3710/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.1389901Z [3711/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.2139411Z [3712/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.3040754Z [3713/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.5097686Z [3714/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.7779342Z [3715/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.7947312Z [3716/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:25.9312455Z [3717/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.1776472Z [3718/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.2441342Z [3719/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.3067602Z [3720/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.3854197Z [3721/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.4535284Z [3722/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.4862187Z [3723/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.6367924Z [3724/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:26.9219050Z [3725/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.0602216Z [3726/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.1146833Z [3727/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.1826951Z [3728/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.4021431Z [3729/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.4328071Z [3730/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.6088763Z [3731/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.6605826Z [3732/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.7156025Z [3733/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.7723490Z [3734/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.7802996Z [3735/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:27.8423807Z [3736/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.4367382Z [3737/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.4577933Z [3738/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.5680928Z [3739/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.6511227Z [3740/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.6878522Z [3741/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.7651997Z [3742/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.7737730Z [3743/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:28.9341129Z [3744/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.1723400Z [3745/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.2431752Z [3746/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.3964478Z [3747/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.5486200Z [3748/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.6384897Z [3749/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.6646591Z [3750/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.7351316Z [3751/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:29.8635700Z [3752/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.0988407Z [3753/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.3713785Z [3754/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.3715092Z 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:24:30.3716731Z 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:24:30.3717620Z with 2025-04-25T04:24:30.3717805Z [ 2025-04-25T04:24:30.3718249Z scalar_t=float, 2025-04-25T04:24:30.3718851Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-04-25T04:24:30.3719449Z ] 2025-04-25T04:24:30.3720510Z 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:24:30.3722001Z with 2025-04-25T04:24:30.3722305Z [ 2025-04-25T04:24:30.3722657Z scalar_t=float, 2025-04-25T04:24:30.3723268Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-04-25T04:24:30.3724173Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-04-25T04:24:30.3724733Z ] 2025-04-25T04:24:30.3726715Z 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:24:30.3728890Z with 2025-04-25T04:24:30.3729072Z [ 2025-04-25T04:24:30.3729300Z scalar_t=scalar_t, 2025-04-25T04:24:30.3729740Z data_t=at::vec::AVX512::Vectorized, 2025-04-25T04:24:30.3731097Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-04-25T04:24:30.3733072Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-04-25T04:24:30.3734274Z ] 2025-04-25T04:24:30.3736816Z 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:24:30.3738562Z with 2025-04-25T04:24:30.3738765Z [ 2025-04-25T04:24:30.3738955Z scalar_t=scalar_t 2025-04-25T04:24:30.3739320Z ] 2025-04-25T04:24:30.3741143Z 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:24:30.3743394Z with 2025-04-25T04:24:30.3743640Z [ 2025-04-25T04:24:30.3743912Z scalar_t=scalar_t 2025-04-25T04:24:30.3744236Z ] 2025-04-25T04:24:30.3745741Z 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:24:30.3747189Z with 2025-04-25T04:24:30.3747430Z [ 2025-04-25T04:24:30.3747670Z scalar_t=scalar_t 2025-04-25T04:24:30.3747918Z ] 2025-04-25T04:24:30.4107051Z 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:24:30.4108810Z with 2025-04-25T04:24:30.4109015Z [ 2025-04-25T04:24:30.4109222Z scalar_t=scalar_t 2025-04-25T04:24:30.4122408Z ] 2025-04-25T04:24:30.4123631Z 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:24:30.4127355Z [3755/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.4548584Z [3756/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.5246794Z [3757/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.5628123Z [3758/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.6015731Z [3759/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.8791059Z [3760/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:30.8967589Z [3761/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.1115856Z [3762/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.1716742Z 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:24:31.1721429Z [3763/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.4904084Z [3764/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.5641571Z [3765/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.5866856Z [3766/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.6342772Z [3767/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.6517170Z [3768/7581] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-04-25T04:24:31.6992211Z [3769/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAContext.cpp.obj 2025-04-25T04:24:32.3746230Z [3770/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CuSparseHandlePool.cpp.obj 2025-04-25T04:24:32.4156501Z [3771/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\EmptyTensor.cpp.obj 2025-04-25T04:24:32.4454395Z [3772/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Exceptions.cpp.obj 2025-04-25T04:24:32.6969330Z [3773/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseDescriptors.cpp.obj 2025-04-25T04:24:32.8264330Z [3774/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CachingHostAllocator.cpp.obj 2025-04-25T04:24:32.9002915Z [3775/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_basic.cpp.obj 2025-04-25T04:24:33.0240763Z [3776/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_complex.cpp.obj 2025-04-25T04:24:33.0814546Z [3777/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\PeerToPeerAccess.cpp.obj 2025-04-25T04:24:33.3534019Z [3778/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\LazyNVRTC.cpp.obj 2025-04-25T04:24:33.6186712Z [3779/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGeneratorImpl.cpp.obj 2025-04-25T04:24:33.6741117Z [3780/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGraph.cpp.obj 2025-04-25T04:24:33.8668467Z [3781/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cpp.obj 2025-04-25T04:24:33.8936278Z [3782/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\CUDAHooks.cpp.obj 2025-04-25T04:24:34.0592168Z [3783/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Resize.cpp.obj 2025-04-25T04:24:34.2990085Z [3784/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cpp.obj 2025-04-25T04:24:34.4712148Z [3785/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvPlaceholders.cpp.obj 2025-04-25T04:24:34.5576433Z [3786/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\AffineGridGenerator.cpp.obj 2025-04-25T04:24:34.8125891Z [3787/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\BatchNorm.cpp.obj 2025-04-25T04:24:35.0674643Z [3788/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v7.cpp.obj 2025-04-25T04:24:35.0966201Z [3789/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvShared.cpp.obj 2025-04-25T04:24:35.4567635Z [3790/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v8.cpp.obj 2025-04-25T04:24:35.5205185Z [3791/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\GridSampler.cpp.obj 2025-04-25T04:24:35.6475117Z [3792/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\LossCTC.cpp.obj 2025-04-25T04:24:35.9754092Z [3793/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\BatchNorm_miopen.cpp.obj 2025-04-25T04:24:36.0425302Z [3794/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\Conv_miopen.cpp.obj 2025-04-25T04:24:36.0587104Z [3795/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\RNN.cpp.obj 2025-04-25T04:24:36.3212015Z [3796/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\RNN_miopen.cpp.obj 2025-04-25T04:24:37.4474720Z [3797/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\BinaryOps.cpp.obj 2025-04-25T04:24:38.3733815Z [3798/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\MHA.cpp.obj 2025-04-25T04:24:38.8210780Z [3799/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerUtils.cpp.obj 2025-04-25T04:24:38.9015683Z [3800/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cpp.obj 2025-04-25T04:24:39.7792851Z [3801/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvPrepack.cpp.obj 2025-04-25T04:24:39.9302329Z [3802/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Conv.cpp.obj 2025-04-25T04:24:40.0675359Z [3803/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvUnpackImpl.cpp.obj 2025-04-25T04:24:41.1147768Z [3804/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp.obj 2025-04-25T04:24:41.3941699Z [3805/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Linear.cpp.obj 2025-04-25T04:24:42.1118317Z [3806/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearPrepack.cpp.obj 2025-04-25T04:24:42.1781925Z [3807/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Handle.cpp.obj 2025-04-25T04:24:42.3132722Z [3808/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\cuSPARSELtOps.cpp.obj 2025-04-25T04:24:42.5235910Z [3809/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Pooling.cpp.obj 2025-04-25T04:24:42.5874216Z [3810/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearUnpackImpl.cpp.obj 2025-04-25T04:24:43.4051066Z [3811/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\distributed\c10d\reducer_cuda.cpp.obj 2025-04-25T04:24:43.5896778Z [3812/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.cpp.obj 2025-04-25T04:24:43.6923488Z [3813/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\AutocastRNN.cpp.obj 2025-04-25T04:24:44.4387274Z [3814/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Sleep.cu.obj 2025-04-25T04:24:45.0340744Z Sleep.cu 2025-04-25T04:24:45.0341229Z tmpxft_00001700_00000000-7_Sleep.cudafe1.cpp 2025-04-25T04:24:45.0342459Z [3815/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Descriptors.cpp.obj 2025-04-25T04:24:45.8857519Z [3816/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Types.cpp.obj 2025-04-25T04:24:46.6556830Z [3817/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorFactories.cu.obj 2025-04-25T04:24:47.8569378Z TensorFactories.cu 2025-04-25T04:24:47.8569930Z tmpxft_000014e8_00000000-7_TensorFactories.cudafe1.cpp 2025-04-25T04:24:47.8571124Z [3818/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortKeys.cu.obj 2025-04-25T04:24:48.0158631Z cub-RadixSortKeys.cu 2025-04-25T04:24:48.0159179Z tmpxft_00000f88_00000000-7_cub-RadixSortKeys.cudafe1.cpp 2025-04-25T04:24:48.0161797Z [3819/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-f16-8.cu.obj 2025-04-25T04:24:48.0860954Z cub-RadixSortPairs-f16-8.cu 2025-04-25T04:24:48.0861402Z tmpxft_00000088_00000000-7_cub-RadixSortPairs-f16-8.cudafe1.cpp 2025-04-25T04:24:48.0862120Z [3820/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-1.cu.obj 2025-04-25T04:24:48.6687097Z cub-RadixSortPairs-int32-1.cu 2025-04-25T04:24:48.6687944Z tmpxft_00000e4c_00000000-7_cub-RadixSortPairs-int32-1.cudafe1.cpp 2025-04-25T04:24:48.6688704Z [3821/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-2.cu.obj 2025-04-25T04:24:49.2569899Z cub-RadixSortPairs-int32-2.cu 2025-04-25T04:24:49.2570709Z tmpxft_00000fe8_00000000-7_cub-RadixSortPairs-int32-2.cudafe1.cpp 2025-04-25T04:24:49.2572327Z [3822/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-4.cu.obj 2025-04-25T04:24:50.1576256Z cub-RadixSortPairs-int32-4.cu 2025-04-25T04:24:50.1576718Z tmpxft_00000408_00000000-7_cub-RadixSortPairs-int32-4.cudafe1.cpp 2025-04-25T04:24:50.1577513Z [3823/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-1.cu.obj 2025-04-25T04:24:50.8411484Z cub-RadixSortPairs-int64-1.cu 2025-04-25T04:24:50.8411967Z tmpxft_00001628_00000000-7_cub-RadixSortPairs-int64-1.cudafe1.cpp 2025-04-25T04:24:50.8412954Z [3824/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-2.cu.obj 2025-04-25T04:24:52.1454932Z cub-RadixSortPairs-int64-2.cu 2025-04-25T04:24:52.1455395Z tmpxft_00000380_00000000-7_cub-RadixSortPairs-int64-2.cudafe1.cpp 2025-04-25T04:24:52.1456237Z [3825/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-4.cu.obj 2025-04-25T04:24:52.2702945Z cub-RadixSortPairs-int64-4.cu 2025-04-25T04:24:52.2703780Z tmpxft_00000b24_00000000-7_cub-RadixSortPairs-int64-4.cudafe1.cpp 2025-04-25T04:24:52.2705069Z [3826/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint16-8.cu.obj 2025-04-25T04:24:52.2951311Z cub-RadixSortPairs-uint16-8.cu 2025-04-25T04:24:52.2951868Z tmpxft_0000137c_00000000-7_cub-RadixSortPairs-uint16-8.cudafe1.cpp 2025-04-25T04:24:52.2952610Z [3827/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-scalars.cu.obj 2025-04-25T04:24:52.8422656Z cub-RadixSortPairs-scalars.cu 2025-04-25T04:24:52.8423494Z tmpxft_00000d40_00000000-7_cub-RadixSortPairs-scalars.cudafe1.cpp 2025-04-25T04:24:52.8425074Z [3828/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint32-8.cu.obj 2025-04-25T04:24:53.1953411Z cub-RadixSortPairs-uint32-8.cu 2025-04-25T04:24:53.1955101Z tmpxft_00000e50_00000000-7_cub-RadixSortPairs-uint32-8.cudafe1.cpp 2025-04-25T04:24:53.1957264Z [3829/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\IndexUtils.cu.obj 2025-04-25T04:24:53.4832760Z IndexUtils.cu 2025-04-25T04:24:53.4842390Z tmpxft_000001c0_00000000-7_IndexUtils.cudafe1.cpp 2025-04-25T04:24:53.4843659Z [3830/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint64-8.cu.obj 2025-04-25T04:24:54.3658856Z cub-RadixSortPairs-uint64-8.cu 2025-04-25T04:24:54.3659668Z tmpxft_00000744_00000000-7_cub-RadixSortPairs-uint64-8.cudafe1.cpp 2025-04-25T04:24:54.3660860Z [3831/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub.cu.obj 2025-04-25T04:24:55.1989064Z cub.cu 2025-04-25T04:24:55.1989364Z tmpxft_00001588_00000000-7_cub.cudafe1.cpp 2025-04-25T04:24:55.1990074Z [3832/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AbsKernel.cu.obj 2025-04-25T04:24:55.2756975Z AbsKernel.cu 2025-04-25T04:24:55.2757540Z tmpxft_000017a0_00000000-7_AbsKernel.cudafe1.cpp 2025-04-25T04:24:55.2758716Z [3833/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationEluKernel.cu.obj 2025-04-25T04:24:55.6836787Z ActivationEluKernel.cu 2025-04-25T04:24:55.6837653Z tmpxft_000013d4_00000000-7_ActivationEluKernel.cudafe1.cpp 2025-04-25T04:24:55.6838849Z [3834/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGeluKernel.cu.obj 2025-04-25T04:24:55.8464925Z ActivationGeluKernel.cu 2025-04-25T04:24:55.8465847Z tmpxft_00000f60_00000000-7_ActivationGeluKernel.cudafe1.cpp 2025-04-25T04:24:55.8467680Z [3835/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\jiterator.cu.obj 2025-04-25T04:24:56.0447601Z jiterator.cu 2025-04-25T04:24:56.0451074Z tmpxft_000014c8_00000000-7_jiterator.cudafe1.cpp 2025-04-25T04:24:56.0453396Z [3836/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGluKernel.cu.obj 2025-04-25T04:24:56.4252019Z ActivationGluKernel.cu 2025-04-25T04:24:56.4253486Z tmpxft_0000104c_00000000-7_ActivationGluKernel.cudafe1.cpp 2025-04-25T04:24:56.4256099Z [3837/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardshrinkKernel.cu.obj 2025-04-25T04:24:57.3422572Z ActivationHardshrinkKernel.cu 2025-04-25T04:24:57.3423276Z tmpxft_00001114_00000000-7_ActivationHardshrinkKernel.cudafe1.cpp 2025-04-25T04:24:57.3424841Z [3838/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardsigmoidKernel.cu.obj 2025-04-25T04:24:58.2142809Z ActivationHardsigmoidKernel.cu 2025-04-25T04:24:58.2143312Z tmpxft_000007fc_00000000-7_ActivationHardsigmoidKernel.cudafe1.cpp 2025-04-25T04:24:58.2144230Z [3839/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardswishKernel.cu.obj 2025-04-25T04:24:58.2302994Z ActivationHardswishKernel.cu 2025-04-25T04:24:58.2303819Z tmpxft_00000490_00000000-7_ActivationHardswishKernel.cudafe1.cpp 2025-04-25T04:24:58.2305157Z [3840/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardtanhKernel.cu.obj 2025-04-25T04:24:58.6102346Z ActivationHardtanhKernel.cu 2025-04-25T04:24:58.6103087Z tmpxft_00001284_00000000-7_ActivationHardtanhKernel.cudafe1.cpp 2025-04-25T04:24:58.6104622Z [3841/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLeakyReluKernel.cu.obj 2025-04-25T04:24:58.8069564Z ActivationLeakyReluKernel.cu 2025-04-25T04:24:58.8070381Z tmpxft_000005a4_00000000-7_ActivationLeakyReluKernel.cudafe1.cpp 2025-04-25T04:24:58.8071894Z [3842/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLogSigmoidKernel.cu.obj 2025-04-25T04:24:58.9883933Z ActivationLogSigmoidKernel.cu 2025-04-25T04:24:58.9884775Z tmpxft_000015f8_00000000-7_ActivationLogSigmoidKernel.cudafe1.cpp 2025-04-25T04:24:58.9886235Z [3843/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationMishKernel.cu.obj 2025-04-25T04:24:59.4228259Z ActivationMishKernel.cu 2025-04-25T04:24:59.4229467Z tmpxft_00000c50_00000000-7_ActivationMishKernel.cudafe1.cpp 2025-04-25T04:24:59.4230960Z [3844/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationPreluKernel.cu.obj 2025-04-25T04:25:00.3593265Z ActivationPreluKernel.cu 2025-04-25T04:25:00.3594036Z tmpxft_000003c8_00000000-7_ActivationPreluKernel.cudafe1.cpp 2025-04-25T04:25:00.3595279Z [3845/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSiluKernel.cu.obj 2025-04-25T04:25:01.2288387Z ActivationSiluKernel.cu 2025-04-25T04:25:01.2289131Z tmpxft_000015e0_00000000-7_ActivationSiluKernel.cudafe1.cpp 2025-04-25T04:25:01.2290576Z [3846/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftshrinkKernel.cu.obj 2025-04-25T04:25:01.2408890Z ActivationSoftshrinkKernel.cu 2025-04-25T04:25:01.2409709Z tmpxft_000017b4_00000000-7_ActivationSoftshrinkKernel.cudafe1.cpp 2025-04-25T04:25:01.2411001Z [3847/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftplusKernel.cu.obj 2025-04-25T04:25:01.5862925Z ActivationSoftplusKernel.cu 2025-04-25T04:25:01.5863725Z tmpxft_00000ea4_00000000-7_ActivationSoftplusKernel.cudafe1.cpp 2025-04-25T04:25:01.5865171Z [3848/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationThresholdKernel.cu.obj 2025-04-25T04:25:02.6521055Z ActivationThresholdKernel.cu 2025-04-25T04:25:02.6521640Z tmpxft_00000cc4_00000000-7_ActivationThresholdKernel.cudafe1.cpp 2025-04-25T04:25:02.6522643Z [3849/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling.cu.obj 2025-04-25T04:25:02.8417504Z AdaptiveAveragePooling.cu 2025-04-25T04:25:02.8420418Z tmpxft_00001710_00000000-7_AdaptiveAveragePooling.cudafe1.cpp 2025-04-25T04:25:02.8421720Z [3850/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling3d.cu.obj 2025-04-25T04:25:03.2990015Z AdaptiveAveragePooling3d.cu 2025-04-25T04:25:03.2990505Z tmpxft_000002e8_00000000-7_AdaptiveAveragePooling3d.cudafe1.cpp 2025-04-25T04:25:03.2991750Z [3851/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling2d.cu.obj 2025-04-25T04:25:04.1428075Z AdaptiveMaxPooling2d.cu 2025-04-25T04:25:04.1428793Z tmpxft_0000122c_00000000-7_AdaptiveMaxPooling2d.cudafe1.cpp 2025-04-25T04:25:04.1430444Z [3852/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling3d.cu.obj 2025-04-25T04:25:04.9000825Z AdaptiveMaxPooling3d.cu 2025-04-25T04:25:04.9001531Z tmpxft_00001788_00000000-7_AdaptiveMaxPooling3d.cudafe1.cpp 2025-04-25T04:25:04.9002889Z [3853/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool2d.cu.obj 2025-04-25T04:25:04.9955810Z AveragePool2d.cu 2025-04-25T04:25:04.9956443Z tmpxft_0000128c_00000000-7_AveragePool2d.cudafe1.cpp 2025-04-25T04:25:04.9957701Z [3854/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AmpKernels.cu.obj 2025-04-25T04:25:05.2430785Z AmpKernels.cu 2025-04-25T04:25:05.2431481Z tmpxft_00001490_00000000-7_AmpKernels.cudafe1.cpp 2025-04-25T04:25:05.2433149Z [3855/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool3d.cu.obj 2025-04-25T04:25:05.6545007Z AveragePool3d.cu 2025-04-25T04:25:05.6545910Z tmpxft_000012c8_00000000-7_AveragePool3d.cudafe1.cpp 2025-04-25T04:25:05.6547026Z [3856/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryBitwiseOpsKernels.cu.obj 2025-04-25T04:25:05.8421546Z BinaryBitwiseOpsKernels.cu 2025-04-25T04:25:05.8422397Z tmpxft_00000944_00000000-7_BinaryBitwiseOpsKernels.cudafe1.cpp 2025-04-25T04:25:05.8423787Z [3857/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivFloorKernel.cu.obj 2025-04-25T04:25:06.1462124Z BinaryDivFloorKernel.cu 2025-04-25T04:25:06.1463760Z tmpxft_00001090_00000000-7_BinaryDivFloorKernel.cudafe1.cpp 2025-04-25T04:25:06.1466054Z [3858/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTrueKernel.cu.obj 2025-04-25T04:25:07.0001431Z BinaryDivTrueKernel.cu 2025-04-25T04:25:07.0002138Z tmpxft_000017b0_00000000-7_BinaryDivTrueKernel.cudafe1.cpp 2025-04-25T04:25:07.0003904Z [3859/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTruncKernel.cu.obj 2025-04-25T04:25:07.9077044Z BinaryDivTruncKernel.cu 2025-04-25T04:25:07.9077779Z tmpxft_0000017c_00000000-7_BinaryDivTruncKernel.cudafe1.cpp 2025-04-25T04:25:07.9079379Z [3860/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryGeometricKernels.cu.obj 2025-04-25T04:25:08.0722340Z BinaryGeometricKernels.cu 2025-04-25T04:25:08.0723154Z tmpxft_00001114_00000000-7_BinaryGeometricKernels.cudafe1.cpp 2025-04-25T04:25:08.0724569Z [3861/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryLogicalOpsKernels.cu.obj 2025-04-25T04:25:08.1146436Z BinaryLogicalOpsKernels.cu 2025-04-25T04:25:08.1147236Z tmpxft_000011f0_00000000-7_BinaryLogicalOpsKernels.cudafe1.cpp 2025-04-25T04:25:08.1148615Z [3862/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscBackwardOpsKernels.cu.obj 2025-04-25T04:25:08.7517818Z BinaryMiscBackwardOpsKernels.cu 2025-04-25T04:25:08.7518363Z tmpxft_00001538_00000000-7_BinaryMiscBackwardOpsKernels.cudafe1.cpp 2025-04-25T04:25:08.7519129Z [3863/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscOpsKernels.cu.obj 2025-04-25T04:25:08.8322142Z BinaryMiscOpsKernels.cu 2025-04-25T04:25:08.8322853Z tmpxft_0000113c_00000000-7_BinaryMiscOpsKernels.cudafe1.cpp 2025-04-25T04:25:08.8324177Z [3864/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMulKernel.cu.obj 2025-04-25T04:25:09.1715810Z BinaryMulKernel.cu 2025-04-25T04:25:09.1717074Z tmpxft_00000ea8_00000000-7_BinaryMulKernel.cudafe1.cpp 2025-04-25T04:25:09.1720188Z [3865/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryRemainderKernel.cu.obj 2025-04-25T04:25:10.0579343Z BinaryRemainderKernel.cu 2025-04-25T04:25:10.0580103Z tmpxft_000010c4_00000000-7_BinaryRemainderKernel.cudafe1.cpp 2025-04-25T04:25:10.0581766Z [3866/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryShiftOpsKernels.cu.obj 2025-04-25T04:25:11.6368155Z BinaryShiftOpsKernels.cu 2025-04-25T04:25:11.6368913Z tmpxft_000016d4_00000000-7_BinaryShiftOpsKernels.cudafe1.cpp 2025-04-25T04:25:11.6370239Z [3867/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CUDAScalar.cu.obj 2025-04-25T04:25:11.7280750Z CUDAScalar.cu 2025-04-25T04:25:11.7281315Z tmpxft_000016c4_00000000-7_CUDAScalar.cudafe1.cpp 2025-04-25T04:25:11.7282348Z [3868/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Bucketization.cu.obj 2025-04-25T04:25:11.7316113Z Bucketization.cu 2025-04-25T04:25:11.7316624Z tmpxft_000004c4_00000000-7_Bucketization.cudafe1.cpp 2025-04-25T04:25:11.7317733Z [3869/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Col2Im.cu.obj 2025-04-25T04:25:11.8434013Z Col2Im.cu 2025-04-25T04:25:11.8434498Z tmpxft_000016f4_00000000-7_Col2Im.cudafe1.cpp 2025-04-25T04:25:11.8435702Z [3870/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareKernels.cu.obj 2025-04-25T04:25:11.8526206Z CompareKernels.cu 2025-04-25T04:25:11.8526879Z tmpxft_000013fc_00000000-7_CompareKernels.cudafe1.cpp 2025-04-25T04:25:11.8528115Z [3871/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareEQKernel.cu.obj 2025-04-25T04:25:13.0538306Z CompareEQKernel.cu 2025-04-25T04:25:13.0539056Z tmpxft_000005e0_00000000-7_CompareEQKernel.cudafe1.cpp 2025-04-25T04:25:13.0541531Z [3872/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ComplexKernel.cu.obj 2025-04-25T04:25:13.9878292Z ComplexKernel.cu 2025-04-25T04:25:13.9878781Z tmpxft_000017a0_00000000-7_ComplexKernel.cudafe1.cpp 2025-04-25T04:25:13.9879955Z [3873/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ConvolutionMM2d.cu.obj 2025-04-25T04:25:14.7692867Z ConvolutionMM2d.cu 2025-04-25T04:25:14.7693619Z tmpxft_00001660_00000000-7_ConvolutionMM2d.cudafe1.cpp 2025-04-25T04:25:14.7695105Z [3874/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CopysignKernel.cu.obj 2025-04-25T04:25:15.2888455Z CopysignKernel.cu 2025-04-25T04:25:15.2888952Z tmpxft_000009e8_00000000-7_CopysignKernel.cudafe1.cpp 2025-04-25T04:25:15.2890690Z [3875/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CrossKernel.cu.obj 2025-04-25T04:25:15.5190448Z CrossKernel.cu 2025-04-25T04:25:15.5190788Z tmpxft_0000105c_00000000-7_CrossKernel.cudafe1.cpp 2025-04-25T04:25:15.5191487Z [3876/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Copy.cu.obj 2025-04-25T04:25:16.0836077Z Copy.cu 2025-04-25T04:25:16.0836431Z tmpxft_00001648_00000000-7_Copy.cudafe1.cpp 2025-04-25T04:25:16.0837281Z [3877/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumminmaxKernel.cu.obj 2025-04-25T04:25:16.2060996Z CumminmaxKernel.cu 2025-04-25T04:25:16.2061639Z tmpxft_000006d4_00000000-7_CumminmaxKernel.cudafe1.cpp 2025-04-25T04:25:16.2063409Z [3878/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumprodKernel.cu.obj 2025-04-25T04:25:17.3706750Z CumprodKernel.cu 2025-04-25T04:25:17.3707434Z tmpxft_0000169c_00000000-7_CumprodKernel.cudafe1.cpp 2025-04-25T04:25:17.3708495Z [3879/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumsumKernel.cu.obj 2025-04-25T04:25:18.0605870Z CumsumKernel.cu 2025-04-25T04:25:18.0606542Z tmpxft_000012ac_00000000-7_CumsumKernel.cudafe1.cpp 2025-04-25T04:25:18.0608223Z [3880/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv2d.cu.obj 2025-04-25T04:25:18.5905209Z DepthwiseConv2d.cu 2025-04-25T04:25:18.5906475Z tmpxft_00001108_00000000-7_DepthwiseConv2d.cudafe1.cpp 2025-04-25T04:25:18.5907352Z [3881/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv3d.cu.obj 2025-04-25T04:25:19.1665452Z DepthwiseConv3d.cu 2025-04-25T04:25:19.1666128Z tmpxft_000004d0_00000000-7_DepthwiseConv3d.cudafe1.cpp 2025-04-25T04:25:19.1667571Z [3882/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool2d.cu.obj 2025-04-25T04:25:19.5227366Z DilatedMaxPool2d.cu 2025-04-25T04:25:19.5227990Z tmpxft_000014fc_00000000-7_DilatedMaxPool2d.cudafe1.cpp 2025-04-25T04:25:19.5229568Z [3883/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool3d.cu.obj 2025-04-25T04:25:19.7401752Z DilatedMaxPool3d.cu 2025-04-25T04:25:19.7402510Z tmpxft_00000358_00000000-7_DilatedMaxPool3d.cudafe1.cpp 2025-04-25T04:25:19.7404459Z [3884/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionBernoulli.cu.obj 2025-04-25T04:25:19.8778854Z DistributionBernoulli.cu 2025-04-25T04:25:19.8779700Z tmpxft_00000b3c_00000000-7_DistributionBernoulli.cudafe1.cpp 2025-04-25T04:25:19.8784502Z [3885/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistanceKernel.cu.obj 2025-04-25T04:25:20.5627286Z DistanceKernel.cu 2025-04-25T04:25:20.5628614Z tmpxft_0000093c_00000000-7_DistanceKernel.cudafe1.cpp 2025-04-25T04:25:20.5630360Z [3886/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionCauchyKernel.cu.obj 2025-04-25T04:25:21.3720436Z DistributionCauchyKernel.cu 2025-04-25T04:25:21.3721256Z tmpxft_00001330_00000000-7_DistributionCauchyKernel.cudafe1.cpp 2025-04-25T04:25:21.3722750Z [3887/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionExponentialKernel.cu.obj 2025-04-25T04:25:21.9294266Z DistributionExponentialKernel.cu 2025-04-25T04:25:21.9294971Z tmpxft_00000c50_00000000-7_DistributionExponentialKernel.cudafe1.cpp 2025-04-25T04:25:21.9295857Z [3888/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionGeometricKernel.cu.obj 2025-04-25T04:25:22.5658605Z DistributionGeometricKernel.cu 2025-04-25T04:25:22.5659530Z tmpxft_000006b0_00000000-7_DistributionGeometricKernel.cudafe1.cpp 2025-04-25T04:25:22.5661071Z [3889/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionLogNormalKernel.cu.obj 2025-04-25T04:25:22.9490331Z DistributionLogNormalKernel.cu 2025-04-25T04:25:22.9491271Z tmpxft_000014cc_00000000-7_DistributionLogNormalKernel.cudafe1.cpp 2025-04-25T04:25:23.0722183Z [3890/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionNormal.cu.obj 2025-04-25T04:25:23.0723472Z DistributionNormal.cu 2025-04-25T04:25:23.0724044Z tmpxft_00000804_00000000-7_DistributionNormal.cudafe1.cpp 2025-04-25T04:25:23.0725320Z [3891/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionRandomKernel.cu.obj 2025-04-25T04:25:23.1596744Z DistributionRandomKernel.cu 2025-04-25T04:25:23.1597498Z tmpxft_0000109c_00000000-7_DistributionRandomKernel.cudafe1.cpp 2025-04-25T04:25:23.1599147Z [3892/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionUniform.cu.obj 2025-04-25T04:25:24.2610761Z DistributionUniform.cu 2025-04-25T04:25:24.2612153Z tmpxft_000010d4_00000000-7_DistributionUniform.cudafe1.cpp 2025-04-25T04:25:24.2614375Z [3893/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cu.obj 2025-04-25T04:25:25.5661325Z Distributions.cu 2025-04-25T04:25:25.5661797Z tmpxft_00000f5c_00000000-7_Distributions.cudafe1.cpp 2025-04-25T04:25:25.5662438Z [3894/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Dropout.cu.obj 2025-04-25T04:25:26.0331893Z Dropout.cu 2025-04-25T04:25:26.0332413Z tmpxft_00001110_00000000-7_Dropout.cudafe1.cpp 2025-04-25T04:25:26.0333598Z [3895/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FillKernel.cu.obj 2025-04-25T04:25:26.9896227Z FillKernel.cu 2025-04-25T04:25:26.9896782Z tmpxft_00001590_00000000-7_FillKernel.cudafe1.cpp 2025-04-25T04:25:26.9897946Z [3896/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FlattenIndicesKernel.cu.obj 2025-04-25T04:25:27.0912307Z FlattenIndicesKernel.cu 2025-04-25T04:25:27.0913048Z tmpxft_00000750_00000000-7_FlattenIndicesKernel.cudafe1.cpp 2025-04-25T04:25:27.0914402Z [3897/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Embedding.cu.obj 2025-04-25T04:25:27.8253245Z Embedding.cu 2025-04-25T04:25:27.8253756Z tmpxft_00000cdc_00000000-7_Embedding.cudafe1.cpp 2025-04-25T04:25:27.8255336Z [3898/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBackwardKernel.cu.obj 2025-04-25T04:25:27.9432939Z EmbeddingBackwardKernel.cu 2025-04-25T04:25:27.9433753Z tmpxft_0000101c_00000000-7_EmbeddingBackwardKernel.cudafe1.cpp 2025-04-25T04:25:27.9435196Z [3899/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpList.cu.obj 2025-04-25T04:25:28.1534426Z ForeachBinaryOpList.cu 2025-04-25T04:25:28.1535078Z tmpxft_0000176c_00000000-7_ForeachBinaryOpList.cudafe1.cpp 2025-04-25T04:25:28.1536259Z [3900/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBag.cu.obj 2025-04-25T04:25:29.1548510Z EmbeddingBag.cu 2025-04-25T04:25:29.1549094Z tmpxft_00000dec_00000000-7_EmbeddingBag.cudafe1.cpp 2025-04-25T04:25:29.1550371Z [3901/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalar.cu.obj 2025-04-25T04:25:29.6733591Z ForeachBinaryOpScalar.cu 2025-04-25T04:25:29.6754796Z tmpxft_0000148c_00000000-7_ForeachBinaryOpScalar.cudafe1.cpp 2025-04-25T04:25:29.6757694Z [3902/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarList.cu.obj 2025-04-25T04:25:30.8390383Z ForeachBinaryOpScalarList.cu 2025-04-25T04:25:30.8391252Z tmpxft_0000024c_00000000-7_ForeachBinaryOpScalarList.cudafe1.cpp 2025-04-25T04:25:30.8392852Z [3903/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarTensor.cu.obj 2025-04-25T04:25:30.9921065Z ForeachBinaryOpScalarTensor.cu 2025-04-25T04:25:30.9921943Z tmpxft_00001090_00000000-7_ForeachBinaryOpScalarTensor.cudafe1.cpp 2025-04-25T04:25:30.9923405Z [3904/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachPointwiseOp.cu.obj 2025-04-25T04:25:31.6443089Z ForeachPointwiseOp.cu 2025-04-25T04:25:31.6444833Z tmpxft_0000134c_00000000-7_ForeachPointwiseOp.cudafe1.cpp 2025-04-25T04:25:31.6447174Z [3905/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachTernaryOp.cu.obj 2025-04-25T04:25:31.6639999Z ForeachTernaryOp.cu 2025-04-25T04:25:31.6640389Z tmpxft_00000c18_00000000-7_ForeachTernaryOp.cudafe1.cpp 2025-04-25T04:25:31.6641463Z [3906/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachReduceOp.cu.obj 2025-04-25T04:25:31.8689223Z ForeachReduceOp.cu 2025-04-25T04:25:31.8689978Z tmpxft_000017b0_00000000-7_ForeachReduceOp.cudafe1.cpp 2025-04-25T04:25:31.8691220Z [3907/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachUnaryOp.cu.obj 2025-04-25T04:25:32.8337530Z ForeachUnaryOp.cu 2025-04-25T04:25:32.8338144Z tmpxft_00000730_00000000-7_ForeachUnaryOp.cudafe1.cpp 2025-04-25T04:25:32.8339436Z [3908/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool2d.cu.obj 2025-04-25T04:25:33.3941779Z FractionalMaxPool2d.cu 2025-04-25T04:25:33.3947285Z tmpxft_00001454_00000000-7_FractionalMaxPool2d.cudafe1.cpp 2025-04-25T04:25:33.3948610Z [3909/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool3d.cu.obj 2025-04-25T04:25:33.7658286Z FractionalMaxPool3d.cu 2025-04-25T04:25:33.7659421Z tmpxft_00001378_00000000-7_FractionalMaxPool3d.cudafe1.cpp 2025-04-25T04:25:33.7660207Z [3910/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FunctionOfAMatrixUtilsKernel.cu.obj 2025-04-25T04:25:34.1675846Z FunctionOfAMatrixUtilsKernel.cu 2025-04-25T04:25:34.1676699Z tmpxft_00000c24_00000000-7_FunctionOfAMatrixUtilsKernel.cudafe1.cpp 2025-04-25T04:25:34.1678121Z [3911/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamKernel.cu.obj 2025-04-25T04:25:34.8348539Z FusedAdamKernel.cu 2025-04-25T04:25:34.8349136Z tmpxft_000010d8_00000000-7_FusedAdamKernel.cudafe1.cpp 2025-04-25T04:25:34.8350367Z [3912/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamWKernel.cu.obj 2025-04-25T04:25:34.9040894Z FusedAdamWKernel.cu 2025-04-25T04:25:34.9042802Z tmpxft_00000d0c_00000000-7_FusedAdamWKernel.cudafe1.cpp 2025-04-25T04:25:34.9044719Z [3913/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GcdLcmKernel.cu.obj 2025-04-25T04:25:35.4536226Z GcdLcmKernel.cu 2025-04-25T04:25:35.4536791Z tmpxft_00000bc0_00000000-7_GcdLcmKernel.cudafe1.cpp 2025-04-25T04:25:35.4537955Z [3914/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedSgdKernel.cu.obj 2025-04-25T04:25:35.7966153Z FusedSgdKernel.cu 2025-04-25T04:25:35.7966766Z tmpxft_000017e0_00000000-7_FusedSgdKernel.cudafe1.cpp 2025-04-25T04:25:35.7968148Z [3915/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cu.obj 2025-04-25T04:25:36.8655858Z GridSampler.cu 2025-04-25T04:25:36.8656294Z tmpxft_000007d4_00000000-7_GridSampler.cudafe1.cpp 2025-04-25T04:25:36.8657521Z [3916/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IGammaKernel.cu.obj 2025-04-25T04:25:37.0398704Z IGammaKernel.cu 2025-04-25T04:25:37.0399340Z tmpxft_00000078_00000000-7_IGammaKernel.cudafe1.cpp 2025-04-25T04:25:37.0401990Z [3917/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GroupMM.cu.obj 2025-04-25T04:25:37.9140940Z GroupMM.cu 2025-04-25T04:25:37.9141408Z tmpxft_00000f7c_00000000-7_GroupMM.cudafe1.cpp 2025-04-25T04:25:37.9142356Z [3918/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cu.obj 2025-04-25T04:25:38.0427804Z IndexKernel.cu 2025-04-25T04:25:38.8318717Z tmpxft_0000073c_00000000-7_IndexKernel.cudafe1.cpp 2025-04-25T04:25:38.8319909Z [3919/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Im2Col.cu.obj 2025-04-25T04:25:38.8321417Z Im2Col.cu 2025-04-25T04:25:38.8321910Z tmpxft_0000073c_00000000-7_Im2Col.cudafe1.cpp 2025-04-25T04:25:38.8322945Z [3920/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Lerp.cu.obj 2025-04-25T04:25:39.3026334Z Lerp.cu 2025-04-25T04:25:39.3026619Z tmpxft_000014f0_00000000-7_Lerp.cudafe1.cpp 2025-04-25T04:25:39.3027479Z [3921/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Indexing.cu.obj 2025-04-25T04:25:39.9805158Z Indexing.cu 2025-04-25T04:25:39.9805573Z tmpxft_00001690_00000000-7_Indexing.cudafe1.cpp 2025-04-25T04:25:39.9806720Z [3922/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogAddExpKernel.cu.obj 2025-04-25T04:25:40.5802894Z LogAddExpKernel.cu 2025-04-25T04:25:40.5803558Z tmpxft_0000039c_00000000-7_LogAddExpKernel.cudafe1.cpp 2025-04-25T04:25:40.5804868Z [3923/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebra.cu.obj 2025-04-25T04:25:40.7427379Z LinearAlgebra.cu 2025-04-25T04:25:40.7427987Z tmpxft_00000d4c_00000000-7_LinearAlgebra.cudafe1.cpp 2025-04-25T04:25:40.7429032Z [3924/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LegacyThrustHelpers.cu.obj 2025-04-25T04:25:41.7239041Z LegacyThrustHelpers.cu 2025-04-25T04:25:41.7239784Z tmpxft_00000994_00000000-7_LegacyThrustHelpers.cudafe1.cpp 2025-04-25T04:25:41.7241083Z [3925/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Loss.cu.obj 2025-04-25T04:25:42.2349640Z Loss.cu 2025-04-25T04:25:42.2350243Z tmpxft_00000104_00000000-7_Loss.cudafe1.cpp 2025-04-25T04:25:42.2351441Z [3926/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogcumsumexpKernel.cu.obj 2025-04-25T04:25:42.7868144Z LogcumsumexpKernel.cu 2025-04-25T04:25:42.7868965Z tmpxft_00001200_00000000-7_LogcumsumexpKernel.cudafe1.cpp 2025-04-25T04:25:42.7870749Z [3927/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxMinElementwiseKernel.cu.obj 2025-04-25T04:25:42.9219787Z MaxMinElementwiseKernel.cu 2025-04-25T04:25:42.9220545Z tmpxft_000010c0_00000000-7_MaxMinElementwiseKernel.cudafe1.cpp 2025-04-25T04:25:42.9221862Z [3928/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LossCTC.cu.obj 2025-04-25T04:25:43.9863969Z LossCTC.cu 2025-04-25T04:25:43.9864523Z tmpxft_00000fdc_00000000-7_LossCTC.cudafe1.cpp 2025-04-25T04:25:43.9865805Z [3929/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxUnpooling.cu.obj 2025-04-25T04:25:44.6449132Z MaxUnpooling.cu 2025-04-25T04:25:44.6449528Z tmpxft_000011c0_00000000-7_MaxUnpooling.cudafe1.cpp 2025-04-25T04:25:44.6450358Z [3930/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiLabelMarginCriterion.cu.obj 2025-04-25T04:25:45.4657557Z MultiLabelMarginCriterion.cu 2025-04-25T04:25:45.4658406Z tmpxft_000002e0_00000000-7_MultiLabelMarginCriterion.cudafe1.cpp 2025-04-25T04:25:45.4660134Z [3931/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiMarginLoss.cu.obj 2025-04-25T04:25:46.2594622Z MultiMarginLoss.cu 2025-04-25T04:25:46.2595224Z tmpxft_00001540_00000000-7_MultiMarginLoss.cudafe1.cpp 2025-04-25T04:25:46.2596517Z [3932/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultinomialKernel.cu.obj 2025-04-25T04:25:46.6341671Z MultinomialKernel.cu 2025-04-25T04:25:46.6342356Z tmpxft_000013b0_00000000-7_MultinomialKernel.cudafe1.cpp 2025-04-25T04:25:46.6343600Z [3933/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NLLLoss2d.cu.obj 2025-04-25T04:25:46.7252577Z NLLLoss2d.cu 2025-04-25T04:25:46.7252910Z tmpxft_000007cc_00000000-7_NLLLoss2d.cudafe1.cpp 2025-04-25T04:25:46.7253618Z [3934/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose2d.cu.obj 2025-04-25T04:25:47.7597446Z NaiveConvolutionTranspose2d.cu 2025-04-25T04:25:47.7598310Z tmpxft_000016b8_00000000-7_NaiveConvolutionTranspose2d.cudafe1.cpp 2025-04-25T04:25:47.7599773Z [3935/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose3d.cu.obj 2025-04-25T04:25:48.3890086Z NaiveConvolutionTranspose3d.cu 2025-04-25T04:25:48.3890952Z tmpxft_00000740_00000000-7_NaiveConvolutionTranspose3d.cudafe1.cpp 2025-04-25T04:25:48.3892396Z [3936/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveDilatedConvolution.cu.obj 2025-04-25T04:25:49.6417587Z NaiveDilatedConvolution.cu 2025-04-25T04:25:49.6418336Z tmpxft_00000acc_00000000-7_NaiveDilatedConvolution.cudafe1.cpp 2025-04-25T04:25:49.6419712Z [3937/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PointwiseOpsKernel.cu.obj 2025-04-25T04:25:49.8513030Z PointwiseOpsKernel.cu 2025-04-25T04:25:49.8513964Z tmpxft_000005c4_00000000-7_PointwiseOpsKernel.cudafe1.cpp 2025-04-25T04:25:49.8515218Z [3938/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PowKernel.cu.obj 2025-04-25T04:25:50.0025535Z PowKernel.cu 2025-04-25T04:25:50.0026108Z tmpxft_0000145c_00000000-7_PowKernel.cudafe1.cpp 2025-04-25T04:25:50.0027681Z [3939/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MixedDtypesLinear.cu.obj 2025-04-25T04:25:50.1414171Z MixedDtypesLinear.cu 2025-04-25T04:25:50.1415094Z tmpxft_00000c1c_00000000-7_MixedDtypesLinear.cudafe1.cpp 2025-04-25T04:25:50.1418628Z [3940/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Normalization.cu.obj 2025-04-25T04:25:50.4571750Z Normalization.cu 2025-04-25T04:25:50.4572368Z tmpxft_00001340_00000000-7_Normalization.cudafe1.cpp 2025-04-25T04:25:50.4573638Z [3941/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Nonzero.cu.obj 2025-04-25T04:25:51.4698594Z Nonzero.cu 2025-04-25T04:25:51.4699092Z tmpxft_00001a14_00000000-7_Nonzero.cudafe1.cpp 2025-04-25T04:25:51.4700223Z [3942/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RNN.cu.obj 2025-04-25T04:25:52.3879288Z RNN.cu 2025-04-25T04:25:52.3879811Z tmpxft_000018e8_00000000-7_RNN.cudafe1.cpp 2025-04-25T04:25:52.3880885Z [3943/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Randperm.cu.obj 2025-04-25T04:25:53.0136024Z Randperm.cu 2025-04-25T04:25:53.0136547Z tmpxft_000018dc_00000000-7_Randperm.cudafe1.cpp 2025-04-25T04:25:53.0137531Z [3944/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Reduce.cu.obj 2025-04-25T04:25:53.0908540Z Reduce.cu 2025-04-25T04:25:53.0909024Z tmpxft_000013ec_00000000-7_Reduce.cudafe1.cpp 2025-04-25T04:25:53.0910133Z [3945/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceAMinMaxKernel.cu.obj 2025-04-25T04:25:53.1340047Z ReduceAMinMaxKernel.cu 2025-04-25T04:25:53.1340809Z tmpxft_000011ac_00000000-7_ReduceAMinMaxKernel.cudafe1.cpp 2025-04-25T04:25:53.1342024Z [3946/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RecordStream.cu.obj 2025-04-25T04:25:53.3979485Z RecordStream.cu 2025-04-25T04:25:53.3980191Z tmpxft_00000b24_00000000-7_RecordStream.cudafe1.cpp 2025-04-25T04:25:53.3981352Z [3947/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RangeFactories.cu.obj 2025-04-25T04:25:53.4795405Z RangeFactories.cu 2025-04-25T04:25:53.4796146Z tmpxft_00000bec_00000000-7_RangeFactories.cudafe1.cpp 2025-04-25T04:25:53.4798455Z [3948/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMaxKernel.cu.obj 2025-04-25T04:25:54.4239996Z ReduceArgMaxKernel.cu 2025-04-25T04:25:54.4240660Z tmpxft_00001570_00000000-7_ReduceArgMaxKernel.cudafe1.cpp 2025-04-25T04:25:54.4241992Z [3949/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMinKernel.cu.obj 2025-04-25T04:25:55.3533223Z ReduceArgMinKernel.cu 2025-04-25T04:25:55.3533650Z tmpxft_00001110_00000000-7_ReduceArgMinKernel.cudafe1.cpp 2025-04-25T04:25:55.3534796Z [3950/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceLogicKernel.cu.obj 2025-04-25T04:25:55.9999352Z ReduceLogicKernel.cu 2025-04-25T04:25:56.0000058Z tmpxft_000005d8_00000000-7_ReduceLogicKernel.cudafe1.cpp 2025-04-25T04:25:56.0001458Z [3951/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMaxValuesKernel.cu.obj 2025-04-25T04:25:56.0823834Z ReduceMaxValuesKernel.cu 2025-04-25T04:25:56.0824566Z tmpxft_00000418_00000000-7_ReduceMaxValuesKernel.cudafe1.cpp 2025-04-25T04:25:56.0825932Z [3952/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMinValuesKernel.cu.obj 2025-04-25T04:25:56.2129533Z ReduceMinValuesKernel.cu 2025-04-25T04:25:56.2129967Z tmpxft_00000380_00000000-7_ReduceMinValuesKernel.cudafe1.cpp 2025-04-25T04:25:56.2130812Z [3953/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMomentKernel.cu.obj 2025-04-25T04:25:56.4617019Z ReduceMomentKernel.cu 2025-04-25T04:25:56.4619899Z tmpxft_00001224_00000000-7_ReduceMomentKernel.cudafe1.cpp 2025-04-25T04:25:56.4621783Z [3954/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceSumProdKernel.cu.obj 2025-04-25T04:25:56.4999165Z ReduceSumProdKernel.cu 2025-04-25T04:25:56.4999797Z tmpxft_000014a4_00000000-7_ReduceSumProdKernel.cudafe1.cpp 2025-04-25T04:25:56.5001036Z [3955/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceNormKernel.cu.obj 2025-04-25T04:25:58.2351423Z ReduceNormKernel.cu 2025-04-25T04:25:58.2352041Z tmpxft_00000db0_00000000-7_ReduceNormKernel.cudafe1.cpp 2025-04-25T04:25:58.2353347Z [3956/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReflectionPad.cu.obj 2025-04-25T04:25:58.4526863Z ReflectionPad.cu 2025-04-25T04:25:58.4527442Z tmpxft_00000970_00000000-7_ReflectionPad.cudafe1.cpp 2025-04-25T04:25:58.4528719Z [3957/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RenormKernel.cu.obj 2025-04-25T04:25:59.7356528Z RenormKernel.cu 2025-04-25T04:25:59.7357067Z tmpxft_00000498_00000000-7_RenormKernel.cudafe1.cpp 2025-04-25T04:25:59.7358215Z [3958/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Repeat.cu.obj 2025-04-25T04:25:59.8569036Z Repeat.cu 2025-04-25T04:25:59.8569376Z tmpxft_0000142c_00000000-7_Repeat.cudafe1.cpp 2025-04-25T04:25:59.8570082Z [3959/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReplicationPadding.cu.obj 2025-04-25T04:25:59.9545148Z ReplicationPadding.cu 2025-04-25T04:25:59.9545774Z tmpxft_00000258_00000000-7_ReplicationPadding.cudafe1.cpp 2025-04-25T04:25:59.9547063Z [3960/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScaledGroupMM.cu.obj 2025-04-25T04:26:00.6316948Z ScaledGroupMM.cu 2025-04-25T04:26:00.6317545Z tmpxft_00001054_00000000-7_ScaledGroupMM.cudafe1.cpp 2025-04-25T04:26:00.6318832Z [3961/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RreluWithNoise.cu.obj 2025-04-25T04:26:01.6707895Z RreluWithNoise.cu 2025-04-25T04:26:01.6708499Z tmpxft_00000850_00000000-7_RreluWithNoise.cudafe1.cpp 2025-04-25T04:26:01.6709725Z [3962/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RowwiseScaledMM.cu.obj 2025-04-25T04:26:02.0061531Z RowwiseScaledMM.cu 2025-04-25T04:26:02.0062236Z tmpxft_0000172c_00000000-7_RowwiseScaledMM.compute_89.cudafe1.cpp 2025-04-25T04:26:02.0063636Z [3963/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScatterGatherKernel.cu.obj 2025-04-25T04:26:03.6282317Z ScatterGatherKernel.cu 2025-04-25T04:26:03.6282728Z tmpxft_0000175c_00000000-7_ScatterGatherKernel.cudafe1.cpp 2025-04-25T04:26:03.6283427Z [3964/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SegmentReduce.cu.obj 2025-04-25T04:26:03.6502893Z SegmentReduce.cu 2025-04-25T04:26:03.6503494Z tmpxft_00001024_00000000-7_SegmentReduce.cudafe1.cpp 2025-04-25T04:26:03.6504132Z [3965/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Shape.cu.obj 2025-04-25T04:26:03.7289534Z Shape.cu 2025-04-25T04:26:03.7290048Z tmpxft_000015f0_00000000-7_Shape.cudafe1.cpp 2025-04-25T04:26:03.7291535Z [3966/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SoftMax.cu.obj 2025-04-25T04:26:04.3346773Z SoftMax.cu 2025-04-25T04:26:04.3347299Z tmpxft_00001748_00000000-7_SoftMax.cudafe1.cpp 2025-04-25T04:26:04.3348435Z [3967/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cu.obj 2025-04-25T04:26:04.8657067Z Sort.cu 2025-04-25T04:26:04.8657935Z tmpxft_00000428_00000000-7_Sort.cudafe1.cpp 2025-04-25T04:26:04.8659440Z [3968/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cu.obj 2025-04-25T04:26:05.5087990Z Sorting.cu 2025-04-25T04:26:05.5088532Z tmpxft_00000580_00000000-7_Sorting.cudafe1.cpp 2025-04-25T04:26:05.5089675Z [3969/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortImpl.cu.obj 2025-04-25T04:26:06.0190189Z SortImpl.cu 2025-04-25T04:26:06.0190490Z tmpxft_00001178_00000000-7_SortImpl.cudafe1.cpp 2025-04-25T04:26:06.0191118Z [3970/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortStable.cu.obj 2025-04-25T04:26:06.6289727Z SortStable.cu 2025-04-25T04:26:06.6290278Z tmpxft_000001b0_00000000-7_SortStable.cudafe1.cpp 2025-04-25T04:26:06.9203192Z [3971/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cu.obj 2025-04-25T04:26:06.9204498Z SpectralOps.cu 2025-04-25T04:26:06.9204971Z tmpxft_00000c0c_00000000-7_SpectralOps.cudafe1.cpp 2025-04-25T04:26:06.9206112Z [3972/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseMM.cu.obj 2025-04-25T04:26:07.4206296Z SparseMM.cu 2025-04-25T04:26:07.4219112Z tmpxft_00001230_00000000-7_SparseMM.cudafe1.cpp 2025-04-25T04:26:07.4220296Z [3973/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\StepKernel.cu.obj 2025-04-25T04:26:07.5265660Z StepKernel.cu 2025-04-25T04:26:07.5266225Z tmpxft_000013ec_00000000-7_StepKernel.cudafe1.cpp 2025-04-25T04:26:07.5267670Z [3974/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseBinaryOpIntersectionKernel.cu.obj 2025-04-25T04:26:08.4658646Z SparseBinaryOpIntersectionKernel.cu 2025-04-25T04:26:08.4659553Z tmpxft_000010a0_00000000-7_SparseBinaryOpIntersectionKernel.cudafe1.cpp 2025-04-25T04:26:08.4661017Z [3975/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cu.obj 2025-04-25T04:26:08.7964576Z TensorCompare.cu 2025-04-25T04:26:08.7965173Z tmpxft_000011f4_00000000-7_TensorCompare.cudafe1.cpp 2025-04-25T04:26:08.7966432Z [3976/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SummaryOps.cu.obj 2025-04-25T04:26:10.4920196Z SummaryOps.cu 2025-04-25T04:26:10.4920542Z tmpxft_000006a4_00000000-7_SummaryOps.cudafe1.cpp 2025-04-25T04:26:10.4921275Z [3977/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShape.cu.obj 2025-04-25T04:26:11.0386459Z TensorShape.cu 2025-04-25T04:26:11.0387003Z tmpxft_0000160c_00000000-7_TensorShape.cudafe1.cpp 2025-04-25T04:26:11.0388300Z [3978/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cu.obj 2025-04-25T04:26:11.1017306Z TensorModeKernel.cu 2025-04-25T04:26:11.1017916Z tmpxft_0000113c_00000000-7_TensorModeKernel.cudafe1.cpp 2025-04-25T04:26:11.1019022Z [3979/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTransformations.cu.obj 2025-04-25T04:26:11.2170473Z TensorTransformations.cu 2025-04-25T04:26:11.2171491Z tmpxft_00001328_00000000-7_TensorTransformations.cudafe1.cpp 2025-04-25T04:26:11.2172894Z [3980/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryComplexKernels.cu.obj 2025-04-25T04:26:11.2802423Z UnaryComplexKernels.cu 2025-04-25T04:26:11.2803124Z tmpxft_0000110c_00000000-7_UnaryComplexKernels.cudafe1.cpp 2025-04-25T04:26:11.2804377Z [3981/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cu.obj 2025-04-25T04:26:11.3771564Z TensorTopK.cu 2025-04-25T04:26:11.3772071Z tmpxft_00000410_00000000-7_TensorTopK.cudafe1.cpp 2025-04-25T04:26:11.3775414Z [3982/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TriangularOps.cu.obj 2025-04-25T04:26:11.5471703Z TriangularOps.cu 2025-04-25T04:26:11.5599744Z tmpxft_000004bc_00000000-7_TriangularOps.cudafe1.cpp 2025-04-25T04:26:11.5601237Z [3983/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryFractionKernels.cu.obj 2025-04-25T04:26:13.4877912Z UnaryFractionKernels.cu 2025-04-25T04:26:13.4878399Z tmpxft_000016e0_00000000-7_UnaryFractionKernels.cudafe1.cpp 2025-04-25T04:26:13.4879100Z [3984/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGammaKernels.cu.obj 2025-04-25T04:26:13.9567307Z UnaryGammaKernels.cu 2025-04-25T04:26:13.9568492Z tmpxft_00001690_00000000-7_UnaryGammaKernels.cudafe1.cpp 2025-04-25T04:26:13.9569843Z [3985/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcosKernel.cu.obj 2025-04-25T04:26:14.0860299Z UnaryGeometricAcosKernel.cu 2025-04-25T04:26:14.0860792Z tmpxft_00000948_00000000-7_UnaryGeometricAcosKernel.cudafe1.cpp 2025-04-25T04:26:14.0861632Z [3986/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcoshKernel.cu.obj 2025-04-25T04:26:14.1318860Z UnaryGeometricAcoshKernel.cu 2025-04-25T04:26:14.1319378Z tmpxft_000008d8_00000000-7_UnaryGeometricAcoshKernel.cudafe1.cpp 2025-04-25T04:26:14.1320143Z [3987/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinhKernel.cu.obj 2025-04-25T04:26:14.2044689Z UnaryGeometricAsinhKernel.cu 2025-04-25T04:26:14.2045526Z tmpxft_00000380_00000000-7_UnaryGeometricAsinhKernel.cudafe1.cpp 2025-04-25T04:26:14.2046956Z [3988/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanKernel.cu.obj 2025-04-25T04:26:14.3603136Z UnaryGeometricAtanKernel.cu 2025-04-25T04:26:14.3604095Z tmpxft_00000ff4_00000000-7_UnaryGeometricAtanKernel.cudafe1.cpp 2025-04-25T04:26:14.3607947Z [3989/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinKernel.cu.obj 2025-04-25T04:26:14.6452443Z UnaryGeometricAsinKernel.cu 2025-04-25T04:26:14.6453733Z tmpxft_00001184_00000000-7_UnaryGeometricAsinKernel.cudafe1.cpp 2025-04-25T04:26:14.6456595Z [3990/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanhKernel.cu.obj 2025-04-25T04:26:16.7905817Z UnaryGeometricAtanhKernel.cu 2025-04-25T04:26:16.7906663Z tmpxft_000015ac_00000000-7_UnaryGeometricAtanhKernel.cudafe1.cpp 2025-04-25T04:26:16.7908164Z [3991/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCosKernel.cu.obj 2025-04-25T04:26:16.8759134Z UnaryGeometricCosKernel.cu 2025-04-25T04:26:16.8759733Z tmpxft_00000cbc_00000000-7_UnaryGeometricCosKernel.cudafe1.cpp 2025-04-25T04:26:16.8761066Z [3992/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCoshKernel.cu.obj 2025-04-25T04:26:17.0048781Z UnaryGeometricCoshKernel.cu 2025-04-25T04:26:17.0049243Z tmpxft_00001340_00000000-7_UnaryGeometricCoshKernel.cudafe1.cpp 2025-04-25T04:26:17.0050204Z [3993/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanKernel.cu.obj 2025-04-25T04:26:17.1265520Z UnaryGeometricTanKernel.cu 2025-04-25T04:26:17.1266313Z tmpxft_00000510_00000000-7_UnaryGeometricTanKernel.cudafe1.cpp 2025-04-25T04:26:17.1267635Z [3994/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinhKernel.cu.obj 2025-04-25T04:26:17.1884509Z UnaryGeometricSinhKernel.cu 2025-04-25T04:26:17.1885388Z tmpxft_000012f8_00000000-7_UnaryGeometricSinhKernel.cudafe1.cpp 2025-04-25T04:26:17.1887054Z [3995/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinKernel.cu.obj 2025-04-25T04:26:17.5017019Z UnaryGeometricSinKernel.cu 2025-04-25T04:26:17.5017681Z tmpxft_000006e8_00000000-7_UnaryGeometricSinKernel.cudafe1.cpp 2025-04-25T04:26:17.5018469Z [3996/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryLogKernels.cu.obj 2025-04-25T04:26:17.5510708Z UnaryLogKernels.cu 2025-04-25T04:26:17.5511587Z tmpxft_0000123c_00000000-7_UnaryLogKernels.cudafe1.cpp 2025-04-25T04:26:17.5512914Z [3997/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanhKernel.cu.obj 2025-04-25T04:26:19.9323355Z UnaryGeometricTanhKernel.cu 2025-04-25T04:26:19.9323836Z tmpxft_0000162c_00000000-7_UnaryGeometricTanhKernel.cudafe1.cpp 2025-04-25T04:26:19.9324561Z [3998/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryOpsKernel.cu.obj 2025-04-25T04:26:19.9504731Z UnaryOpsKernel.cu 2025-04-25T04:26:19.9505151Z tmpxft_000016b4_00000000-7_UnaryOpsKernel.cudafe1.cpp 2025-04-25T04:26:19.9505881Z [3999/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySignKernels.cu.obj 2025-04-25T04:26:20.1846759Z UnarySignKernels.cu 2025-04-25T04:26:20.1847376Z tmpxft_00001768_00000000-7_UnarySignKernels.cudafe1.cpp 2025-04-25T04:26:20.1848755Z [4000/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySpecialOpsKernel.cu.obj 2025-04-25T04:26:20.9967657Z UnarySpecialOpsKernel.cu 2025-04-25T04:26:20.9968411Z tmpxft_00000e10_00000000-7_UnarySpecialOpsKernel.cudafe1.cpp 2025-04-25T04:26:20.9969725Z [4001/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnfoldBackwardKernel.cu.obj 2025-04-25T04:26:21.2305716Z UnfoldBackwardKernel.cu 2025-04-25T04:26:21.2306471Z tmpxft_00001324_00000000-7_UnfoldBackwardKernel.cudafe1.cpp 2025-04-25T04:26:21.2308035Z [4002/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBicubic2d.cu.obj 2025-04-25T04:26:21.4089686Z UpSampleBicubic2d.cu 2025-04-25T04:26:21.4090551Z tmpxft_00001788_00000000-7_UpSampleBicubic2d.cudafe1.cpp 2025-04-25T04:26:21.4096652Z [4003/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBilinear2d.cu.obj 2025-04-25T04:26:22.5840330Z UpSampleBilinear2d.cu 2025-04-25T04:26:22.5841124Z tmpxft_00000744_00000000-7_UpSampleBilinear2d.cudafe1.cpp 2025-04-25T04:26:22.5842466Z [4004/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UniqueCub.cu.obj 2025-04-25T04:26:23.5224401Z UniqueCub.cu 2025-04-25T04:26:23.5224914Z tmpxft_000014d8_00000000-7_UniqueCub.cudafe1.cpp 2025-04-25T04:26:23.5226015Z [4005/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleLinear1d.cu.obj 2025-04-25T04:26:23.6357075Z UpSampleLinear1d.cu 2025-04-25T04:26:23.6357701Z tmpxft_00001578_00000000-7_UpSampleLinear1d.cudafe1.cpp 2025-04-25T04:26:23.6358981Z [4006/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest1d.cu.obj 2025-04-25T04:26:23.9573463Z UpSampleNearest1d.cu 2025-04-25T04:26:23.9574272Z tmpxft_00000b5c_00000000-7_UpSampleNearest1d.cudafe1.cpp 2025-04-25T04:26:23.9575774Z [4007/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest2d.cu.obj 2025-04-25T04:26:24.6374591Z UpSampleNearest2d.cu 2025-04-25T04:26:24.6375249Z tmpxft_00000fa4_00000000-7_UpSampleNearest2d.cudafe1.cpp 2025-04-25T04:26:24.6376521Z [4008/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest3d.cu.obj 2025-04-25T04:26:24.7455450Z UpSampleNearest3d.cu 2025-04-25T04:26:24.7456149Z tmpxft_000014a0_00000000-7_UpSampleNearest3d.cudafe1.cpp 2025-04-25T04:26:24.7461196Z [4009/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleTrilinear3d.cu.obj 2025-04-25T04:26:25.1357347Z UpSampleTrilinear3d.cu 2025-04-25T04:26:25.1357985Z tmpxft_0000119c_00000000-7_UpSampleTrilinear3d.cudafe1.cpp 2025-04-25T04:26:25.1358733Z [4010/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ValidateCompressedIndicesKernel.cu.obj 2025-04-25T04:26:26.1817178Z ValidateCompressedIndicesKernel.cu 2025-04-25T04:26:26.1818103Z tmpxft_0000143c_00000000-7_ValidateCompressedIndicesKernel.cudafe1.cpp 2025-04-25T04:26:26.1819581Z [4011/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\WeightNorm.cu.obj 2025-04-25T04:26:26.4935312Z WeightNorm.cu 2025-04-25T04:26:26.4935873Z tmpxft_00000b88_00000000-7_WeightNorm.cudafe1.cpp 2025-04-25T04:26:26.4937066Z [4012/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ZetaKernel.cu.obj 2025-04-25T04:26:26.5722674Z ZetaKernel.cu 2025-04-25T04:26:26.5723212Z tmpxft_00001520_00000000-7_ZetaKernel.cudafe1.cpp 2025-04-25T04:26:26.5724288Z [4013/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\airy_ai.cu.obj 2025-04-25T04:26:26.8801512Z airy_ai.cu 2025-04-25T04:26:26.8801878Z tmpxft_00000c2c_00000000-7_airy_ai.cudafe1.cpp 2025-04-25T04:26:26.8802596Z [4014/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j0.cu.obj 2025-04-25T04:26:27.5648524Z bessel_j0.cu 2025-04-25T04:26:27.5649233Z tmpxft_000013c0_00000000-7_bessel_j0.cudafe1.cpp 2025-04-25T04:26:27.5650374Z [4015/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j1.cu.obj 2025-04-25T04:26:27.6577734Z bessel_j1.cu 2025-04-25T04:26:27.6578128Z tmpxft_00001128_00000000-7_bessel_j1.cudafe1.cpp 2025-04-25T04:26:27.6579315Z [4016/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y0.cu.obj 2025-04-25T04:26:28.0338599Z bessel_y0.cu 2025-04-25T04:26:28.0339105Z tmpxft_000017f0_00000000-7_bessel_y0.cudafe1.cpp 2025-04-25T04:26:28.0340247Z [4017/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y1.cu.obj 2025-04-25T04:26:29.2451369Z bessel_y1.cu 2025-04-25T04:26:29.2451903Z tmpxft_00000fc0_00000000-7_bessel_y1.cudafe1.cpp 2025-04-25T04:26:29.2453335Z [4018/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_t.cu.obj 2025-04-25T04:26:29.4847773Z chebyshev_polynomial_t.cu 2025-04-25T04:26:29.4848214Z tmpxft_00000fb4_00000000-7_chebyshev_polynomial_t.cudafe1.cpp 2025-04-25T04:26:29.4849091Z [4019/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_u.cu.obj 2025-04-25T04:26:29.5986323Z chebyshev_polynomial_u.cu 2025-04-25T04:26:29.5987018Z tmpxft_000011b4_00000000-7_chebyshev_polynomial_u.cudafe1.cpp 2025-04-25T04:26:29.5988192Z [4020/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_v.cu.obj 2025-04-25T04:26:29.8743460Z chebyshev_polynomial_v.cu 2025-04-25T04:26:29.8744163Z tmpxft_000014a8_00000000-7_chebyshev_polynomial_v.cudafe1.cpp 2025-04-25T04:26:29.8745443Z [4021/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_w.cu.obj 2025-04-25T04:26:31.2134577Z chebyshev_polynomial_w.cu 2025-04-25T04:26:31.2135516Z tmpxft_000010b8_00000000-7_chebyshev_polynomial_w.cudafe1.cpp 2025-04-25T04:26:31.2136851Z [4022/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_amsgrad_impl.cu.obj 2025-04-25T04:26:31.3498349Z fused_adam_amsgrad_impl.cu 2025-04-25T04:26:31.3499024Z tmpxft_00001044_00000000-7_fused_adam_amsgrad_impl.cudafe1.cpp 2025-04-25T04:26:31.3500005Z [4023/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_impl.cu.obj 2025-04-25T04:26:31.6208547Z fused_adam_impl.cu 2025-04-25T04:26:31.6208904Z tmpxft_000014c8_00000000-7_fused_adam_impl.cudafe1.cpp 2025-04-25T04:26:31.6209620Z [4024/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_amsgrad_impl.cu.obj 2025-04-25T04:26:32.6355055Z fused_adamw_amsgrad_impl.cu 2025-04-25T04:26:32.6355793Z tmpxft_00001310_00000000-7_fused_adamw_amsgrad_impl.cudafe1.cpp 2025-04-25T04:26:32.6357221Z [4025/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_h.cu.obj 2025-04-25T04:26:32.8139977Z hermite_polynomial_h.cu 2025-04-25T04:26:32.8140724Z tmpxft_00001664_00000000-7_hermite_polynomial_h.cudafe1.cpp 2025-04-25T04:26:32.8141926Z [4026/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_he.cu.obj 2025-04-25T04:26:32.8543320Z hermite_polynomial_he.cu 2025-04-25T04:26:32.8543908Z tmpxft_00000518_00000000-7_hermite_polynomial_he.cudafe1.cpp 2025-04-25T04:26:32.8544597Z [4027/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_impl.cu.obj 2025-04-25T04:26:33.3634071Z fused_adamw_impl.cu 2025-04-25T04:26:33.3634670Z tmpxft_000011e4_00000000-7_fused_adamw_impl.cudafe1.cpp 2025-04-25T04:26:33.3635835Z [4028/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\group_norm_kernel.cu.obj 2025-04-25T04:26:34.3415396Z group_norm_kernel.cu 2025-04-25T04:26:34.3415845Z tmpxft_00001098_00000000-7_group_norm_kernel.cudafe1.cpp 2025-04-25T04:26:34.3416575Z [4029/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\laguerre_polynomial_l.cu.obj 2025-04-25T04:26:35.4631253Z laguerre_polynomial_l.cu 2025-04-25T04:26:35.4631671Z tmpxft_00001028_00000000-7_laguerre_polynomial_l.cudafe1.cpp 2025-04-25T04:26:35.4632363Z [4030/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\layer_norm_kernel.cu.obj 2025-04-25T04:26:35.5974748Z layer_norm_kernel.cu 2025-04-25T04:26:35.5975326Z tmpxft_00000c58_00000000-7_layer_norm_kernel.cudafe1.cpp 2025-04-25T04:26:35.5976355Z [4031/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i0.cu.obj 2025-04-25T04:26:35.6472818Z modified_bessel_i0.cu 2025-04-25T04:26:35.6473423Z tmpxft_0000175c_00000000-7_modified_bessel_i0.cudafe1.cpp 2025-04-25T04:26:35.6474800Z [4032/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\legendre_polynomial_p.cu.obj 2025-04-25T04:26:35.7639721Z legendre_polynomial_p.cu 2025-04-25T04:26:35.7640504Z tmpxft_00001554_00000000-7_legendre_polynomial_p.cudafe1.cpp 2025-04-25T04:26:35.7641723Z [4033/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i1.cu.obj 2025-04-25T04:26:36.2327170Z modified_bessel_i1.cu 2025-04-25T04:26:36.2327796Z tmpxft_00001738_00000000-7_modified_bessel_i1.cudafe1.cpp 2025-04-25T04:26:36.2329025Z [4034/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k0.cu.obj 2025-04-25T04:26:37.2667389Z modified_bessel_k0.cu 2025-04-25T04:26:37.2667992Z tmpxft_0000073c_00000000-7_modified_bessel_k0.cudafe1.cpp 2025-04-25T04:26:37.2669135Z [4035/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k1.cu.obj 2025-04-25T04:26:38.2624838Z modified_bessel_k1.cu 2025-04-25T04:26:38.2625860Z tmpxft_00000db0_00000000-7_modified_bessel_k1.cudafe1.cpp 2025-04-25T04:26:38.2628200Z [4036/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k0.cu.obj 2025-04-25T04:26:38.3612346Z scaled_modified_bessel_k0.cu 2025-04-25T04:26:38.3612799Z tmpxft_00001044_00000000-7_scaled_modified_bessel_k0.cudafe1.cpp 2025-04-25T04:26:38.3613539Z [4037/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k1.cu.obj 2025-04-25T04:26:38.5664590Z scaled_modified_bessel_k1.cu 2025-04-25T04:26:38.5665326Z tmpxft_00000c98_00000000-7_scaled_modified_bessel_k1.cudafe1.cpp 2025-04-25T04:26:38.5667028Z [4038/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_t.cu.obj 2025-04-25T04:26:38.6234263Z shifted_chebyshev_polynomial_t.cu 2025-04-25T04:26:38.6235096Z tmpxft_00000dc8_00000000-7_shifted_chebyshev_polynomial_t.cudafe1.cpp 2025-04-25T04:26:38.6236574Z [4039/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_u.cu.obj 2025-04-25T04:26:38.9819768Z shifted_chebyshev_polynomial_u.cu 2025-04-25T04:26:38.9820656Z tmpxft_00001674_00000000-7_shifted_chebyshev_polynomial_u.cudafe1.cpp 2025-04-25T04:26:38.9822853Z [4040/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_v.cu.obj 2025-04-25T04:26:40.0106070Z shifted_chebyshev_polynomial_v.cu 2025-04-25T04:26:40.0107110Z tmpxft_0000150c_00000000-7_shifted_chebyshev_polynomial_v.cudafe1.cpp 2025-04-25T04:26:40.0109411Z [4041/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_w.cu.obj 2025-04-25T04:26:40.3391917Z shifted_chebyshev_polynomial_w.cu 2025-04-25T04:26:40.3392754Z tmpxft_00001724_00000000-7_shifted_chebyshev_polynomial_w.cudafe1.cpp 2025-04-25T04:26:40.3394092Z [4042/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int4mm.cu.obj 2025-04-25T04:26:41.3276902Z int4mm.cu 2025-04-25T04:26:41.3278130Z tmpxft_000015d4_00000000-7_int4mm.cudafe1.cpp 2025-04-25T04:26:41.3279482Z [4043/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\spherical_bessel_j0.cu.obj 2025-04-25T04:26:45.0836024Z spherical_bessel_j0.cu 2025-04-25T04:26:45.0836731Z tmpxft_00000c24_00000000-7_spherical_bessel_j0.cudafe1.cpp 2025-04-25T04:26:45.0838112Z [4044/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SoftMax.cu.obj 2025-04-25T04:26:45.4436322Z SoftMax.cu 2025-04-25T04:26:45.4436954Z tmpxft_00001790_00000000-7_SoftMax.cudafe1.cpp 2025-04-25T04:26:45.4438261Z [4045/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensor.cu.obj 2025-04-25T04:26:45.6443023Z SparseCUDATensor.cu 2025-04-25T04:26:45.6443767Z tmpxft_00001678_00000000-7_SparseCUDATensor.cudafe1.cpp 2025-04-25T04:26:45.6445189Z [4046/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensorMath.cu.obj 2025-04-25T04:26:46.4263381Z SparseCUDATensorMath.cu 2025-04-25T04:26:46.4264114Z tmpxft_00001a44_00000000-7_SparseCUDATensorMath.cudafe1.cpp 2025-04-25T04:26:46.4265595Z [4047/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCsrTensorMath.cu.obj 2025-04-25T04:26:47.3185896Z SparseCsrTensorMath.cu 2025-04-25T04:26:47.3186648Z tmpxft_000009e8_00000000-7_SparseCsrTensorMath.cudafe1.cpp 2025-04-25T04:26:47.3188104Z [4048/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorBinaryOps.cu.obj 2025-04-25T04:26:47.6366806Z NestedTensorBinaryOps.cu 2025-04-25T04:26:47.6367703Z tmpxft_000017c8_00000000-7_NestedTensorBinaryOps.cudafe1.cpp 2025-04-25T04:26:47.6369200Z [4049/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorMatmul.cu.obj 2025-04-25T04:26:48.0635853Z NestedTensorMatmul.cu 2025-04-25T04:26:48.0636740Z tmpxft_00000628_00000000-7_NestedTensorMatmul.cudafe1.cpp 2025-04-25T04:26:48.0638822Z [4050/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cu.obj 2025-04-25T04:26:50.6464602Z NestedTensorTransformerFunctions.cu 2025-04-25T04:26:50.6465643Z tmpxft_00001594_00000000-7_NestedTensorTransformerFunctions.cudafe1.cpp 2025-04-25T04:26:50.6467783Z [4051/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseMatMul.cu.obj 2025-04-25T04:26:53.9996144Z SparseMatMul.cu 2025-04-25T04:26:53.9996771Z tmpxft_000016cc_00000000-7_SparseMatMul.cudafe1.cpp 2025-04-25T04:26:53.9998387Z [4052/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiSturcturedApply.cu.obj 2025-04-25T04:26:54.1717001Z SparseSemiSturcturedApply.cu 2025-04-25T04:26:54.1717923Z tmpxft_0000173c_00000000-7_SparseSemiSturcturedApply.cudafe1.cpp 2025-04-25T04:26:54.1719054Z [4053/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\AffineQuantizer.cu.obj 2025-04-25T04:26:54.2814718Z AffineQuantizer.cu 2025-04-25T04:26:54.2815426Z tmpxft_000010f8_00000000-7_AffineQuantizer.cudafe1.cpp 2025-04-25T04:26:54.2816742Z [4054/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredApplyDense.cu.obj 2025-04-25T04:26:54.2817748Z SparseSemiStructuredApplyDense.cu 2025-04-25T04:26:54.2818311Z tmpxft_00000e9c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.cpp 2025-04-25T04:26:54.2819503Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(69): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-04-25T04:26:54.2821421Z tmpxft_00000e9c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:54.2822853Z with 2025-04-25T04:26:54.2823071Z [ 2025-04-25T04:26:54.2823271Z _Ty=int 2025-04-25T04:26:54.2823472Z ] 2025-04-25T04:26:54.2824622Z tmpxft_00000e9c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:54.2825837Z with 2025-04-25T04:26:54.2826043Z [ 2025-04-25T04:26:54.2826237Z _Ty=int 2025-04-25T04:26:54.2826428Z ] 2025-04-25T04:26:54.2827627Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:54.2828966Z with 2025-04-25T04:26:54.2829168Z [ 2025-04-25T04:26:54.2829342Z _Ty=int 2025-04-25T04:26:54.2829554Z ] 2025-04-25T04:26:54.2830736Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:54.2832046Z with 2025-04-25T04:26:54.2832244Z [ 2025-04-25T04:26:54.2832419Z _Ty=int 2025-04-25T04:26:54.2832633Z ] 2025-04-25T04:26:54.2833698Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&)' being compiled 2025-04-25T04:26:54.2834727Z with 2025-04-25T04:26:54.2834932Z [ 2025-04-25T04:26:54.2835119Z I=size_t, 2025-04-25T04:26:54.2835357Z _Ty2=size_t 2025-04-25T04:26:54.2835559Z ] 2025-04-25T04:26:54.3758898Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&)' being compiled 2025-04-25T04:26:54.3761836Z with 2025-04-25T04:26:54.3762168Z [ 2025-04-25T04:26:54.3762750Z I=size_t, 2025-04-25T04:26:54.3763121Z _Ty2=size_t 2025-04-25T04:26:54.3763477Z ] 2025-04-25T04:26:54.3764725Z [4055/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredLinear.cu.obj 2025-04-25T04:26:55.1870326Z SparseSemiStructuredLinear.cu 2025-04-25T04:26:55.1871364Z tmpxft_000019f0_00000000-7_SparseSemiStructuredLinear.cudafe1.cpp 2025-04-25T04:26:55.1873400Z [4056/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredOps.cu.obj 2025-04-25T04:26:56.1084261Z SparseSemiStructuredOps.cu 2025-04-25T04:26:56.1084996Z tmpxft_000012ac_00000000-7_SparseSemiStructuredOps.cudafe1.cpp 2025-04-25T04:26:56.1086422Z [4057/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredTile.cu.obj 2025-04-25T04:26:56.1087702Z SparseSemiStructuredTile.cu 2025-04-25T04:26:56.1088691Z tmpxft_00000560_00000000-7_SparseSemiStructuredTile.cudafe1.cpp 2025-04-25T04:26:56.1090725Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(69): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-04-25T04:26:56.1094307Z tmpxft_00000560_00000000-7_SparseSemiStructuredTile.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:56.1096681Z with 2025-04-25T04:26:56.1097000Z [ 2025-04-25T04:26:56.1097298Z _Ty=int 2025-04-25T04:26:56.1097654Z ] 2025-04-25T04:26:56.1099699Z tmpxft_00000560_00000000-7_SparseSemiStructuredTile.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:56.1102037Z with 2025-04-25T04:26:56.1102379Z [ 2025-04-25T04:26:56.1102687Z _Ty=int 2025-04-25T04:26:56.1103047Z ] 2025-04-25T04:26:56.1105405Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:56.1108629Z with 2025-04-25T04:26:56.1108990Z [ 2025-04-25T04:26:56.1109274Z _Ty=int 2025-04-25T04:26:56.1109617Z ] 2025-04-25T04:26:56.1111983Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:56.1114395Z with 2025-04-25T04:26:56.1114726Z [ 2025-04-25T04:26:56.1115024Z _Ty=int 2025-04-25T04:26:56.1115379Z ] 2025-04-25T04:26:56.1118705Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&)' being compiled 2025-04-25T04:26:56.1120592Z with 2025-04-25T04:26:56.1120910Z [ 2025-04-25T04:26:56.1121219Z I=size_t, 2025-04-25T04:26:56.1121563Z _Ty2=size_t 2025-04-25T04:26:56.1121957Z ] 2025-04-25T04:26:56.8160104Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&)' being compiled 2025-04-25T04:26:56.8161960Z with 2025-04-25T04:26:56.8162302Z [ 2025-04-25T04:26:56.8162866Z I=size_t, 2025-04-25T04:26:56.8163240Z _Ty2=size_t 2025-04-25T04:26:56.8163577Z ] 2025-04-25T04:26:56.8164394Z [4058/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cu.obj 2025-04-25T04:26:57.7383411Z Activation.cu 2025-04-25T04:26:57.7383784Z tmpxft_00001040_00000000-7_Activation.cudafe1.cpp 2025-04-25T04:26:57.7384481Z [4059/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FakeQuantizeCore.cu.obj 2025-04-25T04:26:57.8886386Z FakeQuantizeCore.cu 2025-04-25T04:26:57.8887005Z tmpxft_00000884_00000000-7_FakeQuantizeCore.cudafe1.cpp 2025-04-25T04:26:57.8888252Z [4060/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\EmbeddingBag.cu.obj 2025-04-25T04:26:57.8889276Z EmbeddingBag.cu 2025-04-25T04:26:57.8889792Z tmpxft_00000088_00000000-7_EmbeddingBag.cudafe1.cpp 2025-04-25T04:26:57.8891637Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(69): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-04-25T04:26:57.8894980Z tmpxft_00000088_00000000-7_EmbeddingBag.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:57.8897131Z with 2025-04-25T04:26:57.8897461Z [ 2025-04-25T04:26:57.8897766Z _Ty=int 2025-04-25T04:26:57.8898124Z ] 2025-04-25T04:26:57.8900129Z tmpxft_00000088_00000000-7_EmbeddingBag.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:57.8902227Z with 2025-04-25T04:26:57.8902544Z [ 2025-04-25T04:26:57.8902873Z _Ty=int 2025-04-25T04:26:57.8903231Z ] 2025-04-25T04:26:57.8905577Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:57.8908082Z with 2025-04-25T04:26:57.8908406Z [ 2025-04-25T04:26:57.8908766Z _Ty=int 2025-04-25T04:26:57.8909114Z ] 2025-04-25T04:26:57.8911301Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-04-25T04:26:57.8913777Z with 2025-04-25T04:26:57.8914156Z [ 2025-04-25T04:26:57.8914477Z _Ty=int 2025-04-25T04:26:57.8914847Z ] 2025-04-25T04:26:57.8916459Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&)' being compiled 2025-04-25T04:26:57.8918495Z with 2025-04-25T04:26:57.8918832Z [ 2025-04-25T04:26:57.8919163Z I=size_t, 2025-04-25T04:26:57.8919540Z _Ty2=size_t 2025-04-25T04:26:57.8919925Z ] 2025-04-25T04:26:57.9968732Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&)' being compiled 2025-04-25T04:26:57.9970590Z with 2025-04-25T04:26:57.9971102Z [ 2025-04-25T04:26:57.9971931Z I=size_t, 2025-04-25T04:26:57.9972513Z _Ty2=size_t 2025-04-25T04:26:57.9973376Z ] 2025-04-25T04:26:57.9974688Z [4061/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\IntReprQuant.cu.obj 2025-04-25T04:26:58.0883443Z IntReprQuant.cu 2025-04-25T04:26:58.0884953Z tmpxft_00000734_00000000-7_IntReprQuant.cudafe1.cpp 2025-04-25T04:26:58.0894120Z [4062/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FusedObsFakeQuant.cu.obj 2025-04-25T04:26:58.7108570Z FusedObsFakeQuant.cu 2025-04-25T04:26:58.7109028Z tmpxft_000017b0_00000000-7_FusedObsFakeQuant.cudafe1.cpp 2025-04-25T04:26:58.7109845Z [4063/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\MakePerTensorQuantizedTensor.cu.obj 2025-04-25T04:27:10.7284282Z MakePerTensorQuantizedTensor.cu 2025-04-25T04:27:10.7284780Z tmpxft_00001658_00000000-7_MakePerTensorQuantizedTensor.cudafe1.cpp 2025-04-25T04:27:10.7285759Z [4064/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k64.cu.obj 2025-04-25T04:27:10.8195173Z cutlassB_bf16_aligned_k64.cu 2025-04-25T04:27:10.8195611Z tmpxft_000005c0_00000000-7_cutlassB_bf16_aligned_k64.cudafe1.cpp 2025-04-25T04:27:10.8196607Z [4065/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k32_dropout.cu.obj 2025-04-25T04:27:10.8267404Z cutlassB_bf16_aligned_k32_dropout.cu 2025-04-25T04:27:10.8267996Z tmpxft_00000d98_00000000-7_cutlassB_bf16_aligned_k32_dropout.cudafe1.cpp 2025-04-25T04:27:10.8268907Z [4066/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k32.cu.obj 2025-04-25T04:27:10.8621040Z cutlassB_bf16_aligned_k32.cu 2025-04-25T04:27:10.8622242Z tmpxft_000008e4_00000000-7_cutlassB_bf16_aligned_k32.cudafe1.cpp 2025-04-25T04:27:10.8623378Z [4067/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k128.cu.obj 2025-04-25T04:27:10.8878393Z cutlassB_bf16_aligned_k128.cu 2025-04-25T04:27:10.8879167Z tmpxft_00000f28_00000000-7_cutlassB_bf16_aligned_k128.cudafe1.cpp 2025-04-25T04:27:10.8881278Z [4068/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k128_dropout.cu.obj 2025-04-25T04:27:11.9962266Z cutlassB_bf16_aligned_k128_dropout.cu 2025-04-25T04:27:11.9963595Z tmpxft_00000a40_00000000-7_cutlassB_bf16_aligned_k128_dropout.cudafe1.cpp 2025-04-25T04:27:11.9964961Z [4069/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention.cu.obj 2025-04-25T04:27:12.4064692Z attention.cu 2025-04-25T04:27:12.4065139Z tmpxft_00000478_00000000-7_attention.cudafe1.cpp 2025-04-25T04:27:12.4066289Z [4070/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention_backward.cu.obj 2025-04-25T04:27:14.0379101Z attention_backward.cu 2025-04-25T04:27:14.0379493Z tmpxft_000013fc_00000000-7_attention_backward.cudafe1.cpp 2025-04-25T04:27:14.0380673Z [4071/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k64_dropout.cu.obj 2025-04-25T04:27:14.1244126Z cutlassB_bf16_aligned_k64_dropout.cu 2025-04-25T04:27:14.1244650Z tmpxft_00001794_00000000-7_cutlassB_bf16_aligned_k64_dropout.cudafe1.cpp 2025-04-25T04:27:14.1245595Z [4072/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k65536_dropout.cu.obj 2025-04-25T04:27:14.2199484Z cutlassB_bf16_aligned_k65536_dropout.cu 2025-04-25T04:27:14.2199983Z tmpxft_00000dd0_00000000-7_cutlassB_bf16_aligned_k65536_dropout.cudafe1.cpp 2025-04-25T04:27:14.2201315Z [4073/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k96.cu.obj 2025-04-25T04:27:14.2621217Z cutlassB_bf16_aligned_k96.cu 2025-04-25T04:27:14.2621920Z tmpxft_00001654_00000000-7_cutlassB_bf16_aligned_k96.cudafe1.cpp 2025-04-25T04:27:14.2623594Z [4074/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k65536.cu.obj 2025-04-25T04:27:14.2713330Z cutlassB_bf16_aligned_k65536.cu 2025-04-25T04:27:14.2714402Z tmpxft_0000175c_00000000-7_cutlassB_bf16_aligned_k65536.cudafe1.cpp 2025-04-25T04:27:14.2717559Z [4075/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k128.cu.obj 2025-04-25T04:27:15.3444885Z cutlassB_f16_aligned_k128.cu 2025-04-25T04:27:15.3448219Z tmpxft_00000984_00000000-7_cutlassB_f16_aligned_k128.cudafe1.cpp 2025-04-25T04:27:15.3449681Z [4076/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k128_dropout.cu.obj 2025-04-25T04:27:15.7019061Z cutlassB_f16_aligned_k128_dropout.cu 2025-04-25T04:27:15.7019975Z tmpxft_000007ac_00000000-7_cutlassB_f16_aligned_k128_dropout.cudafe1.cpp 2025-04-25T04:27:15.7021931Z [4077/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k32.cu.obj 2025-04-25T04:27:17.4506836Z cutlassB_f16_aligned_k32.cu 2025-04-25T04:27:17.4507247Z tmpxft_0000111c_00000000-7_cutlassB_f16_aligned_k32.cudafe1.cpp 2025-04-25T04:27:17.4508414Z [4078/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k64.cu.obj 2025-04-25T04:27:17.4533645Z cutlassB_f16_aligned_k64.cu 2025-04-25T04:27:17.4534387Z tmpxft_00001134_00000000-7_cutlassB_f16_aligned_k64.cudafe1.cpp 2025-04-25T04:27:17.4536052Z [4079/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k32_dropout.cu.obj 2025-04-25T04:27:17.5234023Z cutlassB_f16_aligned_k32_dropout.cu 2025-04-25T04:27:17.5234828Z tmpxft_0000104c_00000000-7_cutlassB_f16_aligned_k32_dropout.cudafe1.cpp 2025-04-25T04:27:17.5236318Z [4080/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k65536_dropout.cu.obj 2025-04-25T04:27:17.5933402Z cutlassB_f16_aligned_k65536_dropout.cu 2025-04-25T04:27:17.5934336Z tmpxft_000008ec_00000000-7_cutlassB_f16_aligned_k65536_dropout.cudafe1.cpp 2025-04-25T04:27:17.5935952Z [4081/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k65536.cu.obj 2025-04-25T04:27:17.6481850Z cutlassB_f16_aligned_k65536.cu 2025-04-25T04:27:17.6482853Z tmpxft_00000cb0_00000000-7_cutlassB_f16_aligned_k65536.cudafe1.cpp 2025-04-25T04:27:17.6485151Z [4082/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k64_dropout.cu.obj 2025-04-25T04:27:18.5353926Z cutlassB_f16_aligned_k64_dropout.cu 2025-04-25T04:27:18.5355139Z tmpxft_0000177c_00000000-7_cutlassB_f16_aligned_k64_dropout.cudafe1.cpp 2025-04-25T04:27:18.5361742Z [4083/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k96.cu.obj 2025-04-25T04:27:19.4044523Z cutlassB_f16_aligned_k96.cu 2025-04-25T04:27:19.4045229Z tmpxft_00000d98_00000000-7_cutlassB_f16_aligned_k96.cudafe1.cpp 2025-04-25T04:27:19.4046836Z [4084/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k128.cu.obj 2025-04-25T04:27:20.7007980Z cutlassB_f16_notaligned_k128.cu 2025-04-25T04:27:20.7008436Z tmpxft_00000518_00000000-7_cutlassB_f16_notaligned_k128.cudafe1.cpp 2025-04-25T04:27:20.7009562Z [4085/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k128_dropout.cu.obj 2025-04-25T04:27:20.7585310Z cutlassB_f16_notaligned_k128_dropout.cu 2025-04-25T04:27:20.7585842Z tmpxft_00000e38_00000000-7_cutlassB_f16_notaligned_k128_dropout.cudafe1.cpp 2025-04-25T04:27:20.7586846Z [4086/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k32.cu.obj 2025-04-25T04:27:20.7616042Z cutlassB_f16_notaligned_k32.cu 2025-04-25T04:27:20.7616485Z tmpxft_00000ccc_00000000-7_cutlassB_f16_notaligned_k32.cudafe1.cpp 2025-04-25T04:27:20.7617414Z [4087/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k32_dropout.cu.obj 2025-04-25T04:27:20.9866625Z cutlassB_f16_notaligned_k32_dropout.cu 2025-04-25T04:27:20.9867529Z tmpxft_00000e48_00000000-7_cutlassB_f16_notaligned_k32_dropout.cudafe1.cpp 2025-04-25T04:27:20.9869469Z [4088/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k64_dropout.cu.obj 2025-04-25T04:27:21.0327644Z cutlassB_f16_notaligned_k64_dropout.cu 2025-04-25T04:27:21.0328455Z tmpxft_00000de0_00000000-7_cutlassB_f16_notaligned_k64_dropout.cudafe1.cpp 2025-04-25T04:27:21.0330138Z [4089/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k64.cu.obj 2025-04-25T04:27:21.7127420Z cutlassB_f16_notaligned_k64.cu 2025-04-25T04:27:21.7129084Z tmpxft_0000150c_00000000-7_cutlassB_f16_notaligned_k64.cudafe1.cpp 2025-04-25T04:27:21.7132036Z [4090/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k65536.cu.obj 2025-04-25T04:27:22.5960747Z cutlassB_f16_notaligned_k65536.cu 2025-04-25T04:27:22.5961346Z tmpxft_00000744_00000000-7_cutlassB_f16_notaligned_k65536.cudafe1.cpp 2025-04-25T04:27:22.5962296Z [4091/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k65536_dropout.cu.obj 2025-04-25T04:27:23.8750910Z cutlassB_f16_notaligned_k65536_dropout.cu 2025-04-25T04:27:23.8751733Z tmpxft_00001798_00000000-7_cutlassB_f16_notaligned_k65536_dropout.cudafe1.cpp 2025-04-25T04:27:23.8765308Z [4092/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k128.cu.obj 2025-04-25T04:27:24.1182415Z cutlassB_f32_aligned_k128.cu 2025-04-25T04:27:24.1182911Z tmpxft_000017d0_00000000-7_cutlassB_f32_aligned_k128.cudafe1.cpp 2025-04-25T04:27:24.1183853Z [4093/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k32.cu.obj 2025-04-25T04:27:24.2245688Z cutlassB_f32_aligned_k32.cu 2025-04-25T04:27:24.2246353Z tmpxft_0000161c_00000000-7_cutlassB_f32_aligned_k32.cudafe1.cpp 2025-04-25T04:27:24.2247242Z [4094/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k64.cu.obj 2025-04-25T04:27:24.2426581Z cutlassB_f32_aligned_k64.cu 2025-04-25T04:27:24.2427106Z tmpxft_000006d4_00000000-7_cutlassB_f32_aligned_k64.cudafe1.cpp 2025-04-25T04:27:24.2428338Z [4095/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k128_dropout.cu.obj 2025-04-25T04:27:24.2969151Z cutlassB_f32_aligned_k128_dropout.cu 2025-04-25T04:27:24.2970018Z tmpxft_0000008c_00000000-7_cutlassB_f32_aligned_k128_dropout.cudafe1.cpp 2025-04-25T04:27:24.2971777Z [4096/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k32_dropout.cu.obj 2025-04-25T04:27:25.1349823Z cutlassB_f32_aligned_k32_dropout.cu 2025-04-25T04:27:25.1352568Z tmpxft_000016f8_00000000-7_cutlassB_f32_aligned_k32_dropout.cudafe1.cpp 2025-04-25T04:27:25.1355124Z [4097/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k64_dropout.cu.obj 2025-04-25T04:27:25.8131326Z cutlassB_f32_aligned_k64_dropout.cu 2025-04-25T04:27:25.8132161Z tmpxft_000014d0_00000000-7_cutlassB_f32_aligned_k64_dropout.cudafe1.cpp 2025-04-25T04:27:25.8133720Z [4098/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k65536.cu.obj 2025-04-25T04:27:27.0992951Z cutlassB_f32_aligned_k65536.cu 2025-04-25T04:27:27.0993724Z tmpxft_00001458_00000000-7_cutlassB_f32_aligned_k65536.cudafe1.cpp 2025-04-25T04:27:27.0996109Z [4099/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k65536_dropout.cu.obj 2025-04-25T04:27:27.4104895Z cutlassB_f32_aligned_k65536_dropout.cu 2025-04-25T04:27:27.4105818Z tmpxft_00001004_00000000-7_cutlassB_f32_aligned_k65536_dropout.cudafe1.cpp 2025-04-25T04:27:27.4107673Z [4100/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k128.cu.obj 2025-04-25T04:27:27.5569478Z cutlassB_f32_notaligned_k128.cu 2025-04-25T04:27:27.5569948Z tmpxft_00001484_00000000-7_cutlassB_f32_notaligned_k128.cudafe1.cpp 2025-04-25T04:27:27.5570884Z [4101/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k32_dropout.cu.obj 2025-04-25T04:27:27.5991075Z cutlassB_f32_notaligned_k32_dropout.cu 2025-04-25T04:27:27.5991664Z tmpxft_00000eb0_00000000-7_cutlassB_f32_notaligned_k32_dropout.cudafe1.cpp 2025-04-25T04:27:27.5992895Z [4102/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k128_dropout.cu.obj 2025-04-25T04:27:27.6188951Z cutlassB_f32_notaligned_k128_dropout.cu 2025-04-25T04:27:27.6189520Z tmpxft_00000fb8_00000000-7_cutlassB_f32_notaligned_k128_dropout.cudafe1.cpp 2025-04-25T04:27:27.6190558Z [4103/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k32.cu.obj 2025-04-25T04:27:28.1948483Z cutlassB_f32_notaligned_k32.cu 2025-04-25T04:27:28.1949112Z tmpxft_00000ffc_00000000-7_cutlassB_f32_notaligned_k32.cudafe1.cpp 2025-04-25T04:27:28.1950448Z [4104/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k64.cu.obj 2025-04-25T04:27:28.7810085Z cutlassB_f32_notaligned_k64.cu 2025-04-25T04:27:28.7811623Z tmpxft_00000870_00000000-7_cutlassB_f32_notaligned_k64.cudafe1.cpp 2025-04-25T04:27:28.7815139Z [4105/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k64_dropout.cu.obj 2025-04-25T04:27:30.8545388Z cutlassB_f32_notaligned_k64_dropout.cu 2025-04-25T04:27:30.8546239Z tmpxft_000004f8_00000000-7_cutlassB_f32_notaligned_k64_dropout.cudafe1.cpp 2025-04-25T04:27:30.8547793Z [4106/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k65536_dropout.cu.obj 2025-04-25T04:27:30.9151262Z cutlassB_f32_notaligned_k65536_dropout.cu 2025-04-25T04:27:30.9152115Z tmpxft_0000121c_00000000-7_cutlassB_f32_notaligned_k65536_dropout.cudafe1.cpp 2025-04-25T04:27:30.9153085Z [4107/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k65536.cu.obj 2025-04-25T04:27:30.9608501Z cutlassB_f32_notaligned_k65536.cu 2025-04-25T04:27:30.9609340Z tmpxft_000008a4_00000000-7_cutlassB_f32_notaligned_k65536.cudafe1.cpp 2025-04-25T04:27:30.9611113Z [4108/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_bf16_aligned.cu.obj 2025-04-25T04:27:31.2183055Z cutlassF_bf16_aligned.cu 2025-04-25T04:27:31.2183462Z tmpxft_000015b8_00000000-7_cutlassF_bf16_aligned.cudafe1.cpp 2025-04-25T04:27:31.2184344Z [4109/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_notaligned.cu.obj 2025-04-25T04:27:31.2295725Z cutlassF_f16_notaligned.cu 2025-04-25T04:27:31.2296312Z tmpxft_00000c8c_00000000-7_cutlassF_f16_notaligned.cudafe1.cpp 2025-04-25T04:27:31.2297306Z [4110/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_aligned.cu.obj 2025-04-25T04:27:31.2663625Z cutlassF_f16_aligned.cu 2025-04-25T04:27:31.2664038Z tmpxft_000015cc_00000000-7_cutlassF_f16_aligned.cudafe1.cpp 2025-04-25T04:27:31.2664890Z [4111/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_aligned.cu.obj 2025-04-25T04:27:31.8051632Z cutlassF_f32_aligned.cu 2025-04-25T04:27:31.8052158Z tmpxft_00000a58_00000000-7_cutlassF_f32_aligned.cudafe1.cpp 2025-04-25T04:27:31.8053675Z [4112/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_notaligned.cu.obj 2025-04-25T04:27:32.4378155Z cutlassF_f32_notaligned.cu 2025-04-25T04:27:32.4378818Z tmpxft_0000177c_00000000-7_cutlassF_f32_notaligned.cudafe1.cpp 2025-04-25T04:27:32.4380060Z [4113/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterQuantizedCUDA_0.cpp.obj 2025-04-25T04:27:32.4952148Z [4114/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterNestedTensorCUDA_0.cpp.obj 2025-04-25T04:27:32.8648281Z [4115/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCUDA_0.cpp.obj 2025-04-25T04:27:32.8803969Z [4116/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCsrCUDA_0.cpp.obj 2025-04-25T04:27:33.2340223Z [4117/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebra.cpp.obj 2025-04-25T04:27:33.6962846Z [4118/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CudssHandlePool.cpp.obj 2025-04-25T04:27:33.7133130Z [4119/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLibBlas.cpp.obj 2025-04-25T04:27:33.8290324Z [4120/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLib.cpp.obj 2025-04-25T04:27:33.8926074Z [4121/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CusolverDnHandlePool.cpp.obj 2025-04-25T04:27:33.9907517Z [4122/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\UfuncCUDA_add.cu.obj 2025-04-25T04:27:34.6790565Z UfuncCUDA_add.cu 2025-04-25T04:27:34.6790935Z tmpxft_00000c44_00000000-7_UfuncCUDA_add.cudafe1.cpp 2025-04-25T04:27:34.6791683Z [4123/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseBlas.cpp.obj 2025-04-25T04:27:34.7115770Z [4124/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CUDASolver.cpp.obj 2025-04-25T04:27:34.7222009Z [4125/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CublasHandlePool.cpp.obj 2025-04-25T04:27:34.8525365Z [4126/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\Tunable.cpp.obj 2025-04-25T04:27:34.8891942Z [4127/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\StreamTimer.cpp.obj 2025-04-25T04:27:35.6302612Z [4128/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Activation.cpp.obj 2025-04-25T04:27:35.8259625Z [4129/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cpp.obj 2025-04-25T04:27:35.8570310Z [4130/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Equal.cpp.obj 2025-04-25T04:27:36.3079218Z [4131/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Blas.cpp.obj 2025-04-25T04:27:36.6193205Z [4132/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cpp.obj 2025-04-25T04:27:36.7034306Z [4133/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebraStubs.cpp.obj 2025-04-25T04:27:36.7711965Z [4134/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cpp.obj 2025-04-25T04:27:36.8089180Z [4135/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceOps.cpp.obj 2025-04-25T04:27:37.1891908Z [4136/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScanKernels.cpp.obj 2025-04-25T04:27:37.2415633Z [4137/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDABlas.cpp.obj 2025-04-25T04:27:37.4496024Z [4138/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cpp.obj 2025-04-25T04:27:37.7111280Z [4139/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cpp.obj 2025-04-25T04:27:37.8823710Z [4140/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShapeCUDA.cpp.obj 2025-04-25T04:27:37.9623986Z [4141/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cpp.obj 2025-04-25T04:27:38.0961044Z [4142/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cpp.obj 2025-04-25T04:27:38.2325793Z [4143/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\jit_utils.cpp.obj 2025-04-25T04:27:38.7894801Z [4144/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\flash_attn\flash_api.cpp.obj 2025-04-25T04:27:38.8349379Z [4145/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDABlas.cpp.obj 2025-04-25T04:27:38.9138695Z [4146/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlas.cpp.obj 2025-04-25T04:27:38.9691425Z [4147/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasLegacy.cpp.obj 2025-04-25T04:27:39.7396221Z [4148/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasImpl.cpp.obj 2025-04-25T04:27:39.9040425Z [4149/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\CUDAPluggableAllocator.cpp.obj 2025-04-25T04:27:40.0927849Z [4150/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\CudaIPCTypes.cpp.obj 2025-04-25T04:27:40.5066368Z [4151/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cpp.obj 2025-04-25T04:27:40.5838577Z [4152/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\memory_snapshot.cpp.obj 2025-04-25T04:27:40.6541499Z [4153/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.cpp.obj 2025-04-25T04:27:40.8403370Z [4154/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\shim_cuda.cpp.obj 2025-04-25T04:27:41.7219488Z [4155/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\profiler\stubs\cuda.cpp.obj 2025-04-25T04:27:41.8010003Z [4156/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion_cuda.cpp.obj 2025-04-25T04:27:42.7455091Z [4157/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\comm.cpp.obj 2025-04-25T04:27:42.8196735Z [4158/7581] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-04-25T04:27:43.4326647Z [4159/7581] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-04-25T04:27:43.9576128Z [4160/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.cpp.obj 2025-04-25T04:27:44.1479832Z [4161/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\autograd\functions\comm.cpp.obj 2025-04-25T04:27:44.2929227Z [4162/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\tensorexpr\cuda_codegen.cpp.obj 2025-04-25T04:27:44.2931704Z 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:27:44.2933396Z with 2025-04-25T04:27:44.2933717Z [ 2025-04-25T04:27:44.2934023Z T=int 2025-04-25T04:27:44.2934372Z ] 2025-04-25T04:27:44.2936409Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\cuda_codegen.cpp(147): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-04-25T04:27:44.9336856Z with 2025-04-25T04:27:44.9337137Z [ 2025-04-25T04:27:44.9337319Z T=int 2025-04-25T04:27:44.9337531Z ] 2025-04-25T04:27:44.9338084Z [4163/7581] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCPUCustomOps.cpp.obj 2025-04-25T04:27:45.0501205Z [4164/7581] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\custom_ops.cpp.obj 2025-04-25T04:27:45.7413099Z [4165/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\runtime\register_cuda_ops.cpp.obj 2025-04-25T04:27:45.7616123Z [4166/7581] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-04-25T04:27:46.4420898Z [4167/7581] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Unique.cu.obj 2025-04-25T04:27:46.9068313Z Unique.cu 2025-04-25T04:27:46.9068617Z tmpxft_00000c1c_00000000-7_Unique.cudafe1.cpp 2025-04-25T04:27:46.9069368Z [4168/7581] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-04-25T04:27:47.7161838Z [4169/7581] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\operator_registry.cpp.obj 2025-04-25T04:27:47.7872816Z [4170/7581] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCodegenUnboxedKernelsEverything.cpp.obj 2025-04-25T04:27:48.0939252Z [4171/7581] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-04-25T04:27:48.1453770Z [4172/7581] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-04-25T04:27:50.1930080Z [4173/7581] Building CUDA object test_cpp_c10d\CMakeFiles\c10d_cuda_test.dir\CUDATest.cu.obj 2025-04-25T04:27:52.4048367Z CUDATest.cu 2025-04-25T04:27:52.4048897Z tmpxft_00000c04_00000000-7_CUDATest.cudafe1.cpp 2025-04-25T04:27:52.4051380Z [4174/7581] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterCUDA_0.cpp.obj 2025-04-25T04:27:55.8377522Z [4175/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-04-25T04:27:55.9406119Z [4176/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-04-25T04:27:56.0174264Z [4177/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-04-25T04:27:56.1065395Z [4178/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-04-25T04:27:56.2211430Z [4179/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-04-25T04:27:56.2926243Z [4180/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-04-25T04:27:56.4013489Z [4181/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-04-25T04:27:57.5579041Z [4182/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-04-25T04:27:57.6550415Z [4183/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-04-25T04:27:57.7285096Z [4184/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-04-25T04:27:57.8082975Z [4185/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-04-25T04:27:57.9075201Z [4186/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-04-25T04:27:58.0412925Z [4187/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-04-25T04:27:58.1084203Z [4188/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-04-25T04:27:58.1300557Z [4189/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-04-25T04:27:58.6943844Z [4190/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-04-25T04:27:58.7862452Z [4191/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-04-25T04:27:58.9414546Z [4192/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-04-25T04:27:58.9910697Z [4193/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-04-25T04:27:59.2175265Z [4194/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-04-25T04:27:59.3176650Z [4195/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-04-25T04:28:00.0090070Z [4196/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-04-25T04:28:00.1487763Z [4197/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-04-25T04:28:00.2462879Z [4198/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-04-25T04:28:01.2155251Z [4199/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-04-25T04:28:01.7293425Z [4200/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-04-25T04:28:02.0902708Z [4201/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-04-25T04:28:02.8014285Z [4202/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-04-25T04:28:02.9292924Z [4203/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-04-25T04:28:04.0501243Z [4204/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-04-25T04:28:04.5717366Z 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:28:04.5719906Z 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:28:04.5722212Z 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:28:04.5724059Z [4205/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-04-25T04:28:06.1269621Z [4206/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-04-25T04:28:06.1775223Z [4207/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-04-25T04:28:06.5260030Z [4208/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-04-25T04:28:06.8526962Z [4209/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-04-25T04:28:07.0109106Z [4210/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-04-25T04:28:07.8513453Z [4211/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-04-25T04:28:07.8825779Z [4212/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-04-25T04:28:08.0170277Z [4213/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-04-25T04:28:08.8485364Z [4214/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-04-25T04:28:09.1700775Z [4215/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-04-25T04:28:10.0264453Z [4216/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-04-25T04:28:10.9769474Z [4217/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-04-25T04:28:11.0183181Z [4218/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-04-25T04:28:11.8774567Z [4219/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-04-25T04:28:12.4272368Z [4220/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-04-25T04:28:12.8455330Z [4221/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-04-25T04:28:13.0828113Z [4222/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-04-25T04:28:14.0353594Z [4223/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-04-25T04:28:14.2199887Z [4224/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-04-25T04:28:14.3810526Z [4225/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-04-25T04:28:14.6179715Z [4226/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-04-25T04:28:14.8521087Z [4227/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-04-25T04:28:14.9897508Z [4228/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-04-25T04:28:15.5478875Z [4229/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-04-25T04:28:15.6133362Z [4230/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-04-25T04:28:15.7769266Z [4231/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-04-25T04:28:16.2548066Z [4232/7581] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-04-25T04:28:16.2569097Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-04-25T04:28:16.2570761Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-04-25T04:28:16.2572138Z [4233/7581] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-04-25T04:28:16.5710248Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-04-25T04:28:16.5711319Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-04-25T04:28:16.5712261Z [4234/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-04-25T04:28:16.6008132Z [4235/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-04-25T04:28:16.6459701Z [4236/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-04-25T04:28:16.8179968Z [4237/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-04-25T04:28:17.8602693Z [4238/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-04-25T04:28:18.1358456Z [4239/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-04-25T04:28:19.4848612Z [4240/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-04-25T04:28:19.5299636Z [4241/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-04-25T04:28:20.1435489Z [4242/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-04-25T04:28:20.2748195Z [4243/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-04-25T04:28:20.5741976Z [4244/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-04-25T04:28:20.8880316Z [4245/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-04-25T04:28:21.4504903Z [4246/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-04-25T04:28:21.4672382Z [4247/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-04-25T04:28:22.7513515Z [4248/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-04-25T04:28:22.7545061Z [4249/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-04-25T04:28:23.0441388Z [4250/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-04-25T04:28:24.0138117Z [4251/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-04-25T04:28:24.0568824Z [4252/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-04-25T04:28:24.1274022Z [4253/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-04-25T04:28:24.5077951Z [4254/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-04-25T04:28:25.1599543Z [4255/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-04-25T04:28:25.2209734Z [4256/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-04-25T04:28:25.4186968Z [4257/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-04-25T04:28:25.6096258Z [4258/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-04-25T04:28:25.7781355Z [4259/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-04-25T04:28:25.8504847Z [4260/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-04-25T04:28:26.3151444Z [4261/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-04-25T04:28:26.3204472Z [4262/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-04-25T04:28:26.5370505Z [4263/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-04-25T04:28:26.7556114Z [4264/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-04-25T04:28:26.7906411Z [4265/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-04-25T04:28:27.1431098Z [4266/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-04-25T04:28:27.5207335Z [4267/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-04-25T04:28:27.8040326Z [4268/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-04-25T04:28:28.2043632Z [4269/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-04-25T04:28:28.2727139Z [4270/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-04-25T04:28:28.4541652Z [4271/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-04-25T04:28:28.6095069Z [4272/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-04-25T04:28:29.0358669Z [4273/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-04-25T04:28:29.4363117Z [4274/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-04-25T04:28:31.0428154Z [4275/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-04-25T04:28:31.0695860Z [4276/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-04-25T04:28:32.4775039Z [4277/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-04-25T04:28:32.5617609Z [4278/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-04-25T04:28:32.6906154Z [4279/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-04-25T04:28:33.2706429Z [4280/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-04-25T04:28:33.3108381Z [4281/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-04-25T04:28:33.6674277Z [4282/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-04-25T04:28:34.5137911Z [4283/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-04-25T04:28:35.1829093Z [4284/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-04-25T04:28:35.2552391Z [4285/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-04-25T04:28:36.2930942Z [4286/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-04-25T04:28:36.4703075Z [4287/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-04-25T04:28:36.8066139Z [4288/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-04-25T04:28:36.8068773Z 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:28:36.8072383Z 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:28:36.8074808Z with 2025-04-25T04:28:36.8075153Z [ 2025-04-25T04:28:36.8075523Z _Ty1=const pybind11::object &, 2025-04-25T04:28:36.8076143Z _Ty2=const pybind11::object & 2025-04-25T04:28:36.8076629Z ] 2025-04-25T04:28:36.8078704Z 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:28:36.8080949Z with 2025-04-25T04:28:36.8081279Z [ 2025-04-25T04:28:36.8081667Z _InIt1=const pybind11::object *, 2025-04-25T04:28:36.8082276Z _InIt2=const pybind11::object *, 2025-04-25T04:28:36.8082894Z _Pr=std::equal_to 2025-04-25T04:28:36.8083329Z ] 2025-04-25T04:28:36.8085582Z 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:28:36.8087891Z with 2025-04-25T04:28:36.8088276Z [ 2025-04-25T04:28:36.8088666Z _InIt1=const pybind11::object *, 2025-04-25T04:28:36.8089288Z _InIt2=const pybind11::object * 2025-04-25T04:28:36.8089798Z ] 2025-04-25T04:28:37.0973573Z 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:28:37.0975775Z [4289/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-04-25T04:28:37.4276505Z [4290/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-04-25T04:28:37.8217634Z [4291/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-04-25T04:28:37.9520144Z [4292/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-04-25T04:28:39.2582358Z [4293/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-04-25T04:28:40.7511083Z [4294/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-04-25T04:28:40.7967810Z [4295/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-04-25T04:28:41.0027707Z [4296/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-04-25T04:28:41.4488435Z [4297/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-04-25T04:28:41.8283032Z [4298/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-04-25T04:28:41.8810740Z [4299/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-04-25T04:28:41.8900924Z [4300/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-04-25T04:28:41.9035154Z [4301/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-04-25T04:28:42.0628922Z [4302/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-04-25T04:28:42.3519190Z [4303/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-04-25T04:28:43.1137707Z [4304/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-04-25T04:28:43.1529509Z [4305/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-04-25T04:28:43.3188637Z [4306/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-04-25T04:28:43.4279217Z [4307/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-04-25T04:28:44.2131126Z [4308/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-04-25T04:28:44.3511587Z [4309/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-04-25T04:28:44.5086757Z [4310/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-04-25T04:28:45.2026967Z [4311/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-04-25T04:28:45.2773222Z [4312/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-04-25T04:28:45.9157913Z [4313/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-04-25T04:28:46.1232919Z [4314/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-04-25T04:28:46.4874603Z [4315/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-04-25T04:28:47.0748082Z [4316/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-04-25T04:28:47.0921928Z [4317/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-04-25T04:28:47.1577273Z [4318/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-04-25T04:28:47.5622875Z [4319/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-04-25T04:28:48.1065175Z [4320/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-04-25T04:28:48.2230478Z [4321/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-04-25T04:28:48.3849771Z [4322/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-04-25T04:28:48.5573215Z [4323/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-04-25T04:28:49.1456997Z [4324/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-04-25T04:28:49.2081998Z [4325/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-04-25T04:28:51.3658104Z [4326/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-04-25T04:28:51.5100027Z [4327/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-04-25T04:28:52.5410331Z [4328/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Event.cpp.obj 2025-04-25T04:28:52.7951045Z [4329/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Module.cpp.obj 2025-04-25T04:28:52.8420158Z [4330/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\python_comm.cpp.obj 2025-04-25T04:28:52.8716907Z [4331/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudart.cpp.obj 2025-04-25T04:28:53.2165865Z [4332/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Stream.cpp.obj 2025-04-25T04:28:53.2634378Z [4333/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Graph.cpp.obj 2025-04-25T04:28:53.8175649Z [4334/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\nvtx.cpp.obj 2025-04-25T04:28:53.9107823Z [4335/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\GdsFile.cpp.obj 2025-04-25T04:28:53.9620934Z [4336/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudnn.cpp.obj 2025-04-25T04:28:55.1029279Z [4337/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\MemPool.cpp.obj 2025-04-25T04:28:56.4062764Z [4338/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\utils.cpp.obj 2025-04-25T04:28:56.7566634Z [4339/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-04-25T04:28:57.0329236Z [4340/7581] 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:28:57.0472160Z [4341/7581] 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:28:57.0487457Z [4342/7581] 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:28:57.1126395Z [4343/7581] 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:28:57.1181946Z [4344/7581] 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:28:57.1345043Z [4345/7581] 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:28:57.1807020Z [4346/7581] 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:28:57.2108651Z [4347/7581] 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:28:57.3166719Z [4348/7581] 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:28:57.3351211Z [4349/7581] 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:28:57.4559685Z [4350/7581] 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:28:57.4574569Z [4351/7581] 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:28:57.4587163Z [4352/7581] 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:28:57.4601009Z [4353/7581] 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:28:57.5335834Z [4354/7581] 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:28:57.5635978Z [4355/7581] 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:28:57.6365816Z [4356/7581] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-04-25T04:28:57.6457267Z [4357/7581] 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:28:57.6470838Z [4358/7581] 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:28:57.8188070Z [4359/7581] 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:28:58.1023813Z [4360/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-04-25T04:28:58.1037146Z [4361/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-04-25T04:28:58.9879555Z [4362/7581] 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:28:58.9930142Z [4363/7581] 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:28:59.2553153Z [4364/7581] 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:28:59.8213469Z [4365/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-04-25T04:29:00.7878192Z [4366/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-04-25T04:29:00.8055029Z [4367/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-04-25T04:29:00.8069600Z [4368/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-04-25T04:29:00.8145040Z [4369/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-04-25T04:29:01.4344089Z [4370/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-04-25T04:29:01.4394661Z [4371/7581] 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:29:01.4409175Z [4372/7581] 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:29:01.4524146Z [4373/7581] 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:29:01.4654137Z [4374/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-04-25T04:29:01.4808076Z [4375/7581] 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:29:02.1086633Z [4376/7581] 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:29:02.1202818Z [4377/7581] 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:29:02.1268935Z [4378/7581] 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:29:02.1284793Z [4379/7581] 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:29:02.1300626Z [4380/7581] 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:29:02.1358127Z [4381/7581] 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:29:02.1374661Z [4382/7581] 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:29:02.3278044Z [4383/7581] 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:29:02.3339447Z [4384/7581] 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:29:02.4242310Z [4385/7581] 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:29:02.4255261Z [4386/7581] 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:29:02.4399751Z [4387/7581] 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:29:02.4519756Z [4388/7581] 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:29:02.6377801Z [4389/7581] 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:29:02.6392081Z [4390/7581] 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:29:02.6641750Z [4391/7581] 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:29:02.6696245Z [4392/7581] 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:29:02.6753364Z [4393/7581] 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:29:02.7218122Z [4394/7581] 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:29:02.7477045Z [4395/7581] 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:29:02.7611752Z [4396/7581] 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:29:02.9262820Z [4397/7581] 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:29:02.9280400Z [4398/7581] 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:29:02.9296961Z [4399/7581] 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:29:03.0494059Z [4400/7581] 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:29:03.0594024Z [4401/7581] 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:29:03.0609609Z [4402/7581] 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:29:03.1164252Z [4403/7581] 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:29:03.1255717Z [4404/7581] 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:29:03.1313360Z [4405/7581] 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:29:03.3096227Z [4406/7581] 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:29:03.3110039Z [4407/7581] 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:29:03.3121926Z [4408/7581] 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:29:03.3180107Z [4409/7581] 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:29:03.3193074Z [4410/7581] 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:29:03.3206128Z [4411/7581] 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:29:03.3780657Z [4412/7581] 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:29:03.4711694Z [4413/7581] 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:29:03.4762589Z [4414/7581] 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:29:03.5630874Z [4415/7581] 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:29:03.5700689Z [4416/7581] 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:29:03.6426792Z [4417/7581] 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:29:03.6498633Z [4418/7581] 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:29:03.6514762Z [4419/7581] 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:29:03.7152841Z [4420/7581] 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:29:03.7224114Z [4421/7581] 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:29:03.7342644Z [4422/7581] 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:29:03.7356831Z [4423/7581] 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:29:03.7997484Z [4424/7581] 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:29:03.8054625Z [4425/7581] 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:29:03.8068253Z [4426/7581] 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:29:04.0896696Z [4427/7581] 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:29:04.0910472Z [4428/7581] 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:29:04.0922242Z [4429/7581] 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:29:04.0976066Z [4430/7581] 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:29:04.0991196Z [4431/7581] 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:29:04.1041248Z [4432/7581] 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:29:04.1137167Z [4433/7581] 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:29:04.2670351Z [4434/7581] 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:29:04.2683003Z [4435/7581] 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:29:04.2694344Z [4436/7581] 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:29:04.2705682Z [4437/7581] 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:29:04.2717716Z [4438/7581] 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:29:04.2733019Z [4439/7581] 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:29:04.3264998Z [4440/7581] 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:29:04.4759305Z [4441/7581] 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:29:04.4810508Z [4442/7581] 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:29:04.5182261Z [4443/7581] 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:29:04.5201414Z [4444/7581] 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:29:04.5217168Z [4445/7581] 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:29:04.5232186Z [4446/7581] 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:29:04.5245023Z [4447/7581] 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:29:04.6486909Z [4448/7581] 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:29:04.6710443Z [4449/7581] 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:29:04.6826860Z [4450/7581] 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:29:04.6843502Z [4451/7581] 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:29:04.6858801Z [4452/7581] 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:29:04.7134475Z [4453/7581] 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:29:04.8270575Z [4454/7581] 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:29:04.8371432Z [4455/7581] 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:29:04.8383695Z [4456/7581] 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:29:04.8394779Z [4457/7581] 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:29:04.8462431Z [4458/7581] 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:29:04.8479791Z [4459/7581] 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:29:04.9314532Z [4460/7581] 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:29:05.0525598Z [4461/7581] 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:29:05.0674655Z [4462/7581] 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:29:05.0687420Z [4463/7581] 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:29:05.0699301Z [4464/7581] 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:29:05.0711500Z [4465/7581] 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:29:05.0725449Z [4466/7581] 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:29:05.0780607Z [4467/7581] 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:29:05.3525301Z [4468/7581] 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:29:05.3829840Z [4469/7581] 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:29:05.3882564Z [4470/7581] 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:29:05.5540293Z [4471/7581] 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:29:05.5604214Z [4472/7581] 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:29:05.5619327Z [4473/7581] 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:29:05.5632292Z [4474/7581] 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:29:05.6292918Z [4475/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-04-25T04:29:05.6865029Z [4476/7581] 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:29:05.7701644Z [4477/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-04-25T04:29:05.7776322Z [4478/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-04-25T04:29:05.7838058Z [4479/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-04-25T04:29:05.7852819Z [4480/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-04-25T04:29:05.7906179Z [4481/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-04-25T04:29:05.8152303Z [4482/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-04-25T04:29:05.9350472Z [4483/7581] 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:29:05.9415289Z [4484/7581] 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:29:05.9427981Z [4485/7581] 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:29:05.9532743Z [4486/7581] 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:29:05.9640100Z [4487/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-04-25T04:29:05.9842418Z [4488/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-04-25T04:29:06.0342108Z [4489/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-04-25T04:29:06.0395067Z [4490/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-04-25T04:29:06.1306927Z [4491/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-04-25T04:29:06.1447886Z [4492/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-04-25T04:29:06.2020053Z [4493/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-04-25T04:29:06.2113927Z [4494/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-04-25T04:29:06.2168668Z [4495/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-04-25T04:29:06.2180826Z [4496/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-04-25T04:29:06.2301526Z [4497/7581] 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:29:06.2387926Z [4498/7581] 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:29:06.2541011Z [4499/7581] 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:29:06.3349049Z [4500/7581] 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:29:06.3449873Z [4501/7581] 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:29:06.3504391Z [4502/7581] 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:29:06.3522298Z [4503/7581] 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:29:06.4946578Z [4504/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-04-25T04:29:06.5034656Z [4505/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-04-25T04:29:06.5107147Z [4506/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-04-25T04:29:06.5122216Z [4507/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-04-25T04:29:06.5134530Z [4508/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-04-25T04:29:06.5147642Z [4509/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-04-25T04:29:06.5208654Z [4510/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-04-25T04:29:06.6273431Z [4511/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-04-25T04:29:06.6329406Z [4512/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-04-25T04:29:06.6360652Z [4513/7581] 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:29:06.6412972Z [4514/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-04-25T04:29:06.6426078Z [4515/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-04-25T04:29:06.6530777Z [4516/7581] 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:29:06.7108922Z [4517/7581] 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:29:06.7728702Z [4518/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-04-25T04:29:06.7796098Z [4519/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-04-25T04:29:06.7865226Z [4520/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-04-25T04:29:06.7878346Z [4521/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-04-25T04:29:06.7937371Z [4522/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-04-25T04:29:06.7951613Z [4523/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-04-25T04:29:06.8814047Z [4524/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-04-25T04:29:06.8864592Z [4525/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-04-25T04:29:06.8914939Z [4526/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-04-25T04:29:06.9045822Z [4527/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-04-25T04:29:07.0581370Z [4528/7581] 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:29:07.0648772Z [4529/7581] 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:29:07.0947003Z [4530/7581] 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:29:07.0995797Z [4531/7581] 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:29:07.1053745Z [4532/7581] 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:29:07.1066450Z [4533/7581] 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:29:07.1326128Z [4534/7581] 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:29:07.1704854Z [4535/7581] 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:29:07.2880423Z [4536/7581] 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:29:07.3094986Z [4537/7581] 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:29:07.3255180Z [4538/7581] 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:29:07.3267233Z [4539/7581] 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:29:07.3279860Z [4540/7581] 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:29:07.3292271Z [4541/7581] 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:29:07.3308590Z [4542/7581] 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:29:07.4598032Z [4543/7581] 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:29:07.5664641Z [4544/7581] 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:29:07.6416138Z [4545/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-04-25T04:29:07.6581139Z [4546/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-04-25T04:29:07.6593424Z [4547/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-04-25T04:29:07.6646293Z [4548/7581] 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:29:07.6707436Z [4549/7581] 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:29:07.6721235Z [4550/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-04-25T04:29:07.6733189Z [4551/7581] 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:29:07.8104798Z [4552/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-04-25T04:29:07.8258779Z [4553/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-04-25T04:29:07.8271982Z [4554/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-04-25T04:29:07.8283936Z [4555/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-04-25T04:29:07.8296154Z [4556/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-04-25T04:29:07.8308515Z [4557/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-04-25T04:29:07.8322180Z [4558/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-04-25T04:29:08.0036711Z [4559/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-04-25T04:29:08.0050306Z [4560/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-04-25T04:29:08.0061644Z [4561/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-04-25T04:29:08.0118204Z [4562/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-04-25T04:29:08.0130573Z [4563/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-04-25T04:29:08.0188787Z [4564/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-04-25T04:29:08.1775407Z [4565/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-04-25T04:29:08.2510682Z [4566/7581] 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:29:08.2632818Z [4567/7581] 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:29:08.2648278Z [4568/7581] 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:29:08.2660508Z [4569/7581] 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:29:08.2672158Z [4570/7581] 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:29:08.2682943Z [4571/7581] 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:29:08.4153181Z [4572/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-04-25T04:29:08.4286605Z [4573/7581] 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:29:08.4302084Z [4574/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-04-25T04:29:08.4315321Z [4575/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-04-25T04:29:08.4327075Z [4576/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-04-25T04:29:08.4339857Z [4577/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-04-25T04:29:08.4355509Z [4578/7581] 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:29:08.5528862Z [4579/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-04-25T04:29:08.5579588Z [4580/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-04-25T04:29:08.5591752Z [4581/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-04-25T04:29:08.5650240Z [4582/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-04-25T04:29:08.6447229Z [4583/7581] 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:29:08.6710628Z [4584/7581] 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:29:08.6723704Z [4585/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-04-25T04:29:08.6812268Z [4586/7581] 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:29:08.6912782Z [4587/7581] 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:29:08.6974712Z [4588/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-04-25T04:29:08.7595065Z [4589/7581] 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:29:08.8590925Z [4590/7581] 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:29:08.8646208Z [4591/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-04-25T04:29:08.8714419Z [4592/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-04-25T04:29:08.8786000Z [4593/7581] 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:29:08.8849437Z [4594/7581] 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:29:08.8867863Z [4595/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-04-25T04:29:08.9880381Z [4596/7581] 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:29:09.0539100Z [4597/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-04-25T04:29:09.0553325Z [4598/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-04-25T04:29:09.0566709Z [4599/7581] 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:29:09.0581752Z [4600/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-04-25T04:29:09.2302101Z [4601/7581] 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:29:09.2367601Z [4602/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-04-25T04:29:09.2383067Z [4603/7581] 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:29:09.2398307Z [4604/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-04-25T04:29:09.2414658Z [4605/7581] 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:29:09.2649365Z [4606/7581] 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:29:09.2918312Z [4607/7581] 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:29:09.3573185Z [4608/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-04-25T04:29:09.3701373Z [4609/7581] 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:29:09.6372887Z [4610/7581] 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:29:09.6386417Z [4611/7581] 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:29:09.6444848Z [4612/7581] 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:29:09.6457491Z [4613/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-04-25T04:29:09.6537899Z [4614/7581] 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:29:09.6550805Z [4615/7581] 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:29:09.6703331Z [4616/7581] 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:29:09.8951207Z [4617/7581] 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:29:09.9017674Z [4618/7581] 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:29:09.9080869Z [4619/7581] 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:29:09.9093566Z [4620/7581] 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:29:09.9106263Z [4621/7581] 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:29:10.0325685Z [4622/7581] 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:29:10.0340559Z [4623/7581] 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:29:10.1113266Z [4624/7581] 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:29:10.1125815Z [4625/7581] 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:29:10.1185426Z [4626/7581] 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:29:10.1196888Z [4627/7581] 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:29:10.1208630Z [4628/7581] 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:29:10.2902983Z [4629/7581] 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:29:10.3014289Z [4630/7581] 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:29:10.3477505Z [4631/7581] 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:29:10.3987309Z [4632/7581] 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:29:10.4064946Z [4633/7581] 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:29:10.4126285Z [4634/7581] 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:29:10.4324609Z [4635/7581] 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:29:10.6199402Z [4636/7581] 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:29:10.6500816Z [4637/7581] 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:29:10.6514056Z [4638/7581] 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:29:10.6570596Z [4639/7581] 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:29:10.6636701Z [4640/7581] 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:29:10.6959182Z [4641/7581] 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:29:10.7229466Z [4642/7581] 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:29:10.7586105Z [4643/7581] 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:29:10.8474510Z [4644/7581] 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:29:10.8488311Z [4645/7581] 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:29:10.8500629Z [4646/7581] 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:29:10.9194048Z [4647/7581] 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:29:10.9664242Z [4648/7581] 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:29:10.9726180Z [4649/7581] 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:29:11.0251555Z [4650/7581] 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:29:11.4009242Z [4651/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-04-25T04:29:11.4022314Z [4652/7581] 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:29:11.4034917Z [4653/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-04-25T04:29:11.4049903Z [4654/7581] 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:29:11.4065595Z [4655/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-04-25T04:29:11.4079362Z [4656/7581] 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:29:11.5717652Z [4657/7581] 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:29:11.5884704Z [4658/7581] 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:29:11.5936568Z [4659/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-04-25T04:29:11.7168020Z [4660/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-04-25T04:29:11.7230562Z [4661/7581] 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:29:11.7725969Z [4662/7581] 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:29:11.7985155Z [4663/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-04-25T04:29:11.8980129Z [4664/7581] 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:29:11.9221191Z [4665/7581] 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:29:11.9857455Z [4666/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-04-25T04:29:12.1560969Z [4667/7581] 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:29:12.1573636Z [4668/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-04-25T04:29:12.1743133Z [4669/7581] 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:29:12.2407241Z [4670/7581] 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:29:12.2465117Z [4671/7581] 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:29:12.2647447Z [4672/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-04-25T04:29:12.3201968Z [4673/7581] 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:29:12.3409302Z [4674/7581] 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:29:12.5751721Z [4675/7581] 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:29:12.5766116Z [4676/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-04-25T04:29:12.5779574Z [4677/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-04-25T04:29:12.5792261Z [4678/7581] 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:29:12.5850332Z [4679/7581] 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:29:12.5861583Z [4680/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-04-25T04:29:13.1619527Z [4681/7581] 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:29:13.1746627Z [4682/7581] 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:29:13.1759098Z [4683/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-04-25T04:29:13.1770973Z [4684/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-04-25T04:29:13.1782648Z [4685/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-04-25T04:29:13.1872487Z [4686/7581] 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:29:13.1987233Z [4687/7581] 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:29:13.3149019Z [4688/7581] 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:29:13.3242397Z [4689/7581] 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:29:13.3507714Z [4690/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-04-25T04:29:13.4094445Z [4691/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-04-25T04:29:13.4145947Z [4692/7581] 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:29:13.4263977Z [4693/7581] 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:29:13.4428342Z [4694/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-04-25T04:29:13.6496145Z [4695/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-04-25T04:29:13.6509998Z [4696/7581] 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:29:13.6568607Z [4697/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-04-25T04:29:13.6630822Z [4698/7581] 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:29:13.6692158Z [4699/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-04-25T04:29:13.8102643Z [4700/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-04-25T04:29:13.8119146Z [4701/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-04-25T04:29:13.8767968Z [4702/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-04-25T04:29:13.8882961Z [4703/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-04-25T04:29:13.8969192Z [4704/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-04-25T04:29:13.8982875Z [4705/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-04-25T04:29:13.9043909Z [4706/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-04-25T04:29:13.9189258Z [4707/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-04-25T04:29:13.9247178Z [4708/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-04-25T04:29:13.9896885Z [4709/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-04-25T04:29:13.9980765Z [4710/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-04-25T04:29:14.1036456Z [4711/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-04-25T04:29:14.1088106Z [4712/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-04-25T04:29:14.1100633Z [4713/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-04-25T04:29:14.1591823Z [4714/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-04-25T04:29:14.3338822Z [4715/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-04-25T04:29:14.3416081Z [4716/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-04-25T04:29:14.3495855Z [4717/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-04-25T04:29:14.3848667Z [4718/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-04-25T04:29:14.3862631Z [4719/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-04-25T04:29:14.3875257Z [4720/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-04-25T04:29:14.3936100Z [4721/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-04-25T04:29:14.6420215Z [4722/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-04-25T04:29:14.6434278Z [4723/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-04-25T04:29:14.6446485Z [4724/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-04-25T04:29:14.6459698Z [4725/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-04-25T04:29:14.7349081Z [4726/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-04-25T04:29:14.7517991Z [4727/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-04-25T04:29:14.7572862Z [4728/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-04-25T04:29:14.8961062Z [4729/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-04-25T04:29:15.0372745Z [4730/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-04-25T04:29:15.0386589Z [4731/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-04-25T04:29:15.0399134Z [4732/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-04-25T04:29:15.0412116Z [4733/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-04-25T04:29:15.0425888Z [4734/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-04-25T04:29:15.0440382Z [4735/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-04-25T04:29:15.2253306Z [4736/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-04-25T04:29:15.2311934Z [4737/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-04-25T04:29:15.2326258Z [4738/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-04-25T04:29:15.2341127Z [4739/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-04-25T04:29:15.3091882Z [4740/7581] 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:29:15.3106647Z [4741/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-04-25T04:29:15.3163776Z [4742/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-04-25T04:29:15.4048605Z [4743/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-04-25T04:29:15.4115533Z [4744/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-04-25T04:29:15.4129548Z [4745/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-04-25T04:29:15.4330149Z [4746/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-04-25T04:29:15.4346032Z [4747/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-04-25T04:29:15.4411450Z [4748/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-04-25T04:29:15.4428861Z [4749/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-04-25T04:29:15.4900872Z [4750/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-04-25T04:29:15.6025642Z [4751/7581] 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:29:15.6039241Z [4752/7581] 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:29:15.6052441Z [4753/7581] 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:29:15.6064286Z [4754/7581] 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:29:15.6078726Z [4755/7581] 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:29:15.6093020Z [4756/7581] 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:29:15.6155155Z [4757/7581] 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:29:15.7456602Z [4758/7581] 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:29:15.7521102Z [4759/7581] 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:29:15.7533678Z [4760/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-04-25T04:29:15.7587110Z [4761/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-04-25T04:29:15.8483859Z [4762/7581] 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:29:15.8684965Z [4763/7581] 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:29:15.8739518Z [4764/7581] 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:29:15.9041731Z [4765/7581] 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:29:15.9449226Z [4766/7581] 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:29:16.0297107Z [4767/7581] 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:29:16.0358155Z [4768/7581] 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:29:16.1272011Z [4769/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-04-25T04:29:16.1474763Z [4770/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-04-25T04:29:16.2384553Z [4771/7581] 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:29:16.2427802Z [4772/7581] 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:29:16.2602243Z [4773/7581] 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:29:16.2623593Z [4774/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-04-25T04:29:16.3570456Z [4775/7581] 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:29:16.3583237Z [4776/7581] 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:29:16.3642046Z [4777/7581] 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:29:16.3696134Z [4778/7581] 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:29:16.3771336Z [4779/7581] 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:29:16.5185754Z [4780/7581] 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:29:16.5975276Z [4781/7581] 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:29:16.6045834Z [4782/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-04-25T04:29:16.6058750Z [4783/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-04-25T04:29:16.6070951Z [4784/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-04-25T04:29:16.6082727Z [4785/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-04-25T04:29:16.6164361Z [4786/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-04-25T04:29:16.6928171Z [4787/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-04-25T04:29:16.7366740Z [4788/7581] 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:29:16.7381553Z [4789/7581] 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:29:16.7443877Z [4790/7581] 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:29:16.7456705Z [4791/7581] 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:29:16.7468289Z [4792/7581] 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:29:16.7480788Z [4793/7581] 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:29:16.9731022Z [4794/7581] 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:29:16.9789403Z [4795/7581] 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:29:16.9803656Z [4796/7581] 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:29:17.0050641Z [4797/7581] 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:29:17.0896906Z [4798/7581] 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:29:17.1117330Z [4799/7581] 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:29:17.1236378Z [4800/7581] 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:29:17.1966986Z [4801/7581] 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:29:17.2013606Z [4802/7581] 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:29:17.3289468Z [4803/7581] 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:29:17.3415229Z [4804/7581] 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:29:17.3477364Z [4805/7581] 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:29:17.3609035Z [4806/7581] 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:29:17.4895215Z [4807/7581] 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:29:17.5071984Z [4808/7581] 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:29:17.6237789Z [4809/7581] 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:29:17.7037603Z [4810/7581] 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:29:17.7050890Z [4811/7581] 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:29:17.7239533Z [4812/7581] 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:29:17.7867142Z [4813/7581] 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:29:17.8469278Z [4814/7581] 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:29:17.9767421Z [4815/7581] 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:29:17.9823357Z [4816/7581] 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:29:17.9835496Z [4817/7581] 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:29:17.9947345Z [4818/7581] 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:29:18.0970496Z [4819/7581] 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:29:18.1720486Z [4820/7581] 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:29:18.2023492Z [4821/7581] 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:29:18.3369879Z [4822/7581] 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:29:18.3727071Z [4823/7581] 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:29:18.4716810Z [4824/7581] 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:29:18.4778916Z [4825/7581] 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:29:18.4795359Z [4826/7581] 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:29:18.6824326Z [4827/7581] 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:29:18.6883227Z [4828/7581] 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:29:18.7695225Z [4829/7581] 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:29:18.8203086Z [4830/7581] 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:29:18.9717722Z [4831/7581] 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:29:18.9734299Z [4832/7581] 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:29:18.9746644Z [4833/7581] 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:29:18.9758704Z [4834/7581] 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:29:19.0438350Z [4835/7581] 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:29:19.0977798Z [4836/7581] 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:29:19.0992540Z [4837/7581] 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:29:19.1127824Z [4838/7581] 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:29:19.1142953Z [4839/7581] 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:29:19.1266551Z [4840/7581] 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:29:19.1682728Z [4841/7581] 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:29:19.1825361Z [4842/7581] 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:29:19.4868252Z [4843/7581] 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:29:19.4939570Z [4844/7581] 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:29:19.5154475Z [4845/7581] 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:29:19.8281758Z [4846/7581] 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:29:19.8295201Z [4847/7581] 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:29:19.8307717Z [4848/7581] 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:29:19.8319731Z [4849/7581] 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:29:19.8333282Z [4850/7581] 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:29:19.9631664Z [4851/7581] 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:29:19.9644152Z [4852/7581] 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:29:20.1000739Z [4853/7581] 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:29:20.3184892Z [4854/7581] 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:29:20.3282207Z [4855/7581] 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:29:20.3295561Z [4856/7581] 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:29:20.3437298Z [4857/7581] 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:29:20.3622873Z [4858/7581] 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:29:20.3924837Z [4859/7581] 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:29:20.4057852Z [4860/7581] 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:29:20.4615240Z [4861/7581] 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:29:20.4627998Z [4862/7581] 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:29:20.4876723Z [4863/7581] 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:29:20.8072751Z [4864/7581] 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:29:21.0077115Z [4865/7581] 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:29:21.0090381Z [4866/7581] 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:29:21.0101849Z [4867/7581] 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:29:21.0112781Z [4868/7581] 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:29:21.0125578Z [4869/7581] 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:29:21.0138120Z [4870/7581] 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:29:21.1823591Z [4871/7581] 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:29:21.1836714Z [4872/7581] 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:29:21.1866850Z [4873/7581] 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:29:21.2911078Z [4874/7581] 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:29:21.3013236Z [4875/7581] 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:29:21.3066955Z [4876/7581] 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:29:21.3129664Z [4877/7581] 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:29:21.3875333Z [4878/7581] 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:29:21.3892739Z [4879/7581] 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:29:21.4046217Z [4880/7581] 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:29:21.4854328Z [4881/7581] 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:29:21.4868747Z [4882/7581] 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:29:21.4989543Z [4883/7581] 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:29:21.5336423Z [4884/7581] 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:29:21.5441788Z [4885/7581] 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:29:21.5599466Z [4886/7581] 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:29:21.5835568Z [4887/7581] 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:29:21.7034775Z [4888/7581] 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:29:21.7103470Z [4889/7581] 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:29:21.7121077Z [4890/7581] 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:29:21.7137149Z [4891/7581] 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:29:21.8130772Z [4892/7581] 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:29:21.8178975Z [4893/7581] 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:29:21.8193470Z [4894/7581] 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:29:22.0057323Z [4895/7581] 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:29:22.0123658Z [4896/7581] 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:29:22.0168671Z [4897/7581] 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:29:22.0454152Z [4898/7581] 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:29:22.0465642Z [4899/7581] 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:29:22.0478426Z [4900/7581] 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:29:22.0491424Z [4901/7581] 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:29:22.1366677Z [4902/7581] 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:29:22.2538317Z [4903/7581] 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:29:22.2551035Z [4904/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-04-25T04:29:22.2625974Z [4905/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-04-25T04:29:22.2639323Z [4906/7581] 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:29:22.2706361Z [4907/7581] 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:29:22.2719771Z [4908/7581] 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:29:22.2790258Z [4909/7581] 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:29:22.4053316Z [4910/7581] 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:29:22.4105695Z [4911/7581] 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:29:22.4764402Z [4912/7581] 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:29:22.4826351Z [4913/7581] 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:29:22.4838045Z [4914/7581] 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:29:22.4849795Z [4915/7581] 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:29:22.4862665Z [4916/7581] 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:29:22.6854884Z [4917/7581] 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:29:22.6871339Z [4918/7581] 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:29:22.6888556Z [4919/7581] 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:29:22.6905446Z [4920/7581] 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:29:22.6973046Z [4921/7581] 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:29:22.6986020Z [4922/7581] 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:29:22.6997518Z [4923/7581] 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:29:22.9074689Z [4924/7581] 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:29:22.9088059Z [4925/7581] 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:29:22.9100022Z [4926/7581] 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:29:22.9166034Z [4927/7581] 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:29:22.9178737Z [4928/7581] 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:29:22.9192780Z [4929/7581] 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:29:22.9249881Z [4930/7581] 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:29:23.2462334Z [4931/7581] 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:29:23.2474630Z [4932/7581] 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:29:23.2487263Z [4933/7581] 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:29:23.2500774Z [4934/7581] 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:29:23.2514162Z [4935/7581] 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:29:23.2526840Z [4936/7581] 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:29:23.2582821Z [4937/7581] 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:29:23.4119343Z [4938/7581] 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:29:23.4131989Z [4939/7581] 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:29:23.4144792Z [4940/7581] 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:29:23.5152030Z [4941/7581] 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:29:23.5166106Z [4942/7581] 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:29:23.5179536Z [4943/7581] 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:29:23.5202515Z [4944/7581] 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:29:23.5852831Z [4945/7581] 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:29:23.5868665Z [4946/7581] 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:29:23.7663750Z [4947/7581] 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:29:23.7676699Z [4948/7581] 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:29:23.7688516Z [4949/7581] 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:29:23.7760339Z [4950/7581] 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:29:23.7773312Z [4951/7581] 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:29:23.7877017Z [4952/7581] 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:29:23.8192603Z [4953/7581] 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:29:23.8982788Z [4954/7581] 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:29:23.9043131Z [4955/7581] 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:29:23.9314360Z [4956/7581] 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:29:23.9329410Z [4957/7581] 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:29:23.9386620Z [4958/7581] 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:29:23.9399836Z [4959/7581] 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:29:24.0435538Z [4960/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-04-25T04:29:24.1136640Z [4961/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-04-25T04:29:24.1188249Z [4962/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-04-25T04:29:24.1200637Z [4963/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-04-25T04:29:24.1269193Z [4964/7581] 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:29:24.1283636Z [4965/7581] 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:29:24.1360118Z [4966/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-04-25T04:29:24.2946562Z [4967/7581] 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:29:24.2966860Z [4968/7581] 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:29:24.3557576Z [4969/7581] 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:29:24.3606004Z [4970/7581] 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:29:24.4062995Z [4971/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-04-25T04:29:24.4127831Z [4972/7581] 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:29:24.4142002Z [4973/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-04-25T04:29:24.4420680Z [4974/7581] 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:29:24.4493704Z [4975/7581] 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:29:24.4578967Z [4976/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-04-25T04:29:24.4888172Z [4977/7581] 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:29:24.5341703Z [4978/7581] 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:29:24.6689853Z [4979/7581] 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:29:24.6707404Z [4980/7581] 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:29:24.6723338Z [4981/7581] 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:29:24.6740671Z [4982/7581] 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:29:24.6917014Z [4983/7581] 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:29:24.6979548Z [4984/7581] 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:29:24.8133150Z [4985/7581] 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:29:24.9030026Z [4986/7581] 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:29:24.9043581Z [4987/7581] 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:29:24.9057897Z [4988/7581] 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:29:24.9119943Z [4989/7581] 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:29:24.9192537Z [4990/7581] 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:29:24.9438814Z [4991/7581] 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:29:24.9748054Z [4992/7581] 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:29:25.0161534Z [4993/7581] 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:29:25.0217070Z [4994/7581] 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:29:25.0235457Z [4995/7581] 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:29:25.0295278Z [4996/7581] 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:29:25.0357770Z [4997/7581] 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:29:25.0504901Z [4998/7581] 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:29:25.0993724Z [4999/7581] 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:29:25.2360610Z [5000/7581] 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:29:25.2375837Z [5001/7581] 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:29:25.2428649Z [5002/7581] 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:29:25.2487686Z [5003/7581] 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:29:25.2603818Z [5004/7581] 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:29:25.2622287Z [5005/7581] 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:29:25.2682537Z [5006/7581] 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:29:25.4170115Z [5007/7581] 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:29:25.4222099Z [5008/7581] 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:29:25.4378811Z [5009/7581] 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:29:25.4392258Z [5010/7581] 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:29:25.4576807Z [5011/7581] 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:29:25.4595702Z [5012/7581] 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:29:25.4608304Z [5013/7581] 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:29:25.7367187Z [5014/7581] 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:29:25.8324329Z [5015/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-04-25T04:29:25.8338139Z [5016/7581] 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:29:25.8350170Z [5017/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-04-25T04:29:25.8362314Z [5018/7581] 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:29:25.8376250Z [5019/7581] 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:29:25.8390902Z [5020/7581] 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:29:25.9964480Z [5021/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-04-25T04:29:26.0043257Z [5022/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-04-25T04:29:26.0231290Z [5023/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-04-25T04:29:26.0297346Z [5024/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-04-25T04:29:26.0311854Z [5025/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-04-25T04:29:26.0369512Z [5026/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-04-25T04:29:26.0383718Z [5027/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-04-25T04:29:26.0692460Z [5028/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-04-25T04:29:26.0774663Z [5029/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-04-25T04:29:26.2198159Z [5030/7581] 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:29:26.2247627Z [5031/7581] 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:29:26.2348715Z [5032/7581] 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:29:26.2460205Z [5033/7581] 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:29:26.2668154Z [5034/7581] 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:29:26.2839441Z [5035/7581] 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:29:26.3703140Z [5036/7581] 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:29:26.3716065Z [5037/7581] 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:29:26.3729536Z [5038/7581] 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:29:26.4304788Z [5039/7581] 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:29:26.7610051Z [5040/7581] 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:29:26.7765111Z [5041/7581] 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:29:26.7780354Z [5042/7581] 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:29:26.7795399Z [5043/7581] 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:29:26.8713806Z [5044/7581] 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:29:26.8882698Z [5045/7581] 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:29:26.8895681Z [5046/7581] 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:29:27.1681937Z [5047/7581] 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:29:27.3321817Z [5048/7581] 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:29:27.3334627Z [5049/7581] 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:29:27.3345883Z [5050/7581] 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:29:27.4193687Z [5051/7581] 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:29:27.4365383Z [5052/7581] 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:29:27.5000448Z [5053/7581] 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:29:27.6067698Z [5054/7581] 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:29:27.6157797Z [5055/7581] 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:29:27.6176347Z [5056/7581] 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:29:27.6683680Z [5057/7581] 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:29:27.6696829Z [5058/7581] 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:29:27.6746699Z [5059/7581] 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:29:27.6852172Z [5060/7581] 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:29:27.8890434Z [5061/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-04-25T04:29:27.8980749Z [5062/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-04-25T04:29:27.9044083Z [5063/7581] 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:29:27.9057594Z [5064/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-04-25T04:29:27.9070892Z [5065/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-04-25T04:29:27.9133993Z [5066/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-04-25T04:29:27.9234761Z [5067/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-04-25T04:29:28.1019779Z [5068/7581] 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:29:28.1077189Z [5069/7581] 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:29:28.1090899Z [5070/7581] 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:29:28.1151138Z [5071/7581] 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:29:28.1214225Z [5072/7581] 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:29:28.1350124Z [5073/7581] 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:29:28.1417942Z [5074/7581] 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:29:28.2100334Z [5075/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-04-25T04:29:28.3162222Z [5076/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-04-25T04:29:28.3201974Z [5077/7581] 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:29:28.3272925Z [5078/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-04-25T04:29:28.3285744Z [5079/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-04-25T04:29:28.3299411Z [5080/7581] 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:29:28.3313382Z [5081/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-04-25T04:29:28.3930547Z [5082/7581] 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:29:28.5128109Z [5083/7581] 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:29:28.5188804Z [5084/7581] 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:29:28.5305752Z [5085/7581] 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:29:28.5320222Z [5086/7581] 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:29:28.5374454Z [5087/7581] 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:29:28.5467746Z [5088/7581] 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:29:28.5489964Z [5089/7581] 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:29:28.7169978Z [5090/7581] 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:29:28.7233987Z [5091/7581] 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:29:28.7246436Z [5092/7581] 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:29:28.7258330Z [5093/7581] 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:29:28.8124866Z [5094/7581] 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:29:28.8143908Z [5095/7581] 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:29:28.8162873Z [5096/7581] 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:29:28.9091225Z [5097/7581] 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:29:28.9273196Z [5098/7581] 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:29:28.9286294Z [5099/7581] 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:29:29.0728143Z [5100/7581] 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:29:29.0743531Z [5101/7581] 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:29:29.0800945Z [5102/7581] 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:29:29.0815455Z [5103/7581] 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:29:29.0828504Z [5104/7581] 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:29:29.1663950Z [5105/7581] 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:29:29.1917217Z [5106/7581] 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:29:29.2498629Z [5107/7581] 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:29:29.2511445Z [5108/7581] 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:29:29.2523932Z [5109/7581] 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:29:29.2537219Z [5110/7581] 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:29:29.2589244Z [5111/7581] 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:29:29.3232226Z [5112/7581] 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:29:29.3454441Z [5113/7581] 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:29:29.4274767Z [5114/7581] 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:29:29.4342697Z [5115/7581] 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:29:29.4355385Z [5116/7581] 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:29:29.4367713Z [5117/7581] 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:29:29.4484317Z [5118/7581] 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:29:29.5049998Z [5119/7581] 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:29:29.5065811Z [5120/7581] 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:29:29.6834695Z [5121/7581] 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:29:29.6854068Z [5122/7581] 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:29:29.6865175Z [5123/7581] 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:29:29.6877201Z [5124/7581] 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:29:29.6887997Z [5125/7581] 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:29:29.6899689Z [5126/7581] 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:29:29.8240501Z [5127/7581] 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:29:30.1823548Z [5128/7581] 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:29:31.3735889Z [5129/7581] 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:29:31.3753235Z [5130/7581] 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:29:31.3770224Z [5131/7581] 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:29:31.3940603Z [5132/7581] 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:29:31.4007667Z [5133/7581] 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:29:31.4212772Z [5134/7581] 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:29:31.5347466Z [5135/7581] 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:29:31.5990651Z [5136/7581] 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:29:31.6008959Z [5137/7581] 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:29:31.6072628Z [5138/7581] 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:29:31.6351483Z [5139/7581] 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:29:31.6435976Z [5140/7581] 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:29:31.6580514Z [5141/7581] 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:29:31.6705701Z [5142/7581] 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:29:31.8208066Z [5143/7581] 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:29:31.9157259Z [5144/7581] 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:29:31.9170818Z [5145/7581] 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:29:31.9183873Z [5146/7581] 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:29:31.9717063Z [5147/7581] 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:29:31.9730315Z [5148/7581] 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:29:31.9782752Z [5149/7581] 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:29:32.0364449Z [5150/7581] 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:29:32.0543419Z [5151/7581] 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:29:32.0705463Z [5152/7581] 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:29:32.1894291Z [5153/7581] 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:29:32.2088835Z [5154/7581] 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:29:32.3222579Z [5155/7581] 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:29:32.3509221Z [5156/7581] 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:29:32.3612334Z [5157/7581] 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:29:32.3689000Z [5158/7581] 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:29:32.3703902Z [5159/7581] 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:29:32.3717645Z [5160/7581] 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:29:32.4877075Z [5161/7581] 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:29:32.5693239Z [5162/7581] 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:29:32.5905244Z [5163/7581] 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:29:32.5922315Z [5164/7581] 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:29:32.5939006Z [5165/7581] 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:29:32.5956161Z [5166/7581] 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:29:32.6797273Z [5167/7581] 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:29:32.6813457Z [5168/7581] 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:29:32.7500739Z [5169/7581] 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:29:32.7516007Z [5170/7581] 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:29:32.7572478Z [5171/7581] 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:29:32.7587559Z [5172/7581] 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:29:32.7840932Z [5173/7581] 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:29:32.8341958Z [5174/7581] 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:29:32.8674287Z [5175/7581] 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:29:32.9389900Z [5176/7581] 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:29:32.9487661Z [5177/7581] 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:29:32.9502585Z [5178/7581] 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:29:32.9517774Z [5179/7581] 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:29:32.9532523Z [5180/7581] 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:29:33.0255932Z [5181/7581] 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:29:33.0411102Z [5182/7581] 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:29:33.1534075Z [5183/7581] 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:29:33.1924795Z [5184/7581] 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:29:33.1938510Z [5185/7581] 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:29:33.1952096Z [5186/7581] 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:29:33.1966059Z [5187/7581] 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:29:33.2397842Z [5188/7581] 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:29:33.2818641Z [5189/7581] 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:29:33.3596401Z [5190/7581] 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:29:33.3671629Z [5191/7581] 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:29:33.3733921Z [5192/7581] 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:29:33.3748502Z [5193/7581] 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:29:33.3761374Z [5194/7581] 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:29:33.4214931Z [5195/7581] 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:29:33.4229599Z [5196/7581] 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:29:33.5250242Z [5197/7581] 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:29:33.5266993Z [5198/7581] 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:29:33.5324424Z [5199/7581] 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:29:33.5450778Z [5200/7581] 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:29:33.5764720Z [5201/7581] 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:29:33.5819343Z [5202/7581] 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:29:33.5943042Z [5203/7581] 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:29:33.6790429Z [5204/7581] 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:29:33.6806375Z [5205/7581] 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:29:33.7566033Z [5206/7581] 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:29:33.7722940Z [5207/7581] 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:29:33.7735543Z [5208/7581] 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:29:33.7790085Z [5209/7581] 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:29:33.7805705Z [5210/7581] 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:29:33.8555928Z [5211/7581] 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:29:33.8651795Z [5212/7581] 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:29:33.9521024Z [5213/7581] 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:29:33.9535207Z [5214/7581] 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:29:33.9548415Z [5215/7581] 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:29:33.9606309Z [5216/7581] 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:29:33.9618489Z [5217/7581] 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:29:34.0887854Z [5218/7581] 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:29:34.0944483Z [5219/7581] 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:29:34.0959236Z [5220/7581] 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:29:34.0972565Z [5221/7581] 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:29:34.1034895Z [5222/7581] 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:29:34.1049150Z [5223/7581] 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:29:34.1240312Z [5224/7581] 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:29:34.2729960Z [5225/7581] 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:29:34.2744470Z [5226/7581] 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:29:34.2798161Z [5227/7581] 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:29:34.2821204Z [5228/7581] 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:29:34.2833610Z [5229/7581] 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:29:34.2846545Z [5230/7581] 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:29:34.2859709Z [5231/7581] 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:29:34.4567262Z [5232/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-04-25T04:29:34.4622743Z [5233/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-04-25T04:29:34.4674372Z [5234/7581] 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:29:34.4689009Z [5235/7581] 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:29:34.4701734Z [5236/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-04-25T04:29:34.4759983Z [5237/7581] 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:29:34.4774199Z [5238/7581] 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:29:34.6025969Z [5239/7581] 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:29:34.6099592Z [5240/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-04-25T04:29:34.6146515Z [5241/7581] 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:29:34.6165703Z [5242/7581] 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:29:34.6346631Z [5243/7581] 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:29:34.6853671Z [5244/7581] 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:29:34.6875400Z [5245/7581] 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:29:34.7631446Z [5246/7581] 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:29:34.7688824Z [5247/7581] 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:29:34.7753577Z [5248/7581] 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:29:34.7767700Z [5249/7581] 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:29:34.7823080Z [5250/7581] 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:29:34.8678172Z [5251/7581] 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:29:34.8769109Z [5252/7581] 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:29:34.9144142Z [5253/7581] 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:29:34.9157820Z [5254/7581] 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:29:34.9213607Z [5255/7581] 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:29:35.0221516Z [5256/7581] 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:29:35.0328092Z [5257/7581] 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:29:35.0465821Z [5258/7581] 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:29:35.0885368Z [5259/7581] 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:29:35.0901682Z [5260/7581] 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:29:35.1331086Z [5261/7581] 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:29:35.1816260Z [5262/7581] 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:29:35.1928417Z [5263/7581] 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:29:35.2021520Z [5264/7581] 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:29:35.2152146Z [5265/7581] 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:29:35.3536288Z [5266/7581] 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:29:35.3549630Z [5267/7581] 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:29:35.3610249Z [5268/7581] 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:29:35.3627528Z [5269/7581] 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:29:35.3645154Z [5270/7581] 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:29:35.3659216Z [5271/7581] 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:29:35.3785072Z [5272/7581] 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:29:35.5237248Z [5273/7581] 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:29:35.5255878Z [5274/7581] 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:29:35.5268317Z [5275/7581] 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:29:35.5279114Z [5276/7581] 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:29:35.5338324Z [5277/7581] 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:29:35.5982077Z [5278/7581] 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:29:35.6432081Z [5279/7581] 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:29:35.6868752Z [5280/7581] 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:29:35.6948876Z [5281/7581] 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:29:35.6994636Z [5282/7581] 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:29:35.7055656Z [5283/7581] 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:29:35.8277236Z [5284/7581] 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:29:35.8709795Z [5285/7581] 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:29:35.8723386Z [5286/7581] 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:29:35.8735712Z [5287/7581] 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:29:35.8746176Z [5288/7581] 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:29:35.8759805Z [5289/7581] 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:29:35.8772962Z [5290/7581] 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:29:36.0795867Z [5291/7581] 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:29:36.1212060Z [5292/7581] 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:29:36.1226185Z [5293/7581] 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:29:36.1239615Z [5294/7581] 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:29:36.1250422Z [5295/7581] 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:29:36.1261645Z [5296/7581] 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:29:36.1272812Z [5297/7581] 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:29:36.2576953Z [5298/7581] 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:29:36.2649164Z [5299/7581] 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:29:36.2661700Z [5300/7581] 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:29:36.2673240Z [5301/7581] 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:29:36.2688335Z [5302/7581] 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:29:36.2704016Z [5303/7581] 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:29:36.2764583Z [5304/7581] 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:29:36.4497576Z [5305/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-04-25T04:29:36.4510296Z [5306/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-04-25T04:29:36.4570872Z [5307/7581] 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:29:36.4625524Z [5308/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-04-25T04:29:36.4888866Z [5309/7581] 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:29:36.4903057Z [5310/7581] 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:29:36.4918144Z [5311/7581] 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:29:36.5726107Z [5312/7581] 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:29:36.5749095Z [5313/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-04-25T04:29:36.5808846Z [5314/7581] 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:29:36.5974734Z [5315/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-04-25T04:29:36.6508808Z [5316/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-04-25T04:29:36.6576455Z [5317/7581] 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:29:36.7426825Z [5318/7581] 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:29:36.7439810Z [5319/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-04-25T04:29:36.7452479Z [5320/7581] 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:29:36.7464276Z [5321/7581] 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:29:36.7476585Z [5322/7581] 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:29:36.8093911Z [5323/7581] 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:29:36.8109123Z [5324/7581] 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:29:36.8707748Z [5325/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-04-25T04:29:36.8922870Z [5326/7581] 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:29:36.8940371Z [5327/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-04-25T04:29:36.9182548Z [5328/7581] 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:29:36.9510688Z [5329/7581] 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:29:36.9561146Z [5330/7581] 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:29:36.9621994Z [5331/7581] 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:29:37.0476603Z [5332/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-04-25T04:29:37.0491849Z [5333/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-04-25T04:29:37.0558569Z [5334/7581] 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:29:37.0575648Z [5335/7581] 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:29:37.1128120Z [5336/7581] 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:29:37.1181899Z [5337/7581] 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:29:37.1291514Z [5338/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-04-25T04:29:37.2097192Z [5339/7581] 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:29:37.2158944Z [5340/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-04-25T04:29:37.3186296Z [5341/7581] 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:29:37.3199966Z [5342/7581] 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:29:37.3213381Z [5343/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-04-25T04:29:37.3225975Z [5344/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-04-25T04:29:37.3240244Z [5345/7581] 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:29:37.4971661Z [5346/7581] 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:29:37.4989166Z [5347/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-04-25T04:29:37.5460939Z [5348/7581] 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:29:37.5480188Z [5349/7581] 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:29:37.5603500Z [5350/7581] 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:29:37.6378827Z [5351/7581] 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:29:37.6395501Z [5352/7581] 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:29:37.6411032Z [5353/7581] 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:29:37.6426589Z [5354/7581] 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:29:37.7231308Z [5355/7581] 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:29:37.7425791Z [5356/7581] 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:29:37.8642268Z [5357/7581] 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:29:37.8701008Z [5358/7581] 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:29:37.8713923Z [5359/7581] 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:29:37.8725065Z [5360/7581] 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:29:37.8774164Z [5361/7581] 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:29:37.8889818Z [5362/7581] 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:29:37.9769363Z [5363/7581] 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:29:38.0770498Z [5364/7581] 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:29:38.0831587Z [5365/7581] 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:29:38.0899977Z [5366/7581] 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:29:38.0911981Z [5367/7581] 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:29:38.0924109Z [5368/7581] 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:29:38.0936284Z [5369/7581] 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:29:38.1658514Z [5370/7581] 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:29:38.3223667Z [5371/7581] 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:29:38.3554503Z [5372/7581] 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:29:38.3617194Z [5373/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-04-25T04:29:38.3673489Z [5374/7581] 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:29:38.3686785Z [5375/7581] 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:29:38.3749453Z [5376/7581] 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:29:38.3764720Z [5377/7581] 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:29:38.4734069Z [5378/7581] 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:29:38.4784817Z [5379/7581] 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:29:38.4896509Z [5380/7581] 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:29:38.5817906Z [5381/7581] 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:29:38.5912858Z [5382/7581] 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:29:38.5966252Z [5383/7581] 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:29:38.6357477Z [5384/7581] 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:29:38.6421130Z [5385/7581] 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:29:38.6765207Z [5386/7581] 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:29:38.6917686Z [5387/7581] 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:29:38.7821654Z [5388/7581] 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:29:38.8183011Z [5389/7581] 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:29:38.8196264Z [5390/7581] 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:29:38.8208167Z [5391/7581] 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:29:38.8323560Z [5392/7581] 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:29:38.8953044Z [5393/7581] 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:29:38.9017525Z [5394/7581] 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:29:38.9064318Z [5395/7581] 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:29:38.9877061Z [5396/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-04-25T04:29:39.0015797Z [5397/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-04-25T04:29:39.0030375Z [5398/7581] 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:29:39.0044160Z [5399/7581] 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:29:39.0696699Z [5400/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-04-25T04:29:39.1325250Z [5401/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-04-25T04:29:39.1342942Z [5402/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-04-25T04:29:39.1983496Z [5403/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-04-25T04:29:39.2034264Z [5404/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-04-25T04:29:39.2251513Z [5405/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-04-25T04:29:39.2941526Z [5406/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-04-25T04:29:39.2955514Z [5407/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-04-25T04:29:39.2970041Z [5408/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-04-25T04:29:39.3369264Z [5409/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-04-25T04:29:39.3650516Z [5410/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-04-25T04:29:39.3706898Z [5411/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-04-25T04:29:39.3755413Z [5412/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-04-25T04:29:39.4670479Z [5413/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-04-25T04:29:39.4741978Z [5414/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-04-25T04:29:39.4755027Z [5415/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-04-25T04:29:39.4768710Z [5416/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-04-25T04:29:39.4822881Z [5417/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-04-25T04:29:39.5702850Z [5418/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-04-25T04:29:39.5828748Z [5419/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-04-25T04:29:39.6401167Z [5420/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-04-25T04:29:39.6697697Z [5421/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-04-25T04:29:39.6834874Z [5422/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-04-25T04:29:39.6849523Z [5423/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-04-25T04:29:39.7292484Z [5424/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-04-25T04:29:39.8486935Z [5425/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-04-25T04:29:39.8501979Z [5426/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-04-25T04:29:39.8515178Z [5427/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-04-25T04:29:39.8527346Z [5428/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-04-25T04:29:39.8584296Z [5429/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-04-25T04:29:39.8596805Z [5430/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-04-25T04:29:39.8611286Z [5431/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-04-25T04:29:40.0393875Z [5432/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-04-25T04:29:40.0458396Z [5433/7581] 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:29:40.0484853Z [5434/7581] 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:29:40.0487320Z [5435/7581] 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:29:40.0558606Z [5436/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-04-25T04:29:40.0575856Z [5437/7581] 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:29:40.0656541Z [5438/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-04-25T04:29:40.1534981Z [5439/7581] 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:29:40.2074645Z [5440/7581] 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:29:40.2088077Z [5441/7581] 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:29:40.2100428Z [5442/7581] 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:29:40.2165766Z [5443/7581] 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:29:40.2178184Z [5444/7581] 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:29:40.2305465Z [5445/7581] 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:29:40.3075676Z [5446/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-04-25T04:29:40.4441114Z [5447/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-04-25T04:29:40.4455259Z [5448/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-04-25T04:29:40.4513197Z [5449/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-04-25T04:29:40.4526471Z [5450/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-04-25T04:29:40.4538754Z [5451/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-04-25T04:29:40.4595011Z [5452/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-04-25T04:29:40.4838174Z [5453/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-04-25T04:29:40.6454985Z [5454/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-04-25T04:29:40.6558508Z [5455/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-04-25T04:29:40.6571954Z [5456/7581] 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:29:40.6584172Z [5457/7581] 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:29:40.6596754Z [5458/7581] 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:29:40.6866609Z [5459/7581] 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:29:40.7167538Z [5460/7581] 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:29:40.8420042Z [5461/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-04-25T04:29:40.8494378Z [5462/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-04-25T04:29:40.8508024Z [5463/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-04-25T04:29:40.8521945Z [5464/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-04-25T04:29:40.8535557Z [5465/7581] 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:29:40.8556777Z [5466/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-04-25T04:29:40.8623794Z [5467/7581] 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:29:41.0563295Z [5468/7581] 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:29:41.0662349Z [5469/7581] 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:29:41.0749118Z [5470/7581] 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:29:41.0807576Z [5471/7581] 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:29:41.0821288Z [5472/7581] 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:29:41.1039659Z [5473/7581] 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:29:41.1875992Z [5474/7581] 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:29:41.3115295Z [5475/7581] 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:29:41.3129758Z [5476/7581] 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:29:41.3192750Z [5477/7581] 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:29:41.3204495Z [5478/7581] 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:29:41.3216615Z [5479/7581] 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:29:41.3228547Z [5480/7581] 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:29:41.3852626Z [5481/7581] 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:29:41.4464341Z [5482/7581] 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:29:41.5302237Z [5483/7581] 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:29:41.5316082Z [5484/7581] 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:29:41.5416255Z [5485/7581] 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:29:41.5469331Z [5486/7581] 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:29:41.5537450Z [5487/7581] 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:29:41.6005679Z [5488/7581] 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:29:41.6097573Z [5489/7581] 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:29:41.7016058Z [5490/7581] 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:29:41.7071006Z [5491/7581] 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:29:41.7133385Z [5492/7581] 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:29:41.7185281Z [5493/7581] 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:29:41.7482060Z [5494/7581] 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:29:41.8000811Z [5495/7581] 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:29:41.8052462Z [5496/7581] 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:29:41.8304452Z [5497/7581] 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:29:41.9107982Z [5498/7581] 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:29:41.9121489Z [5499/7581] 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:29:41.9133720Z [5500/7581] 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:29:41.9724723Z [5501/7581] 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:29:42.1007317Z [5502/7581] 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:29:42.1022974Z [5503/7581] 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:29:42.1038572Z [5504/7581] 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:29:42.1221497Z [5505/7581] 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:29:42.1241159Z [5506/7581] 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:29:42.1297290Z [5507/7581] 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:29:42.1864145Z [5508/7581] 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:29:42.2997126Z [5509/7581] 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:29:42.3104458Z [5510/7581] 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:29:42.3167063Z [5511/7581] 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:29:42.3319089Z [5512/7581] 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:29:42.3507477Z [5513/7581] 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:29:42.4253485Z [5514/7581] 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:29:42.4270967Z [5515/7581] 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:29:42.4748698Z [5516/7581] 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:29:42.4762081Z [5517/7581] 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:29:42.4904353Z [5518/7581] 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:29:42.4967365Z [5519/7581] 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:29:42.5406026Z [5520/7581] 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:29:42.5652639Z [5521/7581] 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:29:42.5668240Z [5522/7581] 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:29:42.6307333Z [5523/7581] 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:29:42.6322868Z [5524/7581] 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:29:42.6374140Z [5525/7581] 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:29:42.6946694Z [5526/7581] 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:29:42.7549856Z [5527/7581] 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:29:42.7565534Z [5528/7581] 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:29:42.8858073Z [5529/7581] 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:29:42.8872013Z [5530/7581] 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:29:42.8931130Z [5531/7581] 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:29:42.8944456Z [5532/7581] 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:29:42.9101186Z [5533/7581] 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:29:42.9616757Z [5534/7581] 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:29:42.9736583Z [5535/7581] 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:29:43.0522280Z [5536/7581] 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:29:43.0576412Z [5537/7581] 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:29:43.0657126Z [5538/7581] 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:29:43.0672687Z [5539/7581] 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:29:43.0890158Z [5540/7581] 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:29:43.1356676Z [5541/7581] 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:29:43.1704254Z [5542/7581] 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:29:43.2466250Z [5543/7581] 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:29:43.2526875Z [5544/7581] 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:29:43.2539954Z [5545/7581] 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:29:43.2553619Z [5546/7581] 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:29:43.2566552Z [5547/7581] 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:29:43.3683110Z [5548/7581] 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:29:43.3762429Z [5549/7581] 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:29:43.4491845Z [5550/7581] 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:29:43.4917358Z [5551/7581] 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:29:43.4931844Z [5552/7581] 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:29:43.4943721Z [5553/7581] 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:29:43.4956523Z [5554/7581] 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:29:43.5676416Z [5555/7581] 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:29:43.5743163Z [5556/7581] 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:29:43.5862020Z [5557/7581] 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:29:43.6576938Z [5558/7581] 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:29:43.6590562Z [5559/7581] 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:29:43.6638461Z [5560/7581] 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:29:43.6813937Z [5561/7581] 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:29:43.7975047Z [5562/7581] 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:29:43.8147622Z [5563/7581] 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:29:43.8203884Z [5564/7581] 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:29:43.8216238Z [5565/7581] 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:29:43.8330193Z [5566/7581] 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:29:43.8429101Z [5567/7581] 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:29:43.8560495Z [5568/7581] 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:29:44.0085908Z [5569/7581] 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:29:44.0100936Z [5570/7581] 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:29:44.0113202Z [5571/7581] 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:29:44.0164884Z [5572/7581] 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:29:44.0222673Z [5573/7581] 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:29:44.0236832Z [5574/7581] 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:29:44.0298800Z [5575/7581] 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:29:44.1265173Z [5576/7581] 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:29:44.1749754Z [5577/7581] 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:29:44.1766134Z [5578/7581] 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:29:44.2537281Z [5579/7581] 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:29:44.2594820Z [5580/7581] 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:29:44.2608812Z [5581/7581] 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:29:44.2667497Z [5582/7581] 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:29:44.2744047Z [5583/7581] 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:29:44.3526602Z [5584/7581] 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:29:44.3543747Z [5585/7581] 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:29:44.4217770Z [5586/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-04-25T04:29:44.4268684Z [5587/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-04-25T04:29:44.4327242Z [5588/7581] 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:29:44.4340651Z [5589/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-04-25T04:29:44.4587091Z [5590/7581] 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:29:44.5184592Z [5591/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-04-25T04:29:44.5338447Z [5592/7581] 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:29:44.6126399Z [5593/7581] 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:29:44.6140044Z [5594/7581] 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:29:44.6765430Z [5595/7581] 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:29:44.7471945Z [5596/7581] 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:29:44.7484620Z [5597/7581] 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:29:44.7496819Z [5598/7581] 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:29:44.7510134Z [5599/7581] 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:29:44.7674634Z [5600/7581] 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:29:44.7804997Z [5601/7581] 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:29:44.8879497Z [5602/7581] 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:29:44.8893255Z [5603/7581] 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:29:44.8957389Z [5604/7581] 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:29:44.9012849Z [5605/7581] 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:29:44.9211570Z [5606/7581] 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:29:44.9270606Z [5607/7581] 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:29:44.9283966Z [5608/7581] 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:29:45.1091014Z [5609/7581] 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:29:45.1141640Z [5610/7581] 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:29:45.1203415Z [5611/7581] 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:29:45.1216617Z [5612/7581] 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:29:45.1229111Z [5613/7581] 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:29:45.1283354Z [5614/7581] 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:29:45.1299344Z [5615/7581] 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:29:45.3157905Z [5616/7581] 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:29:45.3172966Z [5617/7581] 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:29:45.3226320Z [5618/7581] 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:29:45.3238458Z [5619/7581] 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:29:45.3289847Z [5620/7581] 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:29:45.3358620Z [5621/7581] 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:29:45.3427692Z [5622/7581] 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:29:45.4837903Z [5623/7581] 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:29:45.4992381Z [5624/7581] 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:29:45.5048993Z [5625/7581] 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:29:45.5065297Z [5626/7581] 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:29:45.5080947Z [5627/7581] 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:29:45.5145910Z [5628/7581] 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:29:45.5158726Z [5629/7581] 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:29:45.6415052Z [5630/7581] 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:29:45.6479137Z [5631/7581] 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:29:45.6491767Z [5632/7581] 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:29:45.6502870Z [5633/7581] 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:29:45.6515944Z [5634/7581] 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:29:45.6723278Z [5635/7581] 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:29:45.6863599Z [5636/7581] 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:29:45.8502516Z [5637/7581] 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:29:45.8515838Z [5638/7581] 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:29:45.8569842Z [5639/7581] 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:29:45.8582253Z [5640/7581] 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:29:45.8593254Z [5641/7581] 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:29:45.8646802Z [5642/7581] 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:29:45.8661906Z [5643/7581] 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:29:46.0069383Z [5644/7581] 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:29:46.0134145Z [5645/7581] 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:29:46.0147361Z [5646/7581] 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:29:46.0161022Z [5647/7581] 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:29:46.0219822Z [5648/7581] 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:29:46.0238299Z [5649/7581] 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:29:46.0293628Z [5650/7581] 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:29:46.1358241Z [5651/7581] 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:29:46.1428035Z [5652/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-04-25T04:29:46.1443128Z [5653/7581] 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:29:46.1457033Z [5654/7581] 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:29:46.1472217Z [5655/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-04-25T04:29:46.1556684Z [5656/7581] 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:29:46.2176914Z [5657/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-04-25T04:29:46.2409173Z [5658/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-04-25T04:29:46.2421817Z [5659/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-04-25T04:29:46.2471162Z [5660/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-04-25T04:29:46.2649844Z [5661/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-04-25T04:29:46.2700426Z [5662/7581] 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:29:46.2713983Z [5663/7581] 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:29:46.4031637Z [5664/7581] 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:29:46.4104787Z [5665/7581] 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:29:46.4116899Z [5666/7581] 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:29:46.4128187Z [5667/7581] 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:29:46.4139956Z [5668/7581] 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:29:46.4193761Z [5669/7581] 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:29:46.4352487Z [5670/7581] 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:29:46.5243234Z [5671/7581] 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:29:46.5258286Z [5672/7581] 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:29:46.5329584Z [5673/7581] 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:29:46.5382425Z [5674/7581] 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:29:46.5438089Z [5675/7581] 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:29:46.5454327Z [5676/7581] 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:29:46.5517272Z [5677/7581] 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:29:46.6534016Z [5678/7581] 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:29:46.6588756Z [5679/7581] 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:29:46.6688545Z [5680/7581] 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:29:46.6701823Z [5681/7581] 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:29:46.6714710Z [5682/7581] 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:29:46.6727489Z [5683/7581] 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:29:46.6953640Z [5684/7581] 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:29:46.7857490Z [5685/7581] 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:29:46.8539461Z [5686/7581] 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:29:46.8808658Z [5687/7581] 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:29:46.8823268Z [5688/7581] 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:29:46.8834639Z [5689/7581] 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:29:46.8846842Z [5690/7581] 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:29:46.8858682Z [5691/7581] 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:29:46.9476442Z [5692/7581] 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:29:47.1165567Z [5693/7581] 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:29:47.1748366Z [5694/7581] 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:29:47.1803248Z [5695/7581] 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:29:47.1852723Z [5696/7581] 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:29:47.1931292Z [5697/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-04-25T04:29:47.2010526Z [5698/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-04-25T04:29:47.2485019Z [5699/7581] 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:29:47.3782463Z [5700/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-04-25T04:29:47.3802055Z [5701/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-04-25T04:29:47.4519042Z [5702/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-04-25T04:29:47.4540614Z [5703/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-04-25T04:29:47.4600985Z [5704/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-04-25T04:29:47.4614785Z [5705/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-04-25T04:29:47.4674020Z [5706/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-04-25T04:29:47.5967796Z [5707/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-04-25T04:29:47.5983928Z [5708/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-04-25T04:29:47.5999676Z [5709/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-04-25T04:29:47.6012788Z [5710/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-04-25T04:29:47.6027009Z [5711/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-04-25T04:29:47.6042305Z [5712/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-04-25T04:29:47.6058005Z [5713/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-04-25T04:29:47.7899709Z [5714/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-04-25T04:29:47.7965021Z [5715/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-04-25T04:29:47.7979153Z [5716/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-04-25T04:29:47.8106973Z [5717/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-04-25T04:29:47.8122515Z [5718/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-04-25T04:29:47.8137447Z [5719/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-04-25T04:29:47.8241478Z [5720/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-04-25T04:29:47.9870371Z [5721/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-04-25T04:29:47.9987581Z [5722/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-04-25T04:29:48.0002189Z [5723/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-04-25T04:29:48.0017087Z [5724/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-04-25T04:29:48.0030339Z [5725/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-04-25T04:29:48.0086355Z [5726/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-04-25T04:29:48.0661067Z [5727/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-04-25T04:29:48.1991428Z [5728/7581] 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:29:48.2111395Z [5729/7581] 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:29:48.2126706Z [5730/7581] 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:29:48.2192467Z [5731/7581] 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:29:48.2206242Z [5732/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-04-25T04:29:48.2219127Z [5733/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-04-25T04:29:48.2231796Z [5734/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-04-25T04:29:48.3638815Z [5735/7581] 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:29:48.3691253Z [5736/7581] 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:29:48.3704630Z [5737/7581] 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:29:48.3718445Z [5738/7581] 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:29:48.3776832Z [5739/7581] 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:29:48.3794555Z [5740/7581] 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:29:48.3999660Z [5741/7581] 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:29:48.6285449Z [5742/7581] 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:29:48.6303233Z [5743/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-04-25T04:29:48.7033596Z [5744/7581] 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:29:48.7087621Z [5745/7581] 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:29:48.7157985Z [5746/7581] 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:29:48.7171176Z [5747/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-04-25T04:29:48.7245129Z [5748/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-04-25T04:29:48.8460451Z [5749/7581] 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:29:48.8528593Z [5750/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-04-25T04:29:48.8596391Z [5751/7581] 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:29:48.8610083Z [5752/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-04-25T04:29:48.8624180Z [5753/7581] 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:29:48.8829911Z [5754/7581] 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:29:48.8899708Z [5755/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:48.9843103Z [5756/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:48.9863707Z [5757/7581] 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:29:49.0042056Z [5758/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.0215968Z [5759/7581] 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:29:49.0509740Z [5760/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.1200754Z [5761/7581] 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:29:49.1660395Z [5762/7581] 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:29:49.2300036Z [5763/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.2366257Z [5764/7581] 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:29:49.2664045Z [5765/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.2880271Z [5766/7581] 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:29:49.3175220Z [5767/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.3324232Z [5768/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.3443613Z [5769/7581] 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:29:49.3860479Z [5770/7581] 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:29:49.4426035Z [5771/7581] 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:29:49.4565774Z [5772/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:49.5043840Z [5773/7581] 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:29:49.5058375Z [5774/7581] 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:29:49.5071108Z [5775/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-04-25T04:29:49.5161363Z [5776/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-04-25T04:29:49.5284774Z [5777/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-04-25T04:29:49.6965567Z [5778/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-04-25T04:29:49.7044926Z [5779/7581] 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:29:49.7186859Z [5780/7581] 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:29:49.7701841Z [5781/7581] 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:29:49.7768599Z [5782/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-04-25T04:29:49.7839322Z [5783/7581] 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:29:49.7915215Z [5784/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-04-25T04:29:49.8373129Z [5785/7581] 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:29:49.8447626Z [5786/7581] 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:29:49.8510925Z [5787/7581] 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:29:49.9023590Z [5788/7581] 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:29:49.9081399Z [5789/7581] 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:29:49.9152106Z [5790/7581] 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:29:49.9519105Z [5791/7581] 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:29:49.9664752Z [5792/7581] 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:29:50.0021788Z [5793/7581] 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:29:50.1070185Z [5794/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-04-25T04:29:50.1088232Z [5795/7581] 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:29:50.1105724Z [5796/7581] 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:29:50.1167488Z [5797/7581] 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:29:50.1386150Z [5798/7581] 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:29:50.1403907Z [5799/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-04-25T04:29:50.1666835Z [5800/7581] 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:29:50.2875075Z [5801/7581] 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:29:50.2941290Z [5802/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:50.2958878Z [5803/7581] 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:29:50.3014729Z [5804/7581] 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:29:50.3027364Z [5805/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:50.3311888Z [5806/7581] 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:29:50.3328235Z [5807/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:50.4927140Z [5808/7581] 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:29:50.4993279Z [5809/7581] 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:29:50.5006724Z [5810/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:50.5020224Z [5811/7581] 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:29:50.5284179Z [5812/7581] 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:29:50.5333606Z [5813/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-04-25T04:29:50.5811864Z [5814/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-04-25T04:29:50.7005144Z [5815/7581] 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:29:50.7133548Z [5816/7581] 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:29:50.7149875Z [5817/7581] 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:29:50.7201215Z [5818/7581] 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:29:50.7665931Z [5819/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-04-25T04:29:50.7679897Z [5820/7581] 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:29:50.8355392Z [5821/7581] 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:29:50.8427619Z [5822/7581] 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:29:50.8501435Z [5823/7581] 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:29:50.9159201Z [5824/7581] 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:29:51.0178302Z [5825/7581] 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:29:51.0190719Z [5826/7581] 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:29:51.0252469Z [5827/7581] 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:29:51.0274283Z [5828/7581] 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:29:51.0286489Z [5829/7581] 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:29:51.0298920Z [5830/7581] 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:29:51.2898313Z [5831/7581] 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:29:51.2913859Z [5832/7581] 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:29:51.2926370Z [5833/7581] 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:29:51.2993892Z [5834/7581] 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:29:51.3010659Z [5835/7581] 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:29:51.3073336Z [5836/7581] 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:29:51.3232246Z [5837/7581] 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:29:51.5071309Z [5838/7581] 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:29:51.5134610Z [5839/7581] 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:29:51.5150118Z [5840/7581] 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:29:51.5162039Z [5841/7581] 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:29:51.5176169Z [5842/7581] 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:29:51.5188310Z [5843/7581] 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:29:51.5246094Z [5844/7581] 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:29:51.6474580Z [5845/7581] 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:29:51.6569860Z [5846/7581] 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:29:51.6587563Z [5847/7581] 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:29:51.6645155Z [5848/7581] 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:29:51.6663378Z [5849/7581] 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:29:51.6847676Z [5850/7581] 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:29:51.6933911Z [5851/7581] 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:29:51.8055376Z [5852/7581] 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:29:51.8074199Z [5853/7581] 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:29:51.8090681Z [5854/7581] 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:29:51.8833672Z [5855/7581] 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:29:51.9109897Z [5856/7581] 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:29:51.9276566Z [5857/7581] 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:29:51.9340280Z [5858/7581] 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:29:52.0011785Z [5859/7581] 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:29:52.0121193Z [5860/7581] 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:29:52.0339815Z [5861/7581] 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:29:52.0365797Z [5862/7581] 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:29:52.0871932Z [5863/7581] 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:29:52.0887734Z [5864/7581] 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:29:52.0903110Z [5865/7581] 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:29:52.1754299Z [5866/7581] 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:29:52.1822841Z [5867/7581] 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:29:52.1885624Z [5868/7581] 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:29:52.1959323Z [5869/7581] 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:29:52.2366319Z [5870/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-04-25T04:29:52.2572112Z [5871/7581] 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:29:52.2651244Z [5872/7581] 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:29:52.3511565Z [5873/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-04-25T04:29:52.3614623Z [5874/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-04-25T04:29:52.3628789Z [5875/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-04-25T04:29:52.3685327Z [5876/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-04-25T04:29:52.3818461Z [5877/7581] 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:29:52.3897840Z [5878/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-04-25T04:29:52.3964736Z [5879/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-04-25T04:29:52.4797215Z [5880/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-04-25T04:29:52.4926014Z [5881/7581] 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:29:52.5055420Z [5882/7581] 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:29:52.5495717Z [5883/7581] 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:29:52.6238365Z [5884/7581] 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:29:52.6256318Z [5885/7581] 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:29:52.6270235Z [5886/7581] 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:29:52.7061922Z [5887/7581] 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:29:52.7125165Z [5888/7581] 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:29:52.7194138Z [5889/7581] 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:29:52.7326163Z [5890/7581] 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:29:52.8087878Z [5891/7581] 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:29:52.8107098Z [5892/7581] 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:29:52.8122955Z [5893/7581] 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:29:52.8972825Z [5894/7581] 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:29:52.8985479Z [5895/7581] 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:29:52.9078076Z [5896/7581] 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:29:52.9089430Z [5897/7581] 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:29:53.1866896Z [5898/7581] 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:29:53.1890175Z [5899/7581] 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:29:53.1910055Z [5900/7581] 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:29:53.1926253Z [5901/7581] 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:29:53.1940430Z [5902/7581] 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:29:53.1954342Z [5903/7581] 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:29:53.1967356Z [5904/7581] 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:29:53.4495126Z [5905/7581] 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:29:53.4565953Z [5906/7581] 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:29:53.4626423Z [5907/7581] 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:29:53.4639075Z [5908/7581] 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:29:53.4650805Z [5909/7581] 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:29:53.4663423Z [5910/7581] 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:29:53.4722121Z [5911/7581] 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:29:53.6478202Z [5912/7581] 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:29:53.6669503Z [5913/7581] 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:29:53.6682525Z [5914/7581] 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:29:53.6697543Z [5915/7581] 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:29:53.6708799Z [5916/7581] 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:29:53.6792399Z [5917/7581] 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:29:53.6858468Z [5918/7581] 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:29:53.8011008Z [5919/7581] 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:29:53.8061410Z [5920/7581] 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:29:53.8112104Z [5921/7581] 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:29:53.8163674Z [5922/7581] 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:29:53.8225040Z [5923/7581] 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:29:53.8237570Z [5924/7581] 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:29:53.8250571Z [5925/7581] 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:29:53.9623702Z [5926/7581] 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:29:54.0562203Z [5927/7581] 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:29:54.0576538Z [5928/7581] 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:29:54.0588810Z [5929/7581] 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:29:54.0600394Z [5930/7581] 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:29:54.0615055Z [5931/7581] 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:29:54.0629156Z [5932/7581] 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:29:54.2130383Z [5933/7581] 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:29:54.2145190Z [5934/7581] 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:29:54.2200467Z [5935/7581] 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:29:54.2272821Z [5936/7581] 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:29:54.2342611Z [5937/7581] 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:29:54.2432005Z [5938/7581] 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:29:54.2647412Z [5939/7581] 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:29:54.3368497Z [5940/7581] 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:29:54.3459987Z [5941/7581] 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:29:54.3523964Z [5942/7581] 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:29:54.3539622Z [5943/7581] 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:29:54.3598343Z [5944/7581] 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:29:54.4065274Z [5945/7581] 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:29:54.4134758Z [5946/7581] 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:29:54.5004758Z [5947/7581] 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:29:54.5018458Z [5948/7581] 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:29:54.5100965Z [5949/7581] 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:29:54.5115345Z [5950/7581] 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:29:54.5175906Z [5951/7581] 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:29:54.6086694Z [5952/7581] 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:29:54.6147176Z [5953/7581] 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:29:54.6987693Z [5954/7581] 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:29:54.7049899Z [5955/7581] 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:29:54.7065041Z [5956/7581] 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:29:54.7078962Z [5957/7581] 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:29:54.7135853Z [5958/7581] 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:29:54.7740056Z [5959/7581] 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:29:54.8386803Z [5960/7581] 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:29:54.8442468Z [5961/7581] 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:29:54.8534012Z [5962/7581] 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:29:54.8608927Z [5963/7581] 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:29:54.9540019Z [5964/7581] 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:29:54.9553240Z [5965/7581] 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:29:55.0444000Z [5966/7581] 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:29:55.0613530Z [5967/7581] 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:29:55.0626265Z [5968/7581] 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:29:55.0638667Z [5969/7581] 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:29:55.1886096Z [5970/7581] 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:29:55.1899191Z [5971/7581] 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:29:55.1914131Z [5972/7581] 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:29:55.1971860Z [5973/7581] 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:29:55.1983385Z [5974/7581] 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:29:55.2121816Z [5975/7581] 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:29:55.2192165Z [5976/7581] 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:29:55.3180436Z [5977/7581] 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:29:55.3244123Z [5978/7581] 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:29:55.3741190Z [5979/7581] 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:29:55.3755622Z [5980/7581] 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:29:55.3768030Z [5981/7581] 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:29:55.5258496Z [5982/7581] 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:29:55.5421806Z [5983/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-04-25T04:29:55.5527139Z [5984/7581] 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:29:55.5539274Z [5985/7581] 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:29:55.5549696Z [5986/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-04-25T04:29:55.5838533Z [5987/7581] 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:29:55.5885094Z [5988/7581] 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:29:55.6709561Z [5989/7581] 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:29:55.6722562Z [5990/7581] 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:29:55.6734580Z [5991/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-04-25T04:29:55.6745694Z [5992/7581] 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:29:55.6757270Z [5993/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-04-25T04:29:55.7015237Z [5994/7581] 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:29:55.7032737Z [5995/7581] 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:29:55.8026634Z [5996/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-04-25T04:29:55.8127263Z [5997/7581] 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:29:55.8139934Z [5998/7581] 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:29:55.8190629Z [5999/7581] 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:29:55.8335909Z [6000/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-04-25T04:29:55.8426901Z [6001/7581] 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:29:55.8797298Z [6002/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-04-25T04:29:55.8952960Z [6003/7581] 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:29:55.9440873Z [6004/7581] 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:29:55.9454193Z [6005/7581] 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:29:55.9465215Z [6006/7581] 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:29:55.9476419Z [6007/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-04-25T04:29:55.9667228Z [6008/7581] 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:29:55.9682631Z [6009/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-04-25T04:29:56.0225486Z [6010/7581] 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:29:56.1009047Z [6011/7581] 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:29:56.1064372Z [6012/7581] 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:29:56.1522394Z [6013/7581] 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:29:56.1584791Z [6014/7581] 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:29:56.1597857Z [6015/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-04-25T04:29:56.1615200Z [6016/7581] 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:29:56.2190371Z [6017/7581] 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:29:56.2551383Z [6018/7581] 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:29:56.3137022Z [6019/7581] 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:29:56.3154738Z [6020/7581] 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:29:56.3226397Z [6021/7581] 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:29:56.3240580Z [6022/7581] 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:29:56.3254129Z [6023/7581] 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:29:56.3788037Z [6024/7581] 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:29:56.3842143Z [6025/7581] 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:29:56.4924458Z [6026/7581] 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:29:56.4938639Z [6027/7581] 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:29:56.4953579Z [6028/7581] 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:29:56.4969398Z [6029/7581] 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:29:56.5230974Z [6030/7581] 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:29:56.5599963Z [6031/7581] 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:29:56.6506195Z [6032/7581] 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:29:56.7426103Z [6033/7581] 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:29:56.8700930Z [6034/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-04-25T04:29:56.8713658Z [6035/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-04-25T04:29:56.8725224Z [6036/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-04-25T04:29:56.8805136Z [6037/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-04-25T04:29:56.8887648Z [6038/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-04-25T04:29:56.9287052Z [6039/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-04-25T04:29:56.9304324Z [6040/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-04-25T04:29:56.9868561Z [6041/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-04-25T04:29:57.0136919Z [6042/7581] 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:29:57.0154614Z [6043/7581] 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:29:57.0218210Z [6044/7581] 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:29:57.0437756Z [6045/7581] 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:29:57.0738031Z [6046/7581] 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:29:57.1112066Z [6047/7581] 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:29:57.1174907Z [6048/7581] 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:29:57.1539463Z [6049/7581] 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:29:57.1669487Z [6050/7581] 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:29:57.1811459Z [6051/7581] 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:29:57.1979317Z [6052/7581] 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:29:57.3420164Z [6053/7581] 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:29:57.3645110Z [6054/7581] 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:29:57.4082141Z [6055/7581] 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:29:57.4284753Z [6056/7581] 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:29:57.4492652Z [6057/7581] 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:29:57.4565006Z [6058/7581] 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:29:57.4582018Z [6059/7581] 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:29:57.4981721Z [6060/7581] 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:29:57.5355798Z [6061/7581] 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:29:57.5404325Z [6062/7581] 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:29:57.7061043Z [6063/7581] 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:29:57.7114054Z [6064/7581] 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:29:57.7188738Z [6065/7581] 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:29:57.7275767Z [6066/7581] 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:29:57.7433822Z [6067/7581] 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:29:57.7938863Z [6068/7581] 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:29:57.7956890Z [6069/7581] 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:29:57.8990134Z [6070/7581] 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:29:57.9055526Z [6071/7581] 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:29:57.9070822Z [6072/7581] 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:29:57.9388487Z [6073/7581] 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:29:57.9439108Z [6074/7581] 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:29:57.9496317Z [6075/7581] 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:29:58.0639749Z [6076/7581] 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:29:58.1476149Z [6077/7581] 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:29:58.2341748Z [6078/7581] 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:29:58.2819717Z [6079/7581] 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:29:58.2872113Z [6080/7581] 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:29:58.4422942Z [6081/7581] 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:29:58.5967165Z [6082/7581] 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:29:58.5979926Z [6083/7581] 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:29:58.5991611Z [6084/7581] 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:29:58.6100318Z [6085/7581] 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:29:58.6114266Z [6086/7581] 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:29:58.7565264Z [6087/7581] 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:29:58.7582714Z [6088/7581] 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:29:58.7984939Z [6089/7581] 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:29:58.8036857Z [6090/7581] 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:29:58.8091669Z [6091/7581] 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:29:58.8327612Z [6092/7581] 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:29:58.8538782Z [6093/7581] 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:29:58.9007642Z [6094/7581] 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:29:58.9208421Z [6095/7581] 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:29:59.1557493Z [6096/7581] 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:29:59.1679748Z [6097/7581] 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:29:59.2284394Z [6098/7581] 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:29:59.2423249Z [6099/7581] 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:29:59.4094654Z [6100/7581] 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:29:59.4108788Z [6101/7581] 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:29:59.4121440Z [6102/7581] 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:29:59.4135106Z [6103/7581] 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:29:59.4447977Z [6104/7581] 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:29:59.5182668Z [6105/7581] 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:29:59.5668003Z [6106/7581] 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:29:59.5722365Z [6107/7581] 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:29:59.5871038Z [6108/7581] 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:29:59.6244745Z [6109/7581] 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:29:59.6824646Z [6110/7581] 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:29:59.6884345Z [6111/7581] 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:29:59.6949402Z [6112/7581] 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:29:59.7785378Z [6113/7581] 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:29:59.8228996Z [6114/7581] 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:29:59.8244091Z [6115/7581] 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:29:59.8688625Z [6116/7581] 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:29:59.8753974Z [6117/7581] 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:29:59.9483182Z [6118/7581] 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:29:59.9555821Z [6119/7581] 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:30:00.0070909Z [6120/7581] 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:30:00.0087077Z [6121/7581] 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:30:00.0139295Z [6122/7581] 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:30:00.0685402Z [6123/7581] 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:30:00.0959959Z [6124/7581] 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:30:00.1595155Z [6125/7581] 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:30:00.1961782Z [6126/7581] 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:30:00.1976876Z [6127/7581] 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:30:00.1989677Z [6128/7581] 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:30:00.2080563Z [6129/7581] 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:30:00.4000887Z [6130/7581] 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:30:00.4605157Z [6131/7581] 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:30:00.4949989Z [6132/7581] 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:30:00.5269364Z [6133/7581] 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:30:00.5295965Z [6134/7581] 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:30:00.5358106Z [6135/7581] 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:30:00.5371405Z [6136/7581] 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:30:00.5949996Z [6137/7581] 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:30:00.6003731Z [6138/7581] 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:30:00.7013882Z [6139/7581] 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:30:00.7065297Z [6140/7581] 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:30:00.7113711Z [6141/7581] 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:30:00.7126031Z [6142/7581] 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:30:00.7591111Z [6143/7581] 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:30:00.8169857Z [6144/7581] 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:30:00.9842051Z [6145/7581] 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:30:01.0523769Z [6146/7581] 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:30:01.0550335Z [6147/7581] 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:30:01.0794481Z [6148/7581] 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:30:01.0853133Z [6149/7581] 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:30:01.1265778Z [6150/7581] 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:30:01.1378109Z [6151/7581] 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:30:01.1630282Z [6152/7581] 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:30:01.2176338Z [6153/7581] 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:30:01.2227301Z [6154/7581] 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:30:01.2279543Z [6155/7581] 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:30:01.2976810Z [6156/7581] 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:30:01.3309905Z [6157/7581] 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:30:01.4063650Z [6158/7581] 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:30:01.4118226Z [6159/7581] 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:30:01.4172192Z [6160/7581] 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:30:01.4185129Z [6161/7581] 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:30:01.4873664Z [6162/7581] 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:30:01.5709925Z [6163/7581] 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:30:01.5764799Z [6164/7581] 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:30:01.6705688Z [6165/7581] 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:30:01.6719907Z [6166/7581] 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:30:01.6788405Z [6167/7581] 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:30:01.7004166Z [6168/7581] 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:30:01.7296353Z [6169/7581] 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:30:01.7621028Z [6170/7581] 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:30:01.7633932Z [6171/7581] 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:30:01.8876866Z [6172/7581] 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:30:01.9585423Z [6173/7581] 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:30:01.9707683Z [6174/7581] 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:30:01.9724606Z [6175/7581] 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:30:01.9781072Z [6176/7581] 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:30:01.9991581Z [6177/7581] 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:30:02.0195807Z [6178/7581] 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:30:02.0310812Z [6179/7581] 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:30:02.2243990Z [6180/7581] 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:30:02.2303866Z [6181/7581] 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:30:02.2913834Z [6182/7581] 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:30:02.3064710Z [6183/7581] 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:30:02.3077521Z [6184/7581] 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:30:02.3127046Z [6185/7581] 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:30:02.3466476Z [6186/7581] 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:30:02.3572985Z [6187/7581] 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:30:02.3586009Z [6188/7581] 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:30:02.4153694Z [6189/7581] 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:30:02.5625477Z [6190/7581] 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:30:02.5640207Z [6191/7581] 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:30:02.5655039Z [6192/7581] 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:30:02.5666410Z [6193/7581] 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:30:02.5846572Z [6194/7581] 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:30:02.6192657Z [6195/7581] 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:30:02.8181264Z [6196/7581] 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:30:02.8925177Z [6197/7581] 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:30:02.9834167Z [6198/7581] 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:30:02.9928766Z [6199/7581] 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:30:03.1294614Z [6200/7581] 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:30:03.1636515Z [6201/7581] 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:30:03.1649066Z [6202/7581] 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:30:03.1701226Z [6203/7581] 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:30:03.2369641Z [6204/7581] 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:30:03.3178629Z [6205/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-04-25T04:30:03.3191236Z [6206/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-04-25T04:30:03.3241726Z [6207/7581] 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:30:03.3392247Z [6208/7581] 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:30:03.3406538Z [6209/7581] 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:30:03.3462787Z [6210/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-04-25T04:30:03.3807978Z [6211/7581] 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:30:03.4667911Z [6212/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-04-25T04:30:03.4749424Z [6213/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-04-25T04:30:03.4764224Z [6214/7581] 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:30:03.4830240Z [6215/7581] 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:30:03.4847238Z [6216/7581] 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:30:03.4923011Z [6217/7581] 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:30:03.5109096Z [6218/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-04-25T04:30:03.6978467Z [6219/7581] 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:30:03.6992577Z [6220/7581] 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:30:03.7054395Z [6221/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-04-25T04:30:03.7069446Z [6222/7581] 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:30:03.7316293Z [6223/7581] 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:30:03.7854813Z [6224/7581] 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:30:03.7914755Z [6225/7581] 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:30:03.8789515Z [6226/7581] 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:30:03.8863564Z [6227/7581] 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:30:03.9324779Z [6228/7581] 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:30:03.9339521Z [6229/7581] 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:30:03.9896213Z [6230/7581] 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:30:03.9915006Z [6231/7581] 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:30:03.9979924Z [6232/7581] 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:30:04.0234725Z [6233/7581] 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:30:04.0720559Z [6234/7581] 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:30:04.0891430Z [6235/7581] 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:30:04.1023801Z [6236/7581] 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:30:04.1679844Z [6237/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-04-25T04:30:04.1742496Z [6238/7581] 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:30:04.1803607Z [6239/7581] 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:30:04.1863387Z [6240/7581] 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:30:04.2267073Z [6241/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-04-25T04:30:04.2280290Z [6242/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-04-25T04:30:04.2353305Z [6243/7581] 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:30:04.3944248Z [6244/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-04-25T04:30:04.4017984Z [6245/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-04-25T04:30:04.4128064Z [6246/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-04-25T04:30:04.4243661Z [6247/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-04-25T04:30:04.4260430Z [6248/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-04-25T04:30:04.4275186Z [6249/7581] 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:30:04.4491678Z [6250/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-04-25T04:30:04.5043646Z [6251/7581] 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:30:04.5061931Z [6252/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-04-25T04:30:04.5575642Z [6253/7581] 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:30:04.5636571Z [6254/7581] 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:30:04.6544568Z [6255/7581] 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:30:04.6558936Z [6256/7581] 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:30:04.6619426Z [6257/7581] 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:30:04.7052006Z [6258/7581] 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:30:04.7524099Z [6259/7581] 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:30:04.7538131Z [6260/7581] 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:30:04.7550804Z [6261/7581] 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:30:04.7952886Z [6262/7581] 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:30:04.8055123Z [6263/7581] 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:30:04.8287071Z [6264/7581] 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:30:04.9516310Z [6265/7581] 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:30:04.9529750Z [6266/7581] 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:30:04.9542189Z [6267/7581] 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:30:04.9554250Z [6268/7581] 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:30:04.9567990Z [6269/7581] 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:30:04.9582950Z [6270/7581] 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:30:05.0447119Z [6271/7581] 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:30:05.1733477Z [6272/7581] 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:30:05.1814104Z [6273/7581] 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:30:05.2709715Z [6274/7581] 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:30:05.2723182Z [6275/7581] 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:30:05.2736717Z [6276/7581] 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:30:05.2749394Z [6277/7581] 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:30:05.2762607Z [6278/7581] 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:30:05.3854903Z [6279/7581] 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:30:05.5214781Z [6280/7581] 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:30:05.5272706Z [6281/7581] 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:30:05.6061574Z [6282/7581] 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:30:05.6256044Z [6283/7581] 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:30:05.6315334Z [6284/7581] 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:30:05.6329309Z [6285/7581] 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:30:05.6342378Z [6286/7581] 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:30:05.7064256Z [6287/7581] 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:30:05.7475621Z [6288/7581] 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:30:05.8332456Z [6289/7581] 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:30:05.8515006Z [6290/7581] 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:30:05.8527963Z [6291/7581] 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:30:05.8589976Z [6292/7581] 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:30:05.8644220Z [6293/7581] 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:30:05.9880311Z [6294/7581] 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:30:05.9897750Z [6295/7581] 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:30:06.0829285Z [6296/7581] 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:30:06.0841934Z [6297/7581] 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:30:06.0893033Z [6298/7581] 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:30:06.1044604Z [6299/7581] 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:30:06.1160755Z [6300/7581] 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:30:06.2532662Z [6301/7581] 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:30:06.2600736Z [6302/7581] 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:30:06.2618360Z [6303/7581] 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:30:06.2631374Z [6304/7581] 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:30:06.2840869Z [6305/7581] 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:30:06.3045649Z [6306/7581] 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:30:06.3117200Z [6307/7581] 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:30:06.5423725Z [6308/7581] 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:30:06.5439194Z [6309/7581] 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:30:06.5499230Z [6310/7581] 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:30:06.5666617Z [6311/7581] 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:30:06.6108549Z [6312/7581] 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:30:06.6170250Z [6313/7581] 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:30:06.6182915Z [6314/7581] 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:30:06.8123674Z [6315/7581] 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:30:06.8283006Z [6316/7581] 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:30:06.8955195Z [6317/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-04-25T04:30:06.9191590Z [6318/7581] 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:30:06.9248389Z [6319/7581] 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:30:06.9262171Z [6320/7581] 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:30:06.9387028Z [6321/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-04-25T04:30:07.0681170Z [6322/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-04-25T04:30:07.0741657Z [6323/7581] 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:30:07.0755198Z [6324/7581] 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:30:07.0767218Z [6325/7581] 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:30:07.0935590Z [6326/7581] 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:30:07.1655017Z [6327/7581] 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:30:07.1716227Z [6328/7581] 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:30:07.2653690Z [6329/7581] 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:30:07.3283488Z [6330/7581] 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:30:07.3297284Z [6331/7581] 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:30:07.3309553Z [6332/7581] 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:30:07.3321086Z [6333/7581] 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:30:07.3333949Z [6334/7581] 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:30:07.3394728Z [6335/7581] 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:30:07.4719411Z [6336/7581] 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:30:07.5184449Z [6337/7581] 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:30:07.5234915Z [6338/7581] 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:30:07.5294785Z [6339/7581] 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:30:07.5309051Z [6340/7581] 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:30:07.5556723Z [6341/7581] 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:30:07.5710170Z [6342/7581] 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:30:07.7036421Z [6343/7581] 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:30:07.7086461Z [6344/7581] 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:30:07.7098890Z [6345/7581] 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:30:07.7155886Z [6346/7581] 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:30:07.7488723Z [6347/7581] 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:30:07.7501799Z [6348/7581] 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:30:07.7514499Z [6349/7581] 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:30:07.8494581Z [6350/7581] 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:30:07.8558489Z [6351/7581] 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:30:07.8692771Z [6352/7581] 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:30:07.8986006Z [6353/7581] 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:30:07.9422753Z [6354/7581] 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:30:07.9448288Z [6355/7581] 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:30:07.9511034Z [6356/7581] 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:30:08.0048158Z [6357/7581] 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:30:08.0063494Z [6358/7581] 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:30:08.0282679Z [6359/7581] 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:30:08.0554767Z [6360/7581] 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:30:08.0969057Z [6361/7581] 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:30:08.0983646Z [6362/7581] 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:30:08.1093092Z [6363/7581] 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:30:08.1489980Z [6364/7581] 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:30:08.1703730Z [6365/7581] 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:30:08.1721906Z [6366/7581] 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:30:08.2256209Z [6367/7581] 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:30:08.2424483Z [6368/7581] 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:30:08.2519965Z [6369/7581] 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:30:08.2645379Z [6370/7581] 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:30:08.3016406Z [6371/7581] 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:30:08.3246860Z [6372/7581] 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:30:08.3271948Z [6373/7581] 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:30:08.3681185Z [6374/7581] 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:30:08.4764723Z [6375/7581] 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:30:08.4779534Z [6376/7581] 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:30:08.4792257Z [6377/7581] 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:30:08.4851160Z [6378/7581] 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:30:08.4864627Z [6379/7581] 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:30:08.4876298Z [6380/7581] 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:30:08.5152459Z [6381/7581] 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:30:08.6284459Z [6382/7581] 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:30:08.6337293Z [6383/7581] 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:30:08.6390281Z [6384/7581] 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:30:08.6448475Z [6385/7581] 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:30:08.6472627Z [6386/7581] 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:30:08.6480046Z [6387/7581] 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:30:08.7080777Z [6388/7581] 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:30:08.7739073Z [6389/7581] 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:30:08.7752146Z [6390/7581] 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:30:08.7829171Z [6391/7581] 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:30:08.7844310Z [6392/7581] 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:30:08.8497577Z [6393/7581] 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:30:08.8566937Z [6394/7581] 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:30:08.8579454Z [6395/7581] 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:30:09.0132695Z [6396/7581] 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:30:09.0145870Z [6397/7581] 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:30:09.0157571Z [6398/7581] 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:30:09.0210171Z [6399/7581] 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:30:09.0225404Z [6400/7581] 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:30:09.0283604Z [6401/7581] 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:30:09.0528990Z [6402/7581] 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:30:09.1652811Z [6403/7581] 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:30:09.1723631Z [6404/7581] 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:30:09.1739105Z [6405/7581] 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:30:09.1793823Z [6406/7581] 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:30:09.1860427Z [6407/7581] 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:30:09.2227536Z [6408/7581] 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:30:09.2625589Z [6409/7581] 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:30:09.2921100Z [6410/7581] 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:30:09.3003872Z [6411/7581] 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:30:09.3062825Z [6412/7581] 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:30:09.4026645Z [6413/7581] 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:30:09.4039708Z [6414/7581] 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:30:09.4091438Z [6415/7581] 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:30:09.4150457Z [6416/7581] 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:30:09.4433034Z [6417/7581] 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:30:09.5534879Z [6418/7581] 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:30:09.5632397Z [6419/7581] 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:30:09.5842492Z [6420/7581] 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:30:09.6026262Z [6421/7581] 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:30:09.6099158Z [6422/7581] 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:30:09.6163033Z [6423/7581] 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:30:09.6350732Z [6424/7581] 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:30:09.6963482Z [6425/7581] 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:30:09.9079541Z [6426/7581] 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:30:09.9092083Z [6427/7581] 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:30:09.9105475Z [6428/7581] 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:30:09.9119847Z [6429/7581] 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:30:09.9134357Z [6430/7581] 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:30:09.9197020Z [6431/7581] 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:30:10.0366596Z [6432/7581] 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:30:10.0585103Z [6433/7581] 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:30:10.0650124Z [6434/7581] 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:30:10.0665375Z [6435/7581] 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:30:10.0720413Z [6436/7581] 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:30:10.0876265Z [6437/7581] 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:30:10.1640967Z [6438/7581] 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:30:10.2459327Z [6439/7581] 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:30:10.2474689Z [6440/7581] 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:30:10.2486808Z [6441/7581] 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:30:10.2688903Z [6442/7581] 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:30:10.2866892Z [6443/7581] 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:30:10.3516871Z [6444/7581] 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:30:10.3618583Z [6445/7581] 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:30:10.3942894Z [6446/7581] 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:30:10.5209170Z [6447/7581] 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:30:10.5272087Z [6448/7581] 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:30:10.5283833Z [6449/7581] 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:30:10.5295823Z [6450/7581] 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:30:10.5355076Z [6451/7581] 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:30:10.5772805Z [6452/7581] 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:30:10.6398709Z [6453/7581] 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:30:10.6453636Z [6454/7581] 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:30:10.6509454Z [6455/7581] 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:30:10.6522723Z [6456/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-04-25T04:30:10.6632155Z [6457/7581] 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:30:10.6692207Z [6458/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-04-25T04:30:10.6869497Z [6459/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-04-25T04:30:10.7674458Z [6460/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-04-25T04:30:10.8022337Z [6461/7581] 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:30:10.8116105Z [6462/7581] 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:30:10.8182960Z [6463/7581] 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:30:10.8197467Z [6464/7581] 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:30:10.8255136Z [6465/7581] 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:30:10.8429360Z [6466/7581] 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:30:10.9232207Z [6467/7581] 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:30:10.9536173Z [6468/7581] 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:30:10.9712496Z [6469/7581] 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:30:10.9726156Z [6470/7581] 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:30:10.9789720Z [6471/7581] 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:30:10.9801772Z [6472/7581] 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:30:11.0200947Z [6473/7581] 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:30:11.0709620Z [6474/7581] 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:30:11.1077866Z [6475/7581] 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:30:11.1238994Z [6476/7581] 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:30:11.1305933Z [6477/7581] 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:30:11.1320070Z [6478/7581] 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:30:11.1599760Z [6479/7581] 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:30:11.1663564Z [6480/7581] 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:30:11.2192212Z [6481/7581] 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:30:11.2703816Z [6482/7581] 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:30:11.2778685Z [6483/7581] 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:30:11.2842983Z [6484/7581] 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:30:11.2901335Z [6485/7581] 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:30:11.3228676Z [6486/7581] 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:30:11.3243111Z [6487/7581] 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:30:11.3746674Z [6488/7581] 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:30:11.4324463Z [6489/7581] 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:30:11.4337692Z [6490/7581] 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:30:11.4396127Z [6491/7581] 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:30:11.4478913Z [6492/7581] 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:30:11.4541258Z [6493/7581] 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:30:11.4628421Z [6494/7581] 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:30:11.5142249Z [6495/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-04-25T04:30:11.5684084Z [6496/7581] 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:30:11.5707951Z [6497/7581] 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:30:11.5769345Z [6498/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-04-25T04:30:11.5858075Z [6499/7581] 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:30:11.6067364Z [6500/7581] 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:30:11.6486217Z [6501/7581] 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:30:11.6677872Z [6502/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-04-25T04:30:11.7010210Z [6503/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-04-25T04:30:11.7071181Z [6504/7581] 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:30:11.7134876Z [6505/7581] 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:30:11.7205132Z [6506/7581] 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:30:11.7467774Z [6507/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-04-25T04:30:11.7996780Z [6508/7581] 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:30:11.8262015Z [6509/7581] 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:30:11.8575106Z [6510/7581] 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:30:11.8590563Z [6511/7581] 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:30:11.8672542Z [6512/7581] 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:30:11.8780896Z [6513/7581] 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:30:11.8995508Z [6514/7581] 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:30:11.9504943Z [6515/7581] 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:30:11.9992675Z [6516/7581] 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:30:12.0138438Z [6517/7581] 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:30:12.0199412Z [6518/7581] 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:30:12.0224157Z [6519/7581] 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:30:12.0298205Z [6520/7581] 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:30:12.0550568Z [6521/7581] 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:30:12.0964118Z [6522/7581] 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:30:12.1452138Z [6523/7581] 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:30:12.1643911Z [6524/7581] 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:30:12.1817372Z [6525/7581] 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:30:12.1835863Z [6526/7581] 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:30:12.2249663Z [6527/7581] 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:30:12.2339202Z [6528/7581] 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:30:12.2482690Z [6529/7581] 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:30:12.3000103Z [6530/7581] 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:30:12.3231298Z [6531/7581] 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:30:12.3387442Z [6532/7581] 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:30:12.3449746Z [6533/7581] 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:30:12.3699130Z [6534/7581] 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:30:12.3963093Z [6535/7581] 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:30:12.4344239Z [6536/7581] 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:30:12.4477840Z [6537/7581] 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:30:12.4855147Z [6538/7581] 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:30:12.4917226Z [6539/7581] 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:30:12.4975313Z [6540/7581] 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:30:12.5239864Z [6541/7581] 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:30:12.5509670Z [6542/7581] 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:30:12.5961107Z [6543/7581] 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:30:12.6062732Z [6544/7581] 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:30:12.6367775Z [6545/7581] 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:30:12.6431314Z [6546/7581] 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:30:12.6486481Z [6547/7581] 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:30:12.6671471Z [6548/7581] 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:30:12.7037825Z [6549/7581] 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:30:12.7518933Z [6550/7581] 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:30:12.9284158Z [6551/7581] 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:30:12.9301019Z [6552/7581] 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:30:12.9315857Z [6553/7581] 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:30:12.9328724Z [6554/7581] 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:30:12.9343204Z [6555/7581] 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:30:13.0230198Z [6556/7581] 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:30:13.0662475Z [6557/7581] 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:30:13.0680066Z [6558/7581] 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:30:13.0696685Z [6559/7581] 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:30:13.0712827Z [6560/7581] 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:30:13.0776597Z [6561/7581] 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:30:13.1376399Z [6562/7581] 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:30:13.1557536Z [6563/7581] 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:30:13.1616085Z [6564/7581] 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:30:13.1635714Z [6565/7581] 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:30:13.1651975Z [6566/7581] 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:30:13.1712962Z [6567/7581] 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:30:13.2015475Z [6568/7581] 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:30:13.2493871Z [6569/7581] 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:30:13.2506758Z [6570/7581] 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:30:13.2615342Z [6571/7581] 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:30:13.2626931Z [6572/7581] 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:30:13.2724119Z [6573/7581] 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:30:13.2851800Z [6574/7581] 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:30:13.2938610Z [6575/7581] 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:30:13.3385087Z [6576/7581] 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:30:13.3539380Z [6577/7581] 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:30:13.3592870Z [6578/7581] 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:30:13.3709395Z [6579/7581] 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:30:13.3770977Z [6580/7581] 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:30:13.3831695Z [6581/7581] 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:30:13.3844562Z [6582/7581] 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:30:13.4297150Z [6583/7581] 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:30:13.4449166Z [6584/7581] 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:30:13.4576296Z [6585/7581] 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:30:13.4811868Z [6586/7581] 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:30:13.4828418Z [6587/7581] 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:30:13.4945442Z [6588/7581] 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:30:13.5034152Z [6589/7581] 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:30:13.5166999Z [6590/7581] 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:30:13.5355851Z [6591/7581] 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:30:13.5475775Z [6592/7581] 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:30:13.5778701Z [6593/7581] 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:30:13.6145301Z [6594/7581] 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:30:13.6200783Z [6595/7581] 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:30:13.6260443Z [6596/7581] 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:30:13.6346735Z [6597/7581] 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:30:13.6467062Z [6598/7581] 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:30:13.6733404Z [6599/7581] 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:30:13.7240659Z [6600/7581] 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:30:13.7341806Z [6601/7581] 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:30:13.7400431Z [6602/7581] 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:30:13.7455145Z [6603/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-04-25T04:30:13.7587906Z [6604/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-04-25T04:30:13.7680302Z [6605/7581] 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:30:13.7859340Z [6606/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-04-25T04:30:13.8507801Z [6607/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-04-25T04:30:13.8582867Z [6608/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-04-25T04:30:13.8599330Z [6609/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-04-25T04:30:13.8659290Z [6610/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-04-25T04:30:13.8880480Z [6611/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-04-25T04:30:13.8948001Z [6612/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-04-25T04:30:13.9009945Z [6613/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-04-25T04:30:13.9632994Z [6614/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-04-25T04:30:13.9773767Z [6615/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-04-25T04:30:13.9789102Z [6616/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-04-25T04:30:14.0049842Z [6617/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-04-25T04:30:14.0065535Z [6618/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-04-25T04:30:14.0125070Z [6619/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-04-25T04:30:14.0206094Z [6620/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-04-25T04:30:14.1023721Z [6621/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-04-25T04:30:14.1085626Z [6622/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-04-25T04:30:14.1235179Z [6623/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-04-25T04:30:14.1305386Z [6624/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-04-25T04:30:14.1322108Z [6625/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-04-25T04:30:14.1388161Z [6626/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-04-25T04:30:14.1709598Z [6627/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-04-25T04:30:14.2319122Z [6628/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-04-25T04:30:14.2545302Z [6629/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-04-25T04:30:14.2604810Z [6630/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-04-25T04:30:14.2658952Z [6631/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-04-25T04:30:14.2830552Z [6632/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-04-25T04:30:14.2909720Z [6633/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-04-25T04:30:14.2929812Z [6634/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-04-25T04:30:14.3546314Z [6635/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-04-25T04:30:14.3847939Z [6636/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-04-25T04:30:14.3916826Z [6637/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-04-25T04:30:14.3984729Z [6638/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-04-25T04:30:14.4172678Z [6639/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-04-25T04:30:14.4189606Z [6640/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-04-25T04:30:14.4207569Z [6641/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-04-25T04:30:14.4874368Z [6642/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-04-25T04:30:14.5110600Z [6643/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-04-25T04:30:14.5179240Z [6644/7581] 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:30:14.5432224Z [6645/7581] 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:30:14.5453173Z [6646/7581] 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:30:14.5506476Z [6647/7581] 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:30:14.5523448Z [6648/7581] 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:30:14.6206058Z [6649/7581] 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:30:14.6428297Z [6650/7581] 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:30:14.6536673Z [6651/7581] 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:30:14.6748268Z [6652/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-04-25T04:30:14.6815152Z [6653/7581] 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:30:14.6829994Z [6654/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-04-25T04:30:14.6912452Z [6655/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-04-25T04:30:14.7455166Z [6656/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-04-25T04:30:14.7700307Z [6657/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-04-25T04:30:14.7821716Z [6658/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-04-25T04:30:14.8121039Z [6659/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-04-25T04:30:14.8140016Z [6660/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-04-25T04:30:14.8206565Z [6661/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-04-25T04:30:14.8379869Z [6662/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-04-25T04:30:14.8565635Z [6663/7581] 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:30:14.8646205Z [6664/7581] 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:30:14.8714581Z [6665/7581] 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:30:14.8994168Z [6666/7581] 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:30:14.9068397Z [6667/7581] 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:30:14.9081849Z [6668/7581] 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:30:14.9307271Z [6669/7581] 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:30:14.9579317Z [6670/7581] 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:30:14.9928495Z [6671/7581] 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:30:15.0257013Z [6672/7581] 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:30:15.0325121Z [6673/7581] 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:30:15.0397231Z [6674/7581] 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:30:15.0411570Z [6675/7581] 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:30:15.0551515Z [6676/7581] 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:30:15.1092823Z [6677/7581] 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:30:15.1172318Z [6678/7581] 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:30:15.1554431Z [6679/7581] 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:30:15.1665962Z [6680/7581] 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:30:15.1761589Z [6681/7581] 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:30:15.1839190Z [6682/7581] 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:30:15.1902582Z [6683/7581] 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:30:15.2343921Z [6684/7581] 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:30:15.2432140Z [6685/7581] 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:30:15.2905938Z [6686/7581] 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:30:15.3007094Z [6687/7581] 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:30:15.3084166Z [6688/7581] 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:30:15.3152203Z [6689/7581] 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:30:15.3253925Z [6690/7581] 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:30:15.3601573Z [6691/7581] 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:30:15.3771196Z [6692/7581] 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:30:15.4293829Z [6693/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-04-25T04:30:15.4353531Z [6694/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-04-25T04:30:15.4439646Z [6695/7581] 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:30:15.4502623Z [6696/7581] 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:30:15.4517769Z [6697/7581] 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:30:15.4721949Z [6698/7581] 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:30:15.4947025Z [6699/7581] 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:30:15.5458219Z [6700/7581] 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:30:15.5654621Z [6701/7581] 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:30:15.5672194Z [6702/7581] 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:30:15.5689691Z [6703/7581] 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:30:15.5875744Z [6704/7581] 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:30:15.5893885Z [6705/7581] 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:30:15.6054714Z [6706/7581] 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:30:15.6661846Z [6707/7581] 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:30:15.6858479Z [6708/7581] 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:30:15.6879628Z [6709/7581] 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:30:15.6947873Z [6710/7581] 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:30:15.7018908Z [6711/7581] 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:30:15.7180205Z [6712/7581] 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:30:15.7260485Z [6713/7581] 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:30:15.7823880Z [6714/7581] 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:30:15.7927090Z [6715/7581] 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:30:15.8380383Z [6716/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-04-25T04:30:15.8394138Z [6717/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-04-25T04:30:15.8406370Z [6718/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-04-25T04:30:15.8461305Z [6719/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-04-25T04:30:15.8562299Z [6720/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-04-25T04:30:15.8913784Z [6721/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-04-25T04:30:15.9109156Z [6722/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-04-25T04:30:15.9588623Z [6723/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-04-25T04:30:15.9643562Z [6724/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-04-25T04:30:15.9656479Z [6725/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-04-25T04:30:15.9770338Z [6726/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-04-25T04:30:15.9873157Z [6727/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-04-25T04:30:16.0041257Z [6728/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-04-25T04:30:16.0281529Z [6729/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-04-25T04:30:16.0865712Z [6730/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-04-25T04:30:16.0937022Z [6731/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-04-25T04:30:16.0950424Z [6732/7581] 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:30:16.1364804Z [6733/7581] 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:30:16.1428037Z [6734/7581] 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:30:16.1650105Z [6735/7581] 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:30:16.1711884Z [6736/7581] 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:30:16.2471685Z [6737/7581] 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:30:16.2489880Z [6738/7581] 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:30:16.2506587Z [6739/7581] 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:30:16.3078593Z [6740/7581] 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:30:16.3158548Z [6741/7581] 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:30:16.3250012Z [6742/7581] 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:30:16.3581969Z [6743/7581] 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:30:16.3997084Z [6744/7581] 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:30:16.4011799Z [6745/7581] 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:30:16.4025915Z [6746/7581] 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:30:16.4614068Z [6747/7581] 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:30:16.4680466Z [6748/7581] 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:30:16.4698129Z [6749/7581] 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:30:16.5104478Z [6750/7581] 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:30:16.5485096Z [6751/7581] 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:30:16.5564638Z [6752/7581] 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:30:16.5696340Z [6753/7581] 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:30:16.5838854Z [6754/7581] 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:30:16.5852816Z [6755/7581] 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:30:16.5918308Z [6756/7581] 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:30:16.6356684Z [6757/7581] 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:30:16.6874746Z [6758/7581] 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:30:16.7467817Z [6759/7581] 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:30:16.7486019Z [6760/7581] 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:30:16.7502697Z [6761/7581] 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:30:16.7658583Z [6762/7581] 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:30:16.7850314Z [6763/7581] 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:30:16.8134344Z [6764/7581] 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:30:16.8329673Z [6765/7581] 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:30:16.9005481Z [6766/7581] 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:30:16.9052672Z [6767/7581] 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:30:16.9107194Z [6768/7581] 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:30:16.9211693Z [6769/7581] 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:30:16.9324317Z [6770/7581] 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:30:16.9613707Z [6771/7581] 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:30:16.9844902Z [6772/7581] 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:30:17.0545407Z [6773/7581] 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:30:17.0673337Z [6774/7581] 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:30:17.0688443Z [6775/7581] 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:30:17.0857541Z [6776/7581] 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:30:17.1068842Z [6777/7581] 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:30:17.1209401Z [6778/7581] 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:30:17.1638501Z [6779/7581] 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:30:17.2117881Z [6780/7581] 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:30:17.2291432Z [6781/7581] 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:30:17.2369788Z [6782/7581] 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:30:17.2438290Z [6783/7581] 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:30:17.2692140Z [6784/7581] 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:30:17.2836869Z [6785/7581] 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:30:17.3183104Z [6786/7581] 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:30:17.3681048Z [6787/7581] 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:30:17.3882188Z [6788/7581] 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:30:17.3994567Z [6789/7581] 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:30:17.4097540Z [6790/7581] 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:30:17.4242723Z [6791/7581] 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:30:17.4489265Z [6792/7581] 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:30:17.4850374Z [6793/7581] 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:30:17.5371688Z [6794/7581] 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:30:17.5514214Z [6795/7581] 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:30:17.5991740Z [6796/7581] 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:30:17.6090802Z [6797/7581] 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:30:17.6201344Z [6798/7581] 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:30:17.6278934Z [6799/7581] 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:30:17.6385722Z [6800/7581] 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:30:17.6958612Z [6801/7581] 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:30:17.7493791Z [6802/7581] 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:30:17.7596339Z [6803/7581] 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:30:17.7624444Z [6804/7581] 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:30:17.7679434Z [6805/7581] 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:30:17.7772535Z [6806/7581] 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:30:17.7841976Z [6807/7581] 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:30:17.8365697Z [6808/7581] 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:30:17.8981637Z [6809/7581] 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:30:17.9218988Z [6810/7581] 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:30:17.9274789Z [6811/7581] 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:30:17.9290058Z [6812/7581] 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:30:17.9477364Z [6813/7581] 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:30:17.9617306Z [6814/7581] 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:30:18.0047457Z [6815/7581] 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:30:18.0586048Z [6816/7581] 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:30:18.0604806Z [6817/7581] 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:30:18.0752022Z [6818/7581] 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:30:18.0973935Z [6819/7581] 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:30:18.0988176Z [6820/7581] 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:30:18.1284975Z [6821/7581] 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:30:18.1440989Z [6822/7581] 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:30:18.1898162Z [6823/7581] 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:30:18.2437696Z [6824/7581] 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:30:18.2604331Z [6825/7581] 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:30:18.2760211Z [6826/7581] 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:30:18.2774040Z [6827/7581] 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:30:18.2827356Z [6828/7581] 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:30:18.3729280Z [6829/7581] 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:30:18.4514767Z [6830/7581] 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:30:18.4587512Z [6831/7581] 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:30:18.4602140Z [6832/7581] 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:30:18.4702472Z [6833/7581] 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:30:18.4764489Z [6834/7581] 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:30:18.4832281Z [6835/7581] 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:30:18.5131302Z [6836/7581] 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:30:18.6086926Z [6837/7581] 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:30:18.6100354Z [6838/7581] 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:30:18.6271528Z [6839/7581] 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:30:18.6321967Z [6840/7581] 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:30:18.6548918Z [6841/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-04-25T04:30:18.6794932Z [6842/7581] 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:30:18.6809749Z [6843/7581] 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:30:18.7253936Z [6844/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-04-25T04:30:18.7519801Z [6845/7581] 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:30:18.7579063Z [6846/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-04-25T04:30:18.8136963Z [6847/7581] 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:30:18.8241500Z [6848/7581] 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:30:18.8351991Z [6849/7581] 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:30:18.8628945Z [6850/7581] 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:30:18.8748416Z [6851/7581] 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:30:18.9056714Z [6852/7581] 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:30:18.9074441Z [6853/7581] 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:30:18.9656702Z [6854/7581] 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:30:18.9833655Z [6855/7581] 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:30:18.9902592Z [6856/7581] 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:30:19.0564038Z [6857/7581] 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:30:19.0578040Z [6858/7581] 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:30:19.0687099Z [6859/7581] 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:30:19.0784032Z [6860/7581] 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:30:19.1743918Z [6861/7581] 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:30:19.1759847Z [6862/7581] 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:30:19.2064888Z [6863/7581] 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:30:19.2085064Z [6864/7581] 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:30:19.2141006Z [6865/7581] 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:30:19.2257419Z [6866/7581] 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:30:19.2864700Z [6867/7581] 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:30:19.3274147Z [6868/7581] 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:30:19.3447832Z [6869/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-04-25T04:30:19.3591856Z [6870/7581] 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:30:19.3776772Z [6871/7581] 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:30:19.4010884Z [6872/7581] 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:30:19.4134800Z [6873/7581] 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:30:19.4151625Z [6874/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-04-25T04:30:19.4294945Z [6875/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-04-25T04:30:19.4484024Z [6876/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-04-25T04:30:19.4498784Z [6877/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-04-25T04:30:19.4647047Z [6878/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-04-25T04:30:19.5411154Z [6879/7581] 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:30:19.5775694Z [6880/7581] 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:30:19.5952558Z [6881/7581] 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:30:19.6082969Z [6882/7581] 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:30:19.6274627Z [6883/7581] 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:30:19.6341503Z [6884/7581] 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:30:19.6432461Z [6885/7581] 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:30:19.6825126Z [6886/7581] 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:30:19.7411872Z [6887/7581] 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:30:19.7606898Z [6888/7581] 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:30:19.7693229Z [6889/7581] 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:30:19.7887276Z [6890/7581] 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:30:19.7948445Z [6891/7581] 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:30:19.8065882Z [6892/7581] 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:30:19.8299966Z [6893/7581] 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:30:19.8940691Z [6894/7581] 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:30:19.9210191Z [6895/7581] 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:30:19.9376131Z [6896/7581] 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:30:19.9902204Z [6897/7581] 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:30:20.0131127Z [6898/7581] 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:30:20.0475174Z [6899/7581] 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:30:20.0675947Z [6900/7581] 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:30:20.1236469Z [6901/7581] 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:30:20.1368027Z [6902/7581] 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:30:20.1548801Z [6903/7581] 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:30:20.1986490Z [6904/7581] 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:30:20.2156884Z [6905/7581] 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:30:20.3354502Z [6906/7581] 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:30:20.3540251Z [6907/7581] 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:30:20.3970364Z [6908/7581] 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:30:20.4237816Z [6909/7581] 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:30:20.4932770Z [6910/7581] 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:30:20.5261416Z [6911/7581] 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:30:20.5436499Z [6912/7581] 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:30:20.8905077Z [6913/7581] 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:30:20.9108828Z [6914/7581] 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:30:20.9291357Z [6915/7581] 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:30:20.9471862Z [6916/7581] 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:30:20.9658480Z [6917/7581] 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:30:20.9870805Z [6918/7581] 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:30:21.0039858Z [6919/7581] 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:30:21.0451971Z [6920/7581] 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:30:21.0510520Z [6921/7581] 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:30:21.0734424Z [6922/7581] 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:30:21.0982795Z [6923/7581] 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:30:21.1144420Z [6924/7581] 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:30:21.1467451Z [6925/7581] 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:30:21.1657272Z [6926/7581] 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:30:21.1969927Z [6927/7581] 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:30:21.2131016Z [6928/7581] 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:30:21.2220547Z [6929/7581] 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:30:21.2450521Z [6930/7581] 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:30:21.2676644Z [6931/7581] 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:30:21.3000236Z [6932/7581] 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:30:21.3215687Z [6933/7581] 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:30:21.3578622Z [6934/7581] 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:30:21.3640919Z [6935/7581] 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:30:21.3748827Z [6936/7581] 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:30:21.4137257Z [6937/7581] 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:30:21.4419557Z [6938/7581] 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:30:21.4482615Z [6939/7581] 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:30:21.4763904Z [6940/7581] 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:30:21.5095469Z [6941/7581] 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:30:21.5158135Z [6942/7581] 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:30:21.5332028Z [6943/7581] 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:30:21.5879613Z [6944/7581] 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:30:21.5943196Z [6945/7581] 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:30:21.6249025Z [6946/7581] 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:30:21.6266457Z [6947/7581] 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:30:21.6518973Z [6948/7581] 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:30:21.6829647Z [6949/7581] 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:30:21.6921548Z [6950/7581] 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:30:21.7388727Z [6951/7581] 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:30:21.7840714Z [6952/7581] 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:30:21.7844252Z [6953/7581] 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:30:21.7942657Z [6954/7581] 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:30:21.8077147Z [6955/7581] 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:30:21.8466265Z [6956/7581] 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:30:21.8543073Z [6957/7581] 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:30:21.8816465Z [6958/7581] 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:30:21.9462296Z [6959/7581] 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:30:21.9631994Z [6960/7581] 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:30:21.9645920Z [6961/7581] 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:30:21.9803212Z [6962/7581] 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:30:22.0158592Z [6963/7581] 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:30:22.0219301Z [6964/7581] 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:30:22.0407013Z [6965/7581] 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:30:22.0928010Z [6966/7581] 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:30:22.1086055Z [6967/7581] 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:30:22.1148047Z [6968/7581] 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:30:22.1250151Z [6969/7581] 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:30:22.1704106Z [6970/7581] 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:30:22.1766373Z [6971/7581] 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:30:22.1889915Z [6972/7581] 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:30:22.2476239Z [6973/7581] 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:30:22.2639931Z [6974/7581] 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:30:22.2656669Z [6975/7581] 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:30:22.2808874Z [6976/7581] 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:30:22.3218805Z [6977/7581] 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:30:22.3278077Z [6978/7581] 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:30:22.3413667Z [6979/7581] 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:30:22.4075963Z [6980/7581] 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:30:22.4170044Z [6981/7581] 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:30:22.4659534Z [6982/7581] 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:30:22.4756671Z [6983/7581] 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:30:22.4769645Z [6984/7581] 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:30:22.4829982Z [6985/7581] 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:30:22.4981739Z [6986/7581] 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:30:22.5446073Z [6987/7581] 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:30:22.5566775Z [6988/7581] 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:30:22.6157618Z [6989/7581] 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:30:22.6308991Z [6990/7581] 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:30:22.6368252Z [6991/7581] 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:30:22.6382412Z [6992/7581] 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:30:22.6519893Z [6993/7581] 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:30:22.6964359Z [6994/7581] 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:30:22.7213613Z [6995/7581] 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:30:22.7913623Z [6996/7581] 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:30:22.7983799Z [6997/7581] 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:30:22.7999849Z [6998/7581] 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:30:22.8102928Z [6999/7581] 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:30:22.8416203Z [7000/7581] 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:30:22.8544578Z [7001/7581] 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:30:22.8605855Z [7002/7581] 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:30:22.9518988Z [7003/7581] 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:30:22.9537422Z [7004/7581] 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:30:22.9623824Z [7005/7581] 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:30:22.9767661Z [7006/7581] 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:30:23.0007362Z [7007/7581] 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:30:23.0088034Z [7008/7581] 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:30:23.0103001Z [7009/7581] 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:30:23.1153762Z [7010/7581] 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:30:23.1292791Z [7011/7581] 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:30:23.1375982Z [7012/7581] 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:30:23.1519372Z [7013/7581] 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:30:23.1726230Z [7014/7581] 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:30:23.1783453Z [7015/7581] 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:30:23.2031265Z [7016/7581] 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:30:23.2908567Z [7017/7581] 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:30:23.3004101Z [7018/7581] 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:30:23.3108263Z [7019/7581] 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:30:23.3227130Z [7020/7581] 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:30:23.3241059Z [7021/7581] 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:30:23.3254808Z [7022/7581] 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:30:23.3789313Z [7023/7581] 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:30:23.4542391Z [7024/7581] 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:30:23.4632693Z [7025/7581] 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:30:23.4645240Z [7026/7581] 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:30:23.4729825Z [7027/7581] 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:30:23.4830776Z [7028/7581] 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:30:23.5055999Z [7029/7581] 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:30:23.5246340Z [7030/7581] 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:30:23.6121626Z [7031/7581] 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:30:23.6207430Z [7032/7581] 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:30:23.6288810Z [7033/7581] 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:30:23.6390674Z [7034/7581] 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:30:23.6454868Z [7035/7581] 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:30:23.6560657Z [7036/7581] 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:30:23.6731915Z [7037/7581] 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:30:23.7744790Z [7038/7581] 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:30:23.7763551Z [7039/7581] 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:30:23.8007290Z [7040/7581] 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:30:23.8022799Z [7041/7581] 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:30:23.8104894Z [7042/7581] 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:30:23.8165929Z [7043/7581] 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:30:23.8229288Z [7044/7581] 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:30:23.9337837Z [7045/7581] 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:30:23.9490190Z [7046/7581] 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:30:23.9552928Z [7047/7581] 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:30:23.9666183Z [7048/7581] 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:30:23.9724232Z [7049/7581] 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:30:23.9834711Z [7050/7581] 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:30:23.9896015Z [7051/7581] 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:30:24.0673805Z [7052/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-04-25T04:30:24.0858532Z [7053/7581] 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:30:24.0871666Z [7054/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-04-25T04:30:24.0970356Z [7055/7581] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-04-25T04:30:24.1343525Z [7056/7581] 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:30:24.1450352Z [7057/7581] 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:30:24.1466280Z [7058/7581] 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:30:24.2410411Z [7059/7581] 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:30:24.2471968Z [7060/7581] 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:30:24.2490767Z [7061/7581] 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:30:24.2636095Z [7062/7581] 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:30:24.2880784Z [7063/7581] 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:30:24.2943764Z [7064/7581] 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:30:24.3002848Z [7065/7581] 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:30:24.4197459Z [7066/7581] 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:30:24.4257293Z [7067/7581] 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:30:24.4352422Z [7068/7581] 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:30:24.4473268Z [7069/7581] 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:30:24.4623864Z [7070/7581] 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:30:24.4684592Z [7071/7581] 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:30:24.5237054Z [7072/7581] 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:30:24.5671462Z [7073/7581] 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:30:24.5734469Z [7074/7581] 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:30:24.6512582Z [7075/7581] 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:30:24.6570502Z [7076/7581] 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:30:24.6703605Z [7077/7581] 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:30:24.6823093Z [7078/7581] 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:30:24.6901402Z [7079/7581] 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:30:24.6976425Z [7080/7581] 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:30:24.7084680Z [7081/7581] 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:30:24.8231097Z [7082/7581] 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:30:24.8285756Z [7083/7581] 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:30:24.8360989Z [7084/7581] 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:30:24.8425050Z [7085/7581] 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:30:24.8480355Z [7086/7581] 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:30:24.8602301Z [7087/7581] 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:30:24.8619609Z [7088/7581] 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:30:24.9951051Z [7089/7581] 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:30:25.0005288Z [7090/7581] 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:30:25.0055826Z [7091/7581] 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:30:25.0235436Z [7092/7581] 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:30:25.0249676Z [7093/7581] 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:30:25.0308450Z [7094/7581] 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:30:25.0810805Z [7095/7581] 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:30:25.1755652Z [7096/7581] 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:30:25.4758807Z [7097/7581] 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:30:25.4773342Z [7098/7581] 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:30:25.4927223Z [7099/7581] 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:30:25.5196034Z [7100/7581] 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:30:25.5380276Z [7101/7581] 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:30:27.1163773Z [7102/7581] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-04-25T04:30:27.4761125Z [7103/7581] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-04-25T04:30:28.2026823Z [7104/7581] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-04-25T04:30:28.5285273Z [7105/7581] Linking CXX static library lib\gtest_main.lib 2025-04-25T04:30:29.7012383Z [7106/7581] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-04-25T04:30:29.7235995Z [7107/7581] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-04-25T04:30:29.9771346Z [7108/7581] Linking CXX static library lib\gmock.lib 2025-04-25T04:30:30.0139813Z [7109/7581] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-04-25T04:30:30.0415648Z [7110/7581] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-04-25T04:30:30.2656584Z [7111/7581] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-04-25T04:30:30.4270344Z [7112/7581] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-04-25T04:30:30.4286817Z [7113/7581] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-04-25T04:30:30.5312391Z [7114/7581] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-04-25T04:30:30.6336248Z [7115/7581] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-04-25T04:30:30.7047724Z [7116/7581] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-04-25T04:30:30.7961224Z [7117/7581] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-04-25T04:30:30.8061827Z [7118/7581] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-04-25T04:30:30.9625945Z [7119/7581] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-04-25T04:30:30.9938835Z [7120/7581] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-04-25T04:30:31.0146827Z [7121/7581] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-04-25T04:30:31.1321378Z [7122/7581] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-04-25T04:30:31.1468388Z [7123/7581] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-04-25T04:30:31.2374092Z [7124/7581] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-04-25T04:30:31.2602727Z [7125/7581] Linking CXX static library lib\benchmark.lib 2025-04-25T04:30:31.3398072Z [7126/7581] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-04-25T04:30:31.3864088Z [7127/7581] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-04-25T04:30:31.5295495Z [7128/7581] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-04-25T04:30:31.5368501Z [7129/7581] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-04-25T04:30:31.5461760Z [7130/7581] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-04-25T04:30:31.6263303Z [7131/7581] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-04-25T04:30:31.6351308Z [7132/7581] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-04-25T04:30:31.7141705Z [7133/7581] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-04-25T04:30:31.7460077Z [7134/7581] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-04-25T04:30:31.9044917Z [7135/7581] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-04-25T04:30:31.9368354Z [7136/7581] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-04-25T04:30:31.9636449Z [7137/7581] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-04-25T04:30:32.0577579Z [7138/7581] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-04-25T04:30:32.0708015Z [7139/7581] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-04-25T04:30:32.0802135Z [7140/7581] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-04-25T04:30:32.1132698Z [7141/7581] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-04-25T04:30:32.2614892Z [7142/7581] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-04-25T04:30:32.3376655Z [7143/7581] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-04-25T04:30:32.4364325Z [7144/7581] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-04-25T04:30:32.4637240Z [7145/7581] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-04-25T04:30:32.4704354Z [7146/7581] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-04-25T04:30:32.5441479Z [7147/7581] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-04-25T04:30:32.5442699Z 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:30:32.5444388Z 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:30:32.5445580Z with 2025-04-25T04:30:32.5445817Z [ 2025-04-25T04:30:32.5445998Z T=Type 2025-04-25T04:30:32.5446208Z ] 2025-04-25T04:30:32.5447297Z 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:30:32.5448491Z with 2025-04-25T04:30:32.5448697Z [ 2025-04-25T04:30:32.5448878Z T=Type 2025-04-25T04:30:32.5449094Z ] 2025-04-25T04:30:32.5450117Z 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:30:32.5453427Z 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:30:32.5458033Z 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:30:32.6418663Z 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:30:32.6425026Z [7148/7581] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-04-25T04:30:32.6735147Z [7149/7581] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-04-25T04:30:32.7025038Z [7150/7581] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-04-25T04:30:32.9112628Z [7151/7581] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-04-25T04:30:32.9295598Z [7152/7581] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-04-25T04:30:32.9611191Z [7153/7581] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-04-25T04:30:32.9633246Z [7154/7581] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-04-25T04:30:33.0133514Z [7155/7581] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-04-25T04:30:33.0381672Z [7156/7581] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-04-25T04:30:33.1505971Z [7157/7581] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-04-25T04:30:34.4765014Z [7158/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_1_var_test.dir\impl\CUDAAssertionsTest_1_var_test.cu.obj 2025-04-25T04:30:34.4849526Z CUDAAssertionsTest_1_var_test.cu 2025-04-25T04:30:34.4850012Z tmpxft_00001518_00000000-7_CUDAAssertionsTest_1_var_test.cudafe1.cpp 2025-04-25T04:30:34.4850893Z [7159/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_from_2_processes.dir\impl\CUDAAssertionsTest_from_2_processes.cu.obj 2025-04-25T04:30:34.5798749Z CUDAAssertionsTest_from_2_processes.cu 2025-04-25T04:30:34.5799265Z tmpxft_00000f98_00000000-7_CUDAAssertionsTest_from_2_processes.cudafe1.cpp 2025-04-25T04:30:34.5800351Z [7160/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.dir\impl\CUDAAssertionsTest_catches_thread_and_block_and_device.cu.obj 2025-04-25T04:30:34.6409258Z CUDAAssertionsTest_catches_thread_and_block_and_device.cu 2025-04-25T04:30:34.6410509Z tmpxft_00000880_00000000-7_CUDAAssertionsTest_catches_thread_and_block_and_device.cudafe1.cpp 2025-04-25T04:30:34.6411842Z [7161/7581] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-04-25T04:30:34.6447531Z [7162/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_stream.dir\impl\CUDAAssertionsTest_catches_stream.cu.obj 2025-04-25T04:30:34.6594065Z CUDAAssertionsTest_catches_stream.cu 2025-04-25T04:30:34.6595656Z tmpxft_00000c68_00000000-7_CUDAAssertionsTest_catches_stream.cudafe1.cpp 2025-04-25T04:30:34.6597842Z [7163/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.dir\impl\CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu.obj 2025-04-25T04:30:34.7156868Z CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu 2025-04-25T04:30:34.7157614Z tmpxft_00001548_00000000-7_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cudafe1.cpp 2025-04-25T04:30:34.7158736Z [7164/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.dir\impl\CUDAAssertionsTest_multiple_writes_from_same_block.cu.obj 2025-04-25T04:30:34.7361972Z CUDAAssertionsTest_multiple_writes_from_same_block.cu 2025-04-25T04:30:34.7362604Z tmpxft_00000d5c_00000000-7_CUDAAssertionsTest_multiple_writes_from_same_block.cudafe1.cpp 2025-04-25T04:30:34.7363857Z [7165/7581] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.dir\impl\CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu.obj 2025-04-25T04:30:34.7536654Z CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu 2025-04-25T04:30:34.7537934Z tmpxft_00001308_00000000-7_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cudafe1.cpp 2025-04-25T04:30:34.7539544Z [7166/7581] Building CXX object caffe2\CMakeFiles\caffe2_nvrtc.dir\__\aten\src\ATen\cuda\nvrtc_stub\ATenNVRTC.cpp.obj 2025-04-25T04:30:34.7987651Z [7167/7581] Building CXX object c10\cuda\test\CMakeFiles\c10_cuda_CUDATest.dir\impl\CUDATest.cpp.obj 2025-04-25T04:30:35.1706995Z [7168/7581] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-04-25T04:30:35.3865866Z [7169/7581] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-04-25T04:30:35.3867144Z 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:30:35.3868475Z 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:30:35.5204633Z 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:30:35.5207311Z 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:30:35.5209458Z [7170/7581] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-04-25T04:30:35.5271653Z [7171/7581] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-04-25T04:30:38.0110352Z [7172/7581] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-04-25T04:30:38.0858507Z [7173/7581] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-04-25T04:30:38.1063319Z [7174/7581] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-04-25T04:30:38.5592808Z [7175/7581] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-04-25T04:30:38.5924204Z [7176/7581] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-04-25T04:30:38.7867404Z [7177/7581] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-04-25T04:30:38.8514626Z [7178/7581] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-04-25T04:30:41.2122030Z [7179/7581] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-04-25T04:30:41.2611090Z [7180/7581] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-04-25T04:30:41.3212379Z [7181/7581] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-04-25T04:30:41.8043017Z [7182/7581] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-04-25T04:30:42.0116107Z [7183/7581] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-04-25T04:30:42.1243097Z [7184/7581] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-04-25T04:30:42.2861549Z [7185/7581] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-04-25T04:30:44.5125336Z [7186/7581] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-04-25T04:30:44.7195028Z [7187/7581] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-04-25T04:30:44.8942565Z [7188/7581] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-04-25T04:30:44.9229981Z [7189/7581] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-04-25T04:30:45.2485066Z [7190/7581] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-04-25T04:30:45.3945808Z [7191/7581] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-04-25T04:30:45.6605635Z [7192/7581] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-04-25T04:30:47.8294105Z [7193/7581] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-04-25T04:30:47.8574438Z [7194/7581] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-04-25T04:30:48.0642591Z [7195/7581] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-04-25T04:30:48.2415394Z [7196/7581] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-04-25T04:30:48.4032025Z [7197/7581] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-04-25T04:30:48.6130798Z [7198/7581] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-04-25T04:30:48.6881025Z [7199/7581] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-04-25T04:30:50.2950685Z [7200/7581] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-04-25T04:30:51.1126679Z [7201/7581] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-04-25T04:30:51.1639277Z [7202/7581] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-04-25T04:30:51.1808648Z [7203/7581] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-04-25T04:30:51.4271487Z [7204/7581] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-04-25T04:30:51.7795902Z [7205/7581] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-04-25T04:30:51.8452981Z [7206/7581] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-04-25T04:30:54.1645198Z [7207/7581] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-04-25T04:30:54.2697604Z [7208/7581] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-04-25T04:30:54.3424590Z [7209/7581] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-04-25T04:30:54.5171315Z [7210/7581] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-04-25T04:30:54.6786249Z [7211/7581] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-04-25T04:30:55.0292364Z [7212/7581] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-04-25T04:30:55.0525453Z [7213/7581] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-04-25T04:30:55.3754403Z [7214/7581] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-04-25T04:30:55.8308595Z [7215/7581] 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:30:56.1177920Z [7216/7581] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-04-25T04:30:56.2067091Z [7217/7581] 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:30:56.5076816Z [7218/7581] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-04-25T04:30:56.6223273Z [7219/7581] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-04-25T04:30:56.7133216Z [7220/7581] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-04-25T04:30:56.9021570Z [7221/7581] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-04-25T04:30:56.9587194Z [7222/7581] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-04-25T04:30:57.2692575Z [7223/7581] 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:30:57.4015433Z [7224/7581] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-04-25T04:30:57.5293326Z [7225/7581] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-04-25T04:30:57.8616506Z [7226/7581] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-04-25T04:30:58.0629966Z [7227/7581] Building CXX object caffe2\CMakeFiles\cuda_apply_test.dir\__\aten\src\ATen\test\cuda_apply_test.cpp.obj 2025-04-25T04:30:58.1417146Z [7228/7581] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-04-25T04:30:59.9689859Z [7229/7581] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-04-25T04:31:00.1325130Z [7230/7581] Building CUDA object caffe2\CMakeFiles\cuda_atomic_ops_test.dir\__\aten\src\ATen\test\cuda_atomic_ops_test.cu.obj 2025-04-25T04:31:00.1428329Z cuda_atomic_ops_test.cu 2025-04-25T04:31:00.1428741Z tmpxft_000013d8_00000000-7_cuda_atomic_ops_test.cudafe1.cpp 2025-04-25T04:31:00.1429474Z [7231/7581] Building CUDA object caffe2\CMakeFiles\cuda_complex_math_test.dir\__\aten\src\ATen\test\cuda_complex_math_test.cu.obj 2025-04-25T04:31:00.5294830Z cuda_complex_math_test.cu 2025-04-25T04:31:00.5295571Z tmpxft_0000061c_00000000-7_cuda_complex_math_test.cudafe1.cpp 2025-04-25T04:31:00.5297301Z [7232/7581] Building CXX object caffe2\CMakeFiles\cuda_allocator_test.dir\__\aten\src\ATen\test\cuda_allocator_test.cpp.obj 2025-04-25T04:31:00.7883888Z [7233/7581] Building CXX object caffe2\CMakeFiles\cuda_device_test.dir\__\aten\src\ATen\test\cuda_device_test.cpp.obj 2025-04-25T04:31:00.9374074Z [7234/7581] Building CUDA object caffe2\CMakeFiles\cuda_complex_test.dir\__\aten\src\ATen\test\cuda_complex_test.cu.obj 2025-04-25T04:31:01.2054808Z cuda_complex_test.cu 2025-04-25T04:31:01.2057261Z tmpxft_00000a24_00000000-7_cuda_complex_test.cudafe1.cpp 2025-04-25T04:31:01.2061492Z [7235/7581] Building CXX object caffe2\CMakeFiles\cuda_caching_host_allocator_test.dir\__\aten\src\ATen\test\cuda_caching_host_allocator_test.cpp.obj 2025-04-25T04:31:01.8485398Z [7236/7581] Building CUDA object caffe2\CMakeFiles\cuda_cub_test.dir\__\aten\src\ATen\test\cuda_cub_test.cu.obj 2025-04-25T04:31:04.0349051Z cuda_cub_test.cu 2025-04-25T04:31:04.0349638Z tmpxft_00000a20_00000000-7_cuda_cub_test.cudafe1.cpp 2025-04-25T04:31:04.0350998Z [7237/7581] Building CUDA object caffe2\CMakeFiles\cuda_integer_divider_test.dir\__\aten\src\ATen\test\cuda_integer_divider_test.cu.obj 2025-04-25T04:31:04.0352187Z cuda_integer_divider_test.cu 2025-04-25T04:31:04.0353084Z tmpxft_00001064_00000000-7_cuda_integer_divider_test.cudafe1.cpp 2025-04-25T04:31:04.0354779Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmemory(674): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-04-25T04:31:04.0358508Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(708): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,Value&,unsigned __int64,int&>(_Alloc &,_Objty *const ,Value &,unsigned __int64 &&,int &)' being compiled 2025-04-25T04:31:04.0361081Z with 2025-04-25T04:31:04.0361383Z [ 2025-04-25T04:31:04.0361806Z _Alloc=std::allocator>, 2025-04-25T04:31:04.0362465Z _Ty=TestCase, 2025-04-25T04:31:04.0362982Z Value=unsigned __int64, 2025-04-25T04:31:04.0363459Z _Objty=TestCase 2025-04-25T04:31:04.0363932Z ] 2025-04-25T04:31:04.0366993Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(713): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,Value&,unsigned __int64,int&>(_Alloc &,_Objty *const ,Value &,unsigned __int64 &&,int &)' being compiled 2025-04-25T04:31:04.0369455Z with 2025-04-25T04:31:04.0369809Z [ 2025-04-25T04:31:04.0370243Z _Alloc=std::allocator>, 2025-04-25T04:31:04.0370845Z _Ty=TestCase, 2025-04-25T04:31:04.0371325Z Value=unsigned __int64, 2025-04-25T04:31:04.0371835Z _Objty=TestCase 2025-04-25T04:31:04.0372346Z ] 2025-04-25T04:31:04.0374580Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(726): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(Value &,unsigned __int64 &&,int &)' being compiled 2025-04-25T04:31:04.0376977Z with 2025-04-25T04:31:04.0377301Z [ 2025-04-25T04:31:04.0377630Z _Ty=TestCase, 2025-04-25T04:31:04.0378145Z Value=unsigned __int64 2025-04-25T04:31:04.0378556Z ] 2025-04-25T04:31:04.0381307Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(92): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-04-25T04:31:04.0383460Z with 2025-04-25T04:31:04.0383794Z [ 2025-04-25T04:31:04.0384442Z _Ty=TestCase, 2025-04-25T04:31:04.0384957Z Value=unsigned __int64 2025-04-25T04:31:04.0385640Z ] 2025-04-25T04:31:04.0387310Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(86): note: while compiling class template member function 'void IntDividerTester::addTestCase(Value,Value,int)' 2025-04-25T04:31:04.0389068Z with 2025-04-25T04:31:04.0389411Z [ 2025-04-25T04:31:04.0389725Z Value=unsigned __int64 2025-04-25T04:31:04.0390138Z ] 2025-04-25T04:31:04.1127054Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(188): note: see reference to function template instantiation 'void IntDividerTester::addTestCase(Value,Value,int)' being compiled 2025-04-25T04:31:04.1130052Z with 2025-04-25T04:31:04.1130410Z [ 2025-04-25T04:31:04.1130730Z Value=unsigned __int64 2025-04-25T04:31:04.1131182Z ] 2025-04-25T04:31:04.1132500Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(181): note: see reference to class template instantiation 'IntDividerTester' being compiled 2025-04-25T04:31:04.1140036Z [7238/7581] Building CXX object caffe2\CMakeFiles\cuda_dlconvertor_test.dir\__\aten\src\ATen\test\cuda_dlconvertor_test.cpp.obj 2025-04-25T04:31:04.7093353Z [7239/7581] Building CXX object caffe2\CMakeFiles\cuda_allocatorTraceTracker_test.dir\__\aten\src\ATen\test\cuda_allocatorTraceTracker_test.cpp.obj 2025-04-25T04:31:05.6235120Z [7240/7581] Building CXX object caffe2\CMakeFiles\cuda_stream_test.dir\__\aten\src\ATen\test\cuda_stream_test.cpp.obj 2025-04-25T04:31:07.3136538Z [7241/7581] Building CXX object caffe2\CMakeFiles\cuda_reportMemoryUsage_test.dir\__\aten\src\ATen\test\cuda_reportMemoryUsage_test.cpp.obj 2025-04-25T04:31:09.3928503Z [7242/7581] Building CUDA object caffe2\CMakeFiles\cuda_half_test.dir\__\aten\src\ATen\test\cuda_half_test.cu.obj 2025-04-25T04:31:09.4254991Z cuda_half_test.cu 2025-04-25T04:31:09.4255577Z tmpxft_000017b0_00000000-7_cuda_half_test.cudafe1.cpp 2025-04-25T04:31:09.4256838Z [7243/7581] Building CUDA object caffe2\CMakeFiles\cuda_generator_test.dir\__\aten\src\ATen\test\cuda_generator_test.cu.obj 2025-04-25T04:31:09.4986260Z cuda_generator_test.cu 2025-04-25T04:31:09.4986918Z tmpxft_00001090_00000000-7_cuda_generator_test.cudafe1.cpp 2025-04-25T04:31:09.4988315Z [7244/7581] Building CUDA object caffe2\CMakeFiles\cuda_distributions_test.dir\__\aten\src\ATen\test\cuda_distributions_test.cu.obj 2025-04-25T04:31:09.5310872Z cuda_distributions_test.cu 2025-04-25T04:31:09.5311550Z tmpxft_0000167c_00000000-7_cuda_distributions_test.cudafe1.cpp 2025-04-25T04:31:09.5312511Z [7245/7581] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-04-25T04:31:09.5324350Z [7246/7581] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-04-25T04:31:09.6246688Z [7247/7581] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-04-25T04:31:09.8698320Z [7248/7581] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_main.cpp.obj 2025-04-25T04:31:09.9485684Z [7249/7581] Building CUDA object caffe2\CMakeFiles\cuda_optional_test.dir\__\aten\src\ATen\test\cuda_optional_test.cu.obj 2025-04-25T04:31:10.2402409Z cuda_optional_test.cu 2025-04-25T04:31:10.2402980Z tmpxft_00000ea0_00000000-7_cuda_optional_test.cudafe1.cpp 2025-04-25T04:31:10.2404913Z [7250/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-04-25T04:31:10.4496226Z [7251/7581] Building CUDA object caffe2\CMakeFiles\cuda_packedtensoraccessor_test.dir\__\aten\src\ATen\test\cuda_packedtensoraccessor_test.cu.obj 2025-04-25T04:31:10.6442587Z cuda_packedtensoraccessor_test.cu 2025-04-25T04:31:10.6443675Z tmpxft_00001740_00000000-7_cuda_packedtensoraccessor_test.cudafe1.cpp 2025-04-25T04:31:10.6445563Z [7252/7581] Building CXX object caffe2\CMakeFiles\cuda_cudnn_test.dir\__\aten\src\ATen\test\cuda_cudnn_test.cpp.obj 2025-04-25T04:31:11.0138160Z [7253/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-04-25T04:31:12.0849407Z [7254/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-04-25T04:31:12.6653540Z [7255/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-04-25T04:31:12.7435179Z [7256/7581] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_operator_registration.cpp.obj 2025-04-25T04:31:12.8335944Z [7257/7581] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-04-25T04:31:13.1105746Z [7258/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-04-25T04:31:13.7288616Z [7259/7581] Building CUDA object caffe2\CMakeFiles\cuda_vectorized_test.dir\__\aten\src\ATen\test\cuda_vectorized_test.cu.obj 2025-04-25T04:31:13.7656060Z cuda_vectorized_test.cu 2025-04-25T04:31:13.7656478Z tmpxft_0000147c_00000000-7_cuda_vectorized_test.cudafe1.cpp 2025-04-25T04:31:13.7657115Z [7260/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-04-25T04:31:13.7892800Z [7261/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-04-25T04:31:14.2126628Z [7262/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-04-25T04:31:14.3426718Z [7263/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-04-25T04:31:14.8986162Z [7264/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-04-25T04:31:15.2851641Z [7265/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-04-25T04:31:15.4508493Z [7266/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-04-25T04:31:15.9265422Z [7267/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-04-25T04:31:16.1642363Z [7268/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-04-25T04:31:16.4191772Z [7269/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-04-25T04:31:16.5088247Z [7270/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-04-25T04:31:17.1674584Z [7271/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-04-25T04:31:17.4756306Z [7272/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-04-25T04:31:18.7887383Z [7273/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-04-25T04:31:18.8754882Z [7274/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-04-25T04:31:19.5500169Z [7275/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-04-25T04:31:19.8923654Z [7276/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-04-25T04:31:19.9931564Z [7277/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-04-25T04:31:20.1179173Z [7278/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-04-25T04:31:20.7719159Z [7279/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-04-25T04:31:20.9420456Z [7280/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-04-25T04:31:21.0091405Z [7281/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-04-25T04:31:21.1444604Z [7282/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-04-25T04:31:21.1576442Z [7283/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-04-25T04:31:22.2046007Z [7284/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-04-25T04:31:22.5241069Z [7285/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-04-25T04:31:23.2557622Z [7286/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-04-25T04:31:23.2751143Z [7287/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-04-25T04:31:23.6824332Z [7288/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-04-25T04:31:24.3459510Z [7289/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-04-25T04:31:24.5351428Z [7290/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-04-25T04:31:24.5995552Z [7291/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-04-25T04:31:24.6878657Z [7292/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-04-25T04:31:24.8815433Z [7293/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-04-25T04:31:25.6012142Z [7294/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-04-25T04:31:25.7406575Z [7295/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-04-25T04:31:25.9084018Z [7296/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-04-25T04:31:26.2816359Z [7297/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-04-25T04:31:26.6685349Z [7298/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-04-25T04:31:26.6878250Z [7299/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-04-25T04:31:26.8119736Z [7300/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-04-25T04:31:26.8997934Z [7301/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-04-25T04:31:27.3158059Z [7302/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-04-25T04:31:27.4036723Z [7303/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-04-25T04:31:27.4515693Z [7304/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-04-25T04:31:27.7132963Z [7305/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-04-25T04:31:27.7736138Z [7306/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-04-25T04:31:27.7826829Z [7307/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-04-25T04:31:29.3054487Z [7308/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-04-25T04:31:30.1840667Z [7309/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-04-25T04:31:30.3410806Z [7310/7581] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-04-25T04:31:30.5974440Z [7311/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-04-25T04:31:30.8384730Z [7312/7581] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-04-25T04:31:31.0186466Z [7313/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-04-25T04:31:31.1420127Z [7314/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-04-25T04:31:32.1165034Z [7315/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-04-25T04:31:32.7917714Z [7316/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-04-25T04:31:33.1637191Z [7317/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-04-25T04:31:33.3627030Z [7318/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-04-25T04:31:33.8313073Z [7319/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-04-25T04:31:34.0169726Z [7320/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-04-25T04:31:34.2255406Z [7321/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-04-25T04:31:34.4596732Z [7322/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-04-25T04:31:36.3459065Z [7323/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-04-25T04:31:36.7405673Z [7324/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-04-25T04:31:37.0449411Z [7325/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-04-25T04:31:37.3501034Z [7326/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-04-25T04:31:37.4407999Z [7327/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-04-25T04:31:37.5785900Z [7328/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-04-25T04:31:37.7025539Z [7329/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-04-25T04:31:39.6452718Z [7330/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-04-25T04:31:39.8228004Z [7331/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-04-25T04:31:40.0437046Z [7332/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-04-25T04:31:40.3948167Z [7333/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-04-25T04:31:40.5859498Z [7334/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-04-25T04:31:40.6268257Z [7335/7581] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-04-25T04:31:40.8908658Z [7336/7581] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-04-25T04:31:41.0674672Z [7337/7581] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-04-25T04:31:41.1595644Z [7338/7581] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cuda.cpp.obj 2025-04-25T04:31:41.2141449Z [7339/7581] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-04-25T04:31:41.2225063Z [7340/7581] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-04-25T04:31:43.8473781Z [7341/7581] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-04-25T04:31:44.2796087Z [7342/7581] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooAsyncTest.dir\ProcessGroupGlooAsyncTest.cpp.obj 2025-04-25T04:31:44.6254099Z [7343/7581] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-04-25T04:31:44.7013290Z [7344/7581] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-04-25T04:31:44.8054493Z [7345/7581] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-04-25T04:31:44.9325997Z [7346/7581] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-04-25T04:31:44.9596584Z [7347/7581] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-04-25T04:31:45.3331306Z [7348/7581] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-04-25T04:31:47.2366268Z [7349/7581] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-04-25T04:31:47.8571763Z [7350/7581] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-04-25T04:31:48.0106563Z [7351/7581] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-04-25T04:31:48.1440336Z [7352/7581] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-04-25T04:31:48.2494793Z [7353/7581] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-04-25T04:31:48.2679760Z [7354/7581] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-04-25T04:31:49.1227966Z [7355/7581] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-04-25T04:31:50.7302403Z [7356/7581] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-04-25T04:31:51.3331313Z [7357/7581] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-04-25T04:31:51.5527671Z [7358/7581] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-04-25T04:31:51.6278951Z [7359/7581] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-04-25T04:31:51.6834406Z [7360/7581] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-04-25T04:31:52.1997548Z [7361/7581] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-04-25T04:31:52.7827602Z [7362/7581] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-04-25T04:31:54.2489288Z [7363/7581] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-04-25T04:31:54.7248269Z [7364/7581] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-04-25T04:31:55.0875189Z [7365/7581] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-04-25T04:31:55.1540817Z [7366/7581] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-04-25T04:31:55.2045310Z [7367/7581] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-04-25T04:31:55.8886953Z [7368/7581] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-04-25T04:31:56.2919398Z [7369/7581] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-04-25T04:31:57.7763666Z [7370/7581] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-04-25T04:31:58.1447205Z [7371/7581] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-04-25T04:31:58.4174966Z [7372/7581] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-04-25T04:31:58.5065782Z [7373/7581] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-04-25T04:31:58.6188838Z [7374/7581] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-04-25T04:31:59.0366810Z [7375/7581] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-04-25T04:31:59.7758939Z [7376/7581] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-04-25T04:32:01.2750756Z [7377/7581] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-04-25T04:32:01.5608164Z [7378/7581] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-04-25T04:32:01.9619410Z [7379/7581] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-04-25T04:32:01.9979961Z [7380/7581] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-04-25T04:32:02.0571693Z [7381/7581] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-04-25T04:32:02.3284678Z [7382/7581] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-04-25T04:32:02.3810344Z [7383/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-04-25T04:32:03.2247586Z [7384/7581] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-04-25T04:32:03.3956600Z [7385/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-04-25T04:32:03.6097101Z [7386/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-04-25T04:32:03.9913987Z [7387/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-04-25T04:32:04.2329556Z [7388/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-04-25T04:32:04.2494945Z [7389/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-04-25T04:32:04.6586443Z [7390/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-04-25T04:32:04.7216294Z [7391/7581] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-04-25T04:32:04.9887435Z [7392/7581] Building CXX object test_api\CMakeFiles\test_api.dir\parallel.cpp.obj 2025-04-25T04:32:05.0283419Z [7393/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-04-25T04:32:05.2542841Z [7394/7581] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-04-25T04:32:05.2754513Z [7395/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-04-25T04:32:05.5220147Z [7396/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-04-25T04:32:05.7963334Z [7397/7581] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-04-25T04:32:08.1515424Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-04-25T04:32:08.1516549Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-04-25T04:32:08.1517480Z [7398/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-04-25T04:32:08.3432002Z [7399/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-04-25T04:32:08.4801553Z [7400/7581] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-04-25T04:32:08.7487029Z [7401/7581] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-04-25T04:32:09.1585032Z [7402/7581] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-04-25T04:32:09.1716439Z [7403/7581] Linking CXX static library lib\gmock_main.lib 2025-04-25T04:32:09.3541270Z [7404/7581] Linking CXX static library lib\benchmark_main.lib 2025-04-25T04:32:09.3572745Z [7405/7581] Linking CXX static library lib\fmt.lib 2025-04-25T04:32:09.5252915Z [7406/7581] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-04-25T04:32:09.8991942Z [7407/7581] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-04-25T04:32:10.9023185Z [7408/7581] Linking C static library lib\cpuinfo_internals.lib 2025-04-25T04:32:13.8584050Z [7409/7581] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-04-25T04:32:13.8595540Z [7410/7581] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-04-25T04:32:13.8606032Z [7411/7581] Linking CXX executable bin\c10_Scalar_test.exe 2025-04-25T04:32:13.8615564Z [7412/7581] Linking CXX executable bin\c10_Device_test.exe 2025-04-25T04:32:13.8626131Z [7413/7581] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-04-25T04:32:14.1238670Z [7414/7581] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-04-25T04:32:14.1250418Z [7415/7581] Linking CXX executable bin\c10_SymInt_test.exe 2025-04-25T04:32:14.1339633Z [7416/7581] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-04-25T04:32:14.1457669Z [7417/7581] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-04-25T04:32:14.2176333Z [7418/7581] Linking CXX static library lib\libprotobuf-lite.lib 2025-04-25T04:32:14.2582712Z [7419/7581] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-04-25T04:32:14.5441810Z [7420/7581] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-04-25T04:32:14.5452684Z [7421/7581] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-04-25T04:32:14.5753201Z [7422/7581] Linking CXX executable bin\c10_cow_test.exe 2025-04-25T04:32:14.5877561Z [7423/7581] Linking CXX executable bin\c10_Bitset_test.exe 2025-04-25T04:32:14.5907395Z [7424/7581] Linking CXX executable bin\c10_Half_test.exe 2025-04-25T04:32:14.6111376Z [7425/7581] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-04-25T04:32:15.0073737Z [7426/7581] Linking CXX executable bin\c10_Synchronized_test.exe 2025-04-25T04:32:15.0095079Z [7427/7581] Linking CXX executable bin\c10_LeftRight_test.exe 2025-04-25T04:32:15.0260968Z [7428/7581] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-04-25T04:32:15.0271072Z [7429/7581] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-04-25T04:32:15.0924010Z [7430/7581] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-04-25T04:32:15.0937079Z [7431/7581] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-04-25T04:32:15.3500611Z [7432/7581] Linking CXX executable bin\c10_bfloat16_test.exe 2025-04-25T04:32:15.3630571Z [7433/7581] Linking CXX executable bin\c10_accumulate_test.exe 2025-04-25T04:32:15.4329076Z [7434/7581] Linking CXX executable bin\c10_TypeList_test.exe 2025-04-25T04:32:15.4342076Z [7435/7581] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-04-25T04:32:15.4353111Z [7436/7581] Linking CXX executable bin\c10_complex_math_test.exe 2025-04-25T04:32:15.4393969Z [7437/7581] Linking CXX executable bin\c10_bit_cast_test.exe 2025-04-25T04:32:15.6312636Z [7438/7581] Linking CXX executable bin\c10_error_test.exe 2025-04-25T04:32:15.6397740Z [7439/7581] Linking CXX executable bin\c10_complex_test.exe 2025-04-25T04:32:15.6621088Z [7440/7581] Linking CXX executable bin\c10_generic_math_test.exe 2025-04-25T04:32:15.6996000Z [7441/7581] Linking CXX executable bin\c10_exception_test.exe 2025-04-25T04:32:15.7216911Z [7442/7581] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-04-25T04:32:15.7436358Z [7443/7581] Linking CXX executable bin\c10_flags_test.exe 2025-04-25T04:32:15.8521511Z [7444/7581] Linking CXX executable bin\c10_irange_test.exe 2025-04-25T04:32:15.8715298Z [7445/7581] Linking CXX executable bin\c10_lazy_test.exe 2025-04-25T04:32:15.8740705Z [7446/7581] Linking CXX executable bin\c10_logging_test.exe 2025-04-25T04:32:15.9495471Z [7447/7581] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-04-25T04:32:15.9844447Z [7448/7581] Linking CXX executable bin\c10_optional_test.exe 2025-04-25T04:32:16.0367767Z [7449/7581] Linking CXX executable bin\c10_registry_test.exe 2025-04-25T04:32:16.0514920Z [7450/7581] Linking CXX executable bin\c10_ssize_test.exe 2025-04-25T04:32:16.0549200Z [7451/7581] Linking CXX executable bin\c10_string_util_test.exe 2025-04-25T04:32:16.1148313Z [7452/7581] Linking CXX executable bin\c10_small_vector_test.exe 2025-04-25T04:32:16.1320856Z [7453/7581] Linking CXX executable bin\c10_string_view_test.exe 2025-04-25T04:32:16.3390886Z [7454/7581] Linking CXX executable bin\c10_tempfile_test.exe 2025-04-25T04:32:16.4814428Z [7455/7581] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-04-25T04:32:16.6124569Z [7456/7581] Linking CXX executable bin\c10_typeid_test.exe 2025-04-25T04:32:17.6534914Z [7457/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_from_2_processes.exe 2025-04-25T04:32:17.6546190Z [7458/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_stream.exe 2025-04-25T04:32:17.6681069Z [7459/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_1_var_test.exe 2025-04-25T04:32:17.6692464Z [7460/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe 2025-04-25T04:32:17.6702545Z [7461/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe 2025-04-25T04:32:17.6712736Z [7462/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe 2025-04-25T04:32:17.8299191Z [7463/7581] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-04-25T04:32:17.8337484Z [7464/7581] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-04-25T04:32:17.8654557Z [7465/7581] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe 2025-04-25T04:32:17.8748602Z [7466/7581] Linking C shared library bin\torch_global_deps.dll 2025-04-25T04:32:18.1111070Z [7467/7581] Linking C executable sleef\bin\addSuffix.exe 2025-04-25T04:32:18.1120435Z [7468/7581] Linking CXX executable bin\c10_cuda_CUDATest.exe 2025-04-25T04:32:18.2749242Z [7469/7581] Linking CXX shared library bin\caffe2_nvrtc.dll 2025-04-25T04:32:20.2624212Z [7470/7581] Linking C static library lib\microkernels-all.lib 2025-04-25T04:32:23.2352770Z [7471/7581] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-04-25T04:43:45.2818116Z [7472/7581] Linking CXX shared library bin\torch_cpu.dll 2025-04-25T04:43:45.4173826Z [7473/7581] Linking CXX static library lib\unbox_lib.lib 2025-04-25T04:43:45.5640628Z [7474/7581] Linking CXX executable bin\BackoffTest.exe 2025-04-25T04:43:45.5784788Z [7475/7581] Linking CXX executable bin\TCPStoreTest.exe 2025-04-25T04:43:45.7168137Z [7476/7581] Linking CXX executable bin\FileStoreTest.exe 2025-04-25T04:43:45.7435183Z [7477/7581] Linking CXX executable bin\test_edge_op_registration.exe 2025-04-25T04:44:37.6794066Z [7478/7581] Linking CXX shared library bin\torch_cuda.dll 2025-04-25T04:44:37.8383229Z [7479/7581] Linking CXX shared library bin\torch.dll 2025-04-25T04:44:38.0001838Z [7480/7581] Linking CXX shared library bin\c10d_cuda_test.dll 2025-04-25T04:44:38.1138021Z [7481/7581] Linking CXX shared library bin\shm.dll 2025-04-25T04:44:38.3390519Z [7482/7581] Linking CXX executable bin\Dimname_test.exe 2025-04-25T04:44:38.5208964Z [7483/7581] Linking CXX shared library bin\jitbackend_test.dll 2025-04-25T04:44:38.7384296Z [7484/7581] Linking CXX executable bin\Dict_test.exe 2025-04-25T04:44:38.9698772Z [7485/7581] Linking CXX shared library bin\backend_with_compiler.dll 2025-04-25T04:44:39.0341312Z [7486/7581] Linking CXX executable bin\NamedTensor_test.exe 2025-04-25T04:44:39.0468047Z [7487/7581] Linking CXX executable bin\MaybeOwned_test.exe 2025-04-25T04:44:39.3311160Z [7488/7581] Linking CXX executable bin\apply_utils_test.exe 2025-04-25T04:44:39.4204122Z [7489/7581] Linking CXX executable bin\atest.exe 2025-04-25T04:44:39.5127639Z [7490/7581] Linking CXX executable bin\broadcast_test.exe 2025-04-25T04:44:39.7633709Z [7491/7581] Linking CXX executable bin\cpu_allocator_test.exe 2025-04-25T04:44:39.7805530Z [7492/7581] Linking CXX executable bin\basic.exe 2025-04-25T04:44:40.0198933Z [7493/7581] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-04-25T04:44:40.0310473Z [7494/7581] Linking CXX executable bin\cpu_generator_test.exe 2025-04-25T04:44:40.3091956Z [7495/7581] Linking CXX executable bin\dlconvertor_test.exe 2025-04-25T04:44:40.4666707Z [7496/7581] Linking CXX executable bin\half_test.exe 2025-04-25T04:44:40.7373265Z [7497/7581] Linking CXX executable bin\extension_backend_test.exe 2025-04-25T04:44:40.9500298Z [7498/7581] Linking CXX executable bin\lazy_tensor_test.exe 2025-04-25T04:44:41.0357554Z [7499/7581] Linking CXX executable bin\cpu_rng_test.exe 2025-04-25T04:44:41.0729899Z [7500/7581] Linking CXX executable bin\math_kernel_test.exe 2025-04-25T04:44:41.1553635Z [7501/7581] Linking CXX executable bin\ivalue_test.exe 2025-04-25T04:44:41.3921552Z [7502/7581] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-04-25T04:44:41.4289911Z [7503/7581] Linking CXX executable bin\memory_format_test.exe 2025-04-25T04:44:41.4408610Z [7504/7581] Linking CXX executable bin\memory_overlapping_test.exe 2025-04-25T04:44:41.4828293Z [7505/7581] Linking CXX executable bin\native_test.exe 2025-04-25T04:44:41.7461466Z [7506/7581] Linking CXX executable bin\operator_name_test.exe 2025-04-25T04:44:41.7523712Z [7507/7581] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-04-25T04:44:41.7594957Z [7508/7581] Linking CXX executable bin\operators_test.exe 2025-04-25T04:44:41.7839341Z [7509/7581] Linking CXX executable bin\pow_test.exe 2025-04-25T04:44:42.0403937Z [7510/7581] Linking CXX executable bin\reduce_ops_test.exe 2025-04-25T04:44:42.0497835Z [7511/7581] Linking CXX executable bin\quantized_test.exe 2025-04-25T04:44:42.0610846Z [7512/7581] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-04-25T04:44:42.0843858Z [7513/7581] Linking CXX executable bin\scalar_tensor_test.exe 2025-04-25T04:44:42.3558011Z [7514/7581] Linking CXX executable bin\scalar_test.exe 2025-04-25T04:44:42.3970892Z [7515/7581] Linking CXX executable bin\stride_properties_test.exe 2025-04-25T04:44:42.4158757Z [7516/7581] Linking CXX executable bin\tensor_iterator_test.exe 2025-04-25T04:44:42.5104601Z [7517/7581] Linking CXX executable bin\StorageUtils_test.exe 2025-04-25T04:44:42.6558326Z [7518/7581] Linking CXX executable bin\test_parallel.exe 2025-04-25T04:44:42.6929341Z [7519/7581] Linking CXX executable bin\thread_init_test.exe 2025-04-25T04:44:42.7352046Z [7520/7581] Linking CXX executable bin\type_ptr_test.exe 2025-04-25T04:44:42.8034175Z [7521/7581] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-04-25T04:44:42.8128563Z [7522/7581] Linking CXX executable bin\type_test.exe 2025-04-25T04:44:42.8652110Z [7523/7581] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-04-25T04:44:42.9576160Z [7524/7581] Linking CXX executable bin\undefined_tensor_test.exe 2025-04-25T04:44:42.9726919Z [7525/7581] Linking CXX executable bin\verify_api_visibility.exe 2025-04-25T04:44:43.0178852Z [7526/7581] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-04-25T04:44:43.0904880Z [7527/7581] Linking CXX executable bin\legacy_vmap_test.exe 2025-04-25T04:44:43.1475539Z [7528/7581] Linking CXX executable bin\weakref_test.exe 2025-04-25T04:44:43.1565773Z [7529/7581] Linking CXX executable bin\wrapdim_test.exe 2025-04-25T04:44:43.1756381Z [7530/7581] Linking CXX executable bin\xla_tensor_test.exe 2025-04-25T04:44:43.2754724Z [7531/7581] Linking CXX executable bin\IListRef_test.exe 2025-04-25T04:44:43.3248494Z [7532/7581] Linking CXX executable bin\List_test.exe 2025-04-25T04:44:43.3435040Z [7533/7581] Linking CXX executable bin\KernelFunction_test.exe 2025-04-25T04:44:43.5000557Z [7534/7581] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-04-25T04:44:43.5804452Z [7535/7581] Linking CXX executable bin\kernel_lambda_test.exe 2025-04-25T04:44:43.5817201Z [7536/7581] Linking CXX executable bin\kernel_function_test.exe 2025-04-25T04:44:43.5854753Z [7537/7581] Linking CXX executable bin\kernel_stackbased_test.exe 2025-04-25T04:44:43.5950648Z [7538/7581] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-04-25T04:44:43.6067255Z [7539/7581] Linking CXX executable bin\CppSignature_test.exe 2025-04-25T04:44:43.6284614Z [7540/7581] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-04-25T04:44:43.8366731Z [7541/7581] Linking CXX executable bin\inline_container_test.exe 2025-04-25T04:44:43.9410296Z [7542/7581] Linking CXX executable bin\backend_fallback_test.exe 2025-04-25T04:44:43.9527396Z [7543/7581] Linking CXX executable bin\cuda_allocator_test.exe 2025-04-25T04:44:43.9647625Z [7544/7581] Linking CXX executable bin\op_allowlist_test.exe 2025-04-25T04:44:43.9970080Z [7545/7581] Linking CXX executable bin\cuda_atomic_ops_test.exe 2025-04-25T04:44:44.0232915Z [7546/7581] Linking CXX executable bin\cuda_apply_test.exe 2025-04-25T04:44:44.1614581Z [7547/7581] Linking CXX executable bin\cuda_caching_host_allocator_test.exe 2025-04-25T04:44:44.1792882Z [7548/7581] Linking CXX executable bin\op_registration_test.exe 2025-04-25T04:44:44.3552173Z [7549/7581] Linking CXX executable bin\cuda_complex_test.exe 2025-04-25T04:44:44.3711219Z [7550/7581] Linking CXX executable bin\cuda_cub_test.exe 2025-04-25T04:44:44.3752063Z [7551/7581] Linking CXX executable bin\cuda_complex_math_test.exe 2025-04-25T04:44:44.4005543Z [7552/7581] Linking CXX executable bin\cuda_device_test.exe 2025-04-25T04:44:44.4024621Z [7553/7581] Linking CXX executable bin\cuda_distributions_test.exe 2025-04-25T04:44:44.4781358Z [7554/7581] Linking CXX executable bin\cuda_generator_test.exe 2025-04-25T04:44:44.5415463Z [7555/7581] Linking CXX executable bin\cuda_dlconvertor_test.exe 2025-04-25T04:44:44.6822549Z [7556/7581] Linking CXX executable bin\cuda_packedtensoraccessor_test.exe 2025-04-25T04:44:44.6976553Z [7557/7581] Linking CXX executable bin\cuda_reportMemoryUsage_test.exe 2025-04-25T04:44:44.7405363Z [7558/7581] Linking CXX executable bin\cuda_allocatorTraceTracker_test.exe 2025-04-25T04:44:44.8096432Z [7559/7581] Linking CXX executable bin\cuda_integer_divider_test.exe 2025-04-25T04:44:44.8156123Z [7560/7581] Linking CXX executable bin\cuda_half_test.exe 2025-04-25T04:44:44.8288381Z [7561/7581] Linking CXX executable bin\cuda_optional_test.exe 2025-04-25T04:44:44.8530299Z [7562/7581] Linking CXX executable bin\cuda_stream_test.exe 2025-04-25T04:44:44.9958842Z [7563/7581] Linking CXX executable bin\cuda_cudnn_test.exe 2025-04-25T04:44:45.0222578Z [7564/7581] Linking CXX executable bin\cuda_vectorized_test.exe 2025-04-25T04:44:45.0653169Z [7565/7581] Linking CXX shared library bin\torchbind_test.dll 2025-04-25T04:44:45.0984433Z [7566/7581] Linking CXX shared library bin\aoti_custom_ops.dll 2025-04-25T04:44:45.1090757Z [7567/7581] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-04-25T04:44:45.3200442Z [7568/7581] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-04-25T04:44:45.3602578Z [7569/7581] Linking CXX executable bin\parallel_benchmark.exe 2025-04-25T04:44:45.3632983Z [7570/7581] Linking CXX executable bin\ProcessGroupGlooAsyncTest.exe 2025-04-25T04:44:45.7258515Z [7571/7581] Linking CXX executable bin\test_lazy.exe 2025-04-25T04:44:45.8171784Z [7572/7581] Linking CXX executable bin\test_tensorexpr.exe 2025-04-25T04:44:46.6043589Z [7573/7581] Linking CXX executable bin\test_jit.exe 2025-04-25T04:44:46.7638730Z [7574/7581] Linking CXX executable bin\test_api.exe 2025-04-25T04:44:58.1238946Z [7575/7581] Linking CXX shared library bin\torch_python.dll 2025-04-25T04:44:58.3043275Z [7576/7581] Linking CXX shared module functorch\functorch.pyd 2025-04-25T04:44:58.3072454Z [7577/7581] Linking CXX shared library bin\nnapi_backend.dll 2025-04-25T04:44:58.3081337Z [7577/7581] Install the project... 2025-04-25T04:44:58.4027516Z -- Install configuration: "Release" 2025-04-25T04:46:01.8291415Z -- Building version 2.8.0a0+gitb68c0ef 2025-04-25T04:46:01.8291823Z -- Checkout nccl release tag: v2.26.2-1 2025-04-25T04:46:01.8298427Z cmake -GNinja -DBUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 -DBUILD_PYTHON=True -DBUILD_TEST=True -DBUILD_TYPE=release -DBUILD_WHEEL=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe -DCMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_GENERATOR=Ninja -DCMAKE_INSTALL_PREFIX=C:\actions-runner\_work\pytorch\pytorch\torch -DCMAKE_PREFIX_PATH=C:\Jenkins\Miniconda3\Lib\site-packages -DCUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat -DCUDNN_LIBRARY=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 -DPython_EXECUTABLE=C:\Jenkins\Miniconda3\python.exe -DTORCH_BUILD_VERSION=2.8.0a0+gitb68c0ef -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=1 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:46:01.8303123Z cmake --build . --target install --config Release -j 8 2025-04-25T04:46:01.8303486Z running bdist_wheel 2025-04-25T04:46:09.6969280Z running build 2025-04-25T04:46:09.6969778Z running build_py 2025-04-25T04:46:09.7080385Z creating build\lib.win-amd64-cpython-39\functorch 2025-04-25T04:46:09.7085151Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-04-25T04:46:09.7979111Z creating build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:09.7979649Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:09.8646210Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:09.9353089Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:09.9381152Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.0331589Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.1345907Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.1358124Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.1369416Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.1412093Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.2260450Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.3277553Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.3291151Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.3297813Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.4081903Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.4701280Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.4712600Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.4724613Z copying torch\_deploy.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.4735125Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.4741248Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.5623503Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.6714218Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.6726239Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.6750418Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.6761881Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.7761041Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.7777447Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.8864280Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.8877163Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.9515036Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.9537819Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.9550492Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:10.9556860Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0589405Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0647056Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0664435Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0669690Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0814692Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0835877Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0843775Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0849513Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0861217Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0879000Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0885359Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.0895835Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:11.1557240Z creating build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.1560377Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.2273143Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.2293661Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.2341874Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.2358454Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3164982Z copying torchgen\gen_executorch.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3186953Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3207927Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3224460Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3234636Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3245576Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3256289Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3303562Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3323834Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3338418Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3348405Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-04-25T04:46:11.3356177Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-04-25T04:46:11.3359344Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-04-25T04:46:11.3372049Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3375367Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3385719Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3395737Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3406028Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3425125Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3435968Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3451426Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3457414Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3467097Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-04-25T04:46:11.3479673Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:46:11.3483918Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:46:11.3495290Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:46:11.3506268Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-04-25T04:46:11.3514176Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:46:11.3522256Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:46:11.3528313Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:46:11.3533986Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-04-25T04:46:11.3540869Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-04-25T04:46:11.3543801Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-04-25T04:46:11.3550157Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-04-25T04:46:11.3553424Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-04-25T04:46:11.3560342Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-04-25T04:46:11.3563761Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-04-25T04:46:11.3571034Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-04-25T04:46:11.3578870Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-04-25T04:46:11.3585764Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-04-25T04:46:11.3588963Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-04-25T04:46:11.3596414Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-04-25T04:46:11.3599567Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-04-25T04:46:11.3610167Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-04-25T04:46:11.3621924Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:46:11.3625161Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:46:11.3641144Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:46:11.3657125Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-04-25T04:46:11.3696566Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-04-25T04:46:11.3699451Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-04-25T04:46:11.3714959Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.3718177Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4495064Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4507788Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4527187Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4562179Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4597028Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4608543Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4624229Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4650012Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4660962Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4681872Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4687779Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-04-25T04:46:11.4706310Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-04-25T04:46:11.4709762Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-04-25T04:46:11.4721377Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:46:11.4724953Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:46:11.4737536Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:46:11.4748052Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-04-25T04:46:11.4765035Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-04-25T04:46:11.4768326Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-04-25T04:46:11.4779623Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-04-25T04:46:11.4786537Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-04-25T04:46:11.4789725Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-04-25T04:46:11.4804276Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4807392Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4817287Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4821883Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4834061Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4849906Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4861481Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4886738Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4899263Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4909313Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4920167Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4930474Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4936836Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4949031Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4969053Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4979214Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.4996574Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.5013424Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.5028228Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-04-25T04:46:11.5070308Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.5073779Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.5919760Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.5931057Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.6651093Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.6665208Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.6706388Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.7489266Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.8564053Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.8570842Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.9283688Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:11.9302951Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.0336056Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.1287265Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.1298390Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.1309051Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.2627086Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.2657833Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.2670110Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.2690495Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-04-25T04:46:12.2710437Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2714016Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2724654Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2734961Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2745328Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2761376Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2772995Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2786871Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2804119Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2815434Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2825903Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.2840279Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3819137Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3829962Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3841000Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3851298Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3861895Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3873466Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3883726Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3894175Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3904484Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3914972Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3926555Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3939257Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3956098Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3966846Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3976392Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3987770Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.3998426Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4009313Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4020767Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4035631Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4046985Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4063253Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4073969Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4087381Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4098267Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4108134Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4118648Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4129531Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4140631Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4151791Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4163602Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4186626Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4196946Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4208017Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4223582Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4233428Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4244618Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-04-25T04:46:12.4260274Z creating build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4263773Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4270271Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4284122Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4295121Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4326147Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4350731Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4366857Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4397155Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4412863Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4422947Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4434261Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4444284Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4459128Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4494160Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4504350Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4519782Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4525607Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-04-25T04:46:12.4542520Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-04-25T04:46:12.4545600Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-04-25T04:46:12.4572016Z creating build\lib.win-amd64-cpython-39\torch\func 2025-04-25T04:46:12.4575013Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-04-25T04:46:12.4582167Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-04-25T04:46:12.4585225Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-04-25T04:46:12.4620905Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.4624294Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.5194238Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.5200907Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6300435Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6324569Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6345169Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6362162Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6383488Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6399502Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6416278Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6428263Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6438638Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6449424Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6459733Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6476285Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6487708Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6502040Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6527456Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6537455Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-04-25T04:46:12.6554023Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6557069Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6574212Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6597091Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6607031Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6622248Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6633852Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6644162Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6654060Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6664833Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6675576Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6686754Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6698015Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6712527Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6718546Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6729907Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6740376Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6750203Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6756789Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6766924Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6776933Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6798057Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6827011Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6838019Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6864234Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6874315Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6899751Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:12.6912868Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-04-25T04:46:12.6916074Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-04-25T04:46:12.6961631Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:46:12.6970131Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:46:12.6996941Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:46:12.8592421Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-04-25T04:46:12.8604851Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-04-25T04:46:12.8608046Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-04-25T04:46:12.8619260Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:46:12.8622605Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:46:12.8633361Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:46:12.8642980Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-04-25T04:46:12.8654657Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:46:12.8658080Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:46:12.8667696Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:46:12.8680936Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-04-25T04:46:12.8693766Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8696968Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8706715Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8716922Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8736216Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8748368Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8762358Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-04-25T04:46:12.8773459Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-04-25T04:46:12.8776337Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-04-25T04:46:12.8795042Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:12.8798234Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:12.8807678Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:12.8817413Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:12.9802579Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:12.9813396Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:12.9833871Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:13.0958757Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:13.0994757Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:13.1009981Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.1013377Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2084885Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2119056Z copying torch\onnx\symbolic_caffe2.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2795084Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2834474Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2856080Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2882185Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2893768Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2916013Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2927439Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2938037Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2949129Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2960447Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2976720Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2983114Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.2993562Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.3005328Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.3016297Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.4097569Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.4137917Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.4171229Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5172891Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5183902Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5194427Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5204819Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5215441Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5226261Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-04-25T04:46:13.5246268Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5249940Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5264985Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5280796Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5301646Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5317180Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5327816Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5342703Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5361810Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5395994Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5416568Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5441972Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5457964Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5474098Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5492190Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5507902Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5519006Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5545948Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5566450Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5574305Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-04-25T04:46:13.5587911Z creating build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5591291Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5602192Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5611932Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5625822Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5637624Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5665631Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5713616Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5714314Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5715039Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5719251Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5729096Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5738720Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5750068Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5760019Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5770776Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-04-25T04:46:13.5778856Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5782450Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5792510Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5814246Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5820307Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5845294Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5865488Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5876722Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-04-25T04:46:13.5890441Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5893856Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5904208Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5914426Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5928066Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5946656Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5957079Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5967380Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5977169Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5987403Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.5997575Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6003487Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6009429Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6020065Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6030179Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6040834Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6069960Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-04-25T04:46:13.6082819Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-04-25T04:46:13.6085713Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-04-25T04:46:13.6098525Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6101968Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6118905Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6130063Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6147302Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6182744Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6345916Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-04-25T04:46:13.6363808Z creating build\lib.win-amd64-cpython-39\torch\special 2025-04-25T04:46:13.6366945Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-04-25T04:46:13.6391542Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:46:13.6395057Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:46:13.6425126Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:46:13.6436438Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:46:13.6446310Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-04-25T04:46:13.6464622Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.6467960Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.7466730Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.8237720Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.8267809Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.8291715Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.8298284Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.8357152Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.9088981Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.9100985Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.9111534Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:13.9129669Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0201596Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0232846Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0243993Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0250127Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0261624Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0273169Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0945667Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0957259Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0967663Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0978950Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.0999071Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1010230Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1024501Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1034915Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1045122Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1065455Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1079832Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1088870Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1099393Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1109638Z copying torch\utils\_freeze.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1127463Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1137629Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1148070Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1158392Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1164548Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1175672Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1231498Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1260802Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1271141Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1277125Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1288468Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1302223Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1311794Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1321832Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:14.1334833Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1337986Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1348799Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1362822Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1373133Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1383327Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1392953Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-04-25T04:46:14.1416946Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-04-25T04:46:14.1420129Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-04-25T04:46:14.1432079Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:46:14.1435415Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:46:14.1446858Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:46:14.1465962Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-04-25T04:46:14.1473359Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:46:14.1475958Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:46:14.1545380Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:46:14.1557219Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:46:14.1571533Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-04-25T04:46:14.1589227Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-04-25T04:46:14.1592778Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-04-25T04:46:14.1603022Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-04-25T04:46:14.1617413Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.1621688Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.1633838Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.1663071Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.1679099Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2780144Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2821136Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2831425Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2857696Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2868795Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2927384Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2953832Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2964224Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2975242Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.2991644Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3008577Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3020081Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3030187Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3060569Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3077028Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3088594Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3101175Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3115889Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3128574Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3141491Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.3151175Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4144593Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4168556Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4169483Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4179108Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4195246Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4244879Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4262153Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4273048Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4287567Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4303716Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4325222Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4342850Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4943691Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4955714Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.4971636Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.5003976Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.5018743Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.5074307Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.5085238Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.6526210Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.6542089Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-04-25T04:46:14.6556998Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.6560708Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.7599606Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.7611111Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.7635973Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.7655504Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.8623725Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.8654270Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.8670567Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.8682851Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-04-25T04:46:14.8700364Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.8704827Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9839559Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9855206Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9871717Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9885699Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9896541Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9908163Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9918662Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9929681Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9940884Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9970808Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9982544Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:14.9997984Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0013550Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0049091Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0060828Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0087858Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0098520Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0114755Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0124682Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0140812Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-04-25T04:46:15.0156605Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0159999Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0171407Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0187018Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0208151Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0218531Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0235087Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0249759Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0260794Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0271542Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0295136Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0304940Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0316072Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0331528Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0342549Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0353608Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0363309Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0384575Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0395310Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0405398Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.0416006Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.1178440Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.1198980Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.1222751Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.1234019Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.1244510Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-04-25T04:46:15.1266569Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1289947Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1304211Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1315566Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1335815Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1355933Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1367202Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.1382897Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.2057108Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.2650607Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.2661981Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.2674351Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3272841Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3325317Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3337624Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3355330Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3366188Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3392550Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3403937Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3429709Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3440732Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3484943Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3502100Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3512476Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3532068Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3552247Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3568867Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3580754Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3592788Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3602807Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3613945Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.3624618Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.4103271Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.5274274Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.5337579Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.5343820Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.5356011Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.5366564Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.6240035Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.6251640Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.6268119Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7182799Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7200340Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7211756Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7233381Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7263383Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7278828Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7299048Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7309757Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7326092Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7360787Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7372630Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.7390588Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8167302Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8203594Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8226187Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8245287Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8256429Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8272798Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8282735Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8293002Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8304435Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8340918Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8353397Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8378598Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8393478Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:15.8408485Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8432072Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8442439Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8452537Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8458263Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8467925Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8481401Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8496444Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8502438Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8508639Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8518387Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8524475Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-04-25T04:46:15.8537373Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8540505Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8551511Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8577088Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8588355Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8605421Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8616534Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8632668Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8642582Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8654293Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8670198Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-04-25T04:46:15.8678388Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:46:15.8681532Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:46:15.8691317Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:46:15.8709774Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:46:15.8723162Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:46:15.8738334Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-04-25T04:46:15.8753631Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8756759Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8767851Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8791966Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8802624Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8812795Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8838034Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8849167Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8860252Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8870375Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8896802Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8902882Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8918550Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8930257Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8941115Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8952634Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8962688Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8973932Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-04-25T04:46:15.8986674Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:46:15.8989313Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:46:15.9000990Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:46:15.9011496Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:46:15.9021013Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:46:15.9032853Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-04-25T04:46:15.9073686Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-04-25T04:46:15.9076705Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-04-25T04:46:15.9092613Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-04-25T04:46:15.9128922Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:46:15.9131737Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:46:15.9147269Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:46:15.9157225Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-04-25T04:46:15.9274194Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:46:15.9281699Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:46:15.9293017Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:46:15.9303716Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-04-25T04:46:15.9314995Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9318203Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9340542Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9388681Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9406388Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9442461Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9481628Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9492858Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9504271Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-04-25T04:46:15.9512105Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-04-25T04:46:15.9515159Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-04-25T04:46:15.9521478Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-04-25T04:46:15.9525114Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-04-25T04:46:15.9535780Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:46:15.9538998Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:46:16.0364224Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:46:16.0376267Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-04-25T04:46:16.0383237Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-04-25T04:46:16.0386619Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-04-25T04:46:16.1279740Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-04-25T04:46:16.1290308Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.1294026Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.1802274Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.1813804Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.1829497Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3310876Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3327575Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3339513Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3355382Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3374618Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3395859Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3407303Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3418799Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3429109Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3439494Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3455450Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3470372Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3481529Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3493085Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-04-25T04:46:16.3505923Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-04-25T04:46:16.3509474Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-04-25T04:46:16.3520963Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-04-25T04:46:16.3524013Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-04-25T04:46:16.3531413Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-04-25T04:46:16.3534508Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-04-25T04:46:16.3541716Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-04-25T04:46:16.3550248Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-04-25T04:46:16.3570045Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-04-25T04:46:16.3610851Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-04-25T04:46:16.3614188Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-04-25T04:46:16.3621706Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-04-25T04:46:16.3624980Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-04-25T04:46:16.3636098Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-04-25T04:46:16.3643825Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-04-25T04:46:16.3646699Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-04-25T04:46:16.3653734Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-04-25T04:46:16.3657619Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-04-25T04:46:16.3665291Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:46:16.3668648Z 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:46:16.3689860Z 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:46:16.3706920Z 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:46:16.3717509Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:46:16.3728943Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-04-25T04:46:16.3732388Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-04-25T04:46:16.3747254Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:46:16.3748079Z 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:46:16.3754925Z 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:46:16.3766707Z 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:46:16.3778420Z 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:46:16.3789013Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:46:16.3800649Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:46:16.3804135Z 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:46:16.3814345Z 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:46:16.3821483Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-04-25T04:46:16.3824504Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-04-25T04:46:16.3832349Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:46:16.3835562Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:46:16.3847046Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:46:16.3857938Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:46:16.3872033Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-04-25T04:46:16.3879320Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:46:16.3882583Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:46:16.3892732Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:46:16.3900054Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:46:16.3903398Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:46:16.3925541Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:46:16.3942111Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-04-25T04:46:16.3949241Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-04-25T04:46:16.3952504Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-04-25T04:46:16.3961262Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.3964533Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.3979802Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4077627Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4098867Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4112968Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4130061Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4141608Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4153603Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4165678Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4175272Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4186198Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-04-25T04:46:16.4198770Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-04-25T04:46:16.4206247Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-04-25T04:46:16.4214485Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:46:16.4217524Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:46:16.4233220Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:46:16.4244917Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:46:16.4275827Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:46:16.4284278Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4287683Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4299104Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4309469Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4327205Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4338351Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4349343Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:16.4357119Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:46:16.4360431Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:46:16.4378120Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:46:16.4388023Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-04-25T04:46:16.4395676Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:46:16.4398987Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:46:16.4409919Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:46:16.4418397Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.4421535Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.4437556Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5232244Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5247533Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5259745Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5297098Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5308826Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5326611Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5344770Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5355539Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-04-25T04:46:16.5362653Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:46:16.5366120Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:46:16.5377484Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:46:16.5387316Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:46:16.5401376Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-04-25T04:46:16.5408719Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:46:16.5416543Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:46:16.5427698Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:46:16.5437630Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:46:16.5452434Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:46:16.5466636Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-04-25T04:46:16.5472924Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-04-25T04:46:16.5476131Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-04-25T04:46:16.5482738Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:46:16.5486362Z 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:46:16.5503420Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:46:16.5509919Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:46:16.5513740Z 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:46:16.5525341Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:46:16.5533061Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:46:16.5545765Z 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:46:16.5557368Z 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:46:16.6766610Z 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:46:16.6803786Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:46:16.6811746Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6815234Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6826943Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6837675Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6852415Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6862760Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6872852Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6887687Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6897514Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:16.6905034Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-04-25T04:46:16.6908251Z 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:46:16.6915665Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-04-25T04:46:16.6919250Z 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:46:16.6930737Z 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:46:16.6940766Z 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:46:16.6953189Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.6956694Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.6973395Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7002767Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7016671Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7032180Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7037686Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7053263Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7067800Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7078195Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7089904Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7100480Z 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:46:16.7117410Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7128090Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-04-25T04:46:16.7142469Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7145661Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7171154Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7187896Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7199006Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7209671Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7224982Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7252195Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7258487Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7302962Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7303774Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7304547Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7331867Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7344078Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7355363Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7365511Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7387064Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7407525Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7427855Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7453011Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-04-25T04:46:16.7462224Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7465582Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7476276Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7490906Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7502085Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7517409Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7533639Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7553602Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7574530Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7590534Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7609963Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7621378Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-04-25T04:46:16.7629302Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7633079Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7643401Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7653885Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7669070Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7680418Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7709394Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7725049Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7745840Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7756127Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-04-25T04:46:16.7767262Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:46:16.7768100Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:46:16.7801438Z 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:46:16.7817654Z 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:46:16.7833431Z 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:46:16.7857325Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-04-25T04:46:16.7863927Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-04-25T04:46:16.7867474Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-04-25T04:46:16.7883871Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-04-25T04:46:16.7891720Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:46:16.7895073Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:46:16.7905055Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:46:16.7914537Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-04-25T04:46:16.7921824Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-04-25T04:46:16.7925422Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-04-25T04:46:16.7932691Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-04-25T04:46:16.7935706Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-04-25T04:46:16.7952694Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-04-25T04:46:16.7955822Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-04-25T04:46:16.7965225Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-04-25T04:46:16.7977263Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-04-25T04:46:16.7980451Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-04-25T04:46:16.7991867Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-04-25T04:46:16.7999904Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-04-25T04:46:16.8010060Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-04-25T04:46:16.8013119Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-04-25T04:46:16.8023919Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-04-25T04:46:16.8026897Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-04-25T04:46:16.8038211Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-04-25T04:46:16.8041462Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-04-25T04:46:16.8052777Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-04-25T04:46:16.8055914Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-04-25T04:46:16.8070375Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-04-25T04:46:16.8073567Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-04-25T04:46:16.8089642Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-04-25T04:46:16.8093081Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-04-25T04:46:16.8099832Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-04-25T04:46:16.8102991Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-04-25T04:46:16.8114775Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-04-25T04:46:16.8118070Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-04-25T04:46:16.8132147Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-04-25T04:46:16.8141188Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-04-25T04:46:16.8161224Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-04-25T04:46:16.8167544Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-04-25T04:46:16.8170978Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-04-25T04:46:16.8182534Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-04-25T04:46:16.8185734Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-04-25T04:46:16.8197265Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-04-25T04:46:16.8204334Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:46:16.8207117Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:46:16.8218352Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:46:16.8253628Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-04-25T04:46:16.8260194Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:46:16.8271861Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:46:16.8275381Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:46:16.8285404Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-04-25T04:46:16.8293857Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:46:16.8296765Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:46:16.8307872Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:46:16.8313858Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:46:16.8323860Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-04-25T04:46:16.8335648Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-04-25T04:46:16.8338822Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-04-25T04:46:16.8349892Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-04-25T04:46:16.8357015Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-04-25T04:46:16.8364377Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-04-25T04:46:16.8380546Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8384352Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8395483Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8415716Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8439302Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8455888Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8465664Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8471462Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8481694Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8492549Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8506913Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8522900Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8532265Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8547037Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8556793Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8593387Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8604262Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8621212Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8632603Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8648156Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8658635Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8673157Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8683556Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8693713Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8708394Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8718274Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8729442Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8740511Z copying torch\distributed\checkpoint\_hf_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8750889Z copying torch\distributed\checkpoint\_hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8762145Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8772573Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8784255Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8793502Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8811562Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8818521Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-04-25T04:46:16.8830231Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-04-25T04:46:16.8833008Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-04-25T04:46:16.8842926Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-04-25T04:46:16.8861511Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.8863886Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.8878756Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.8920843Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.8936539Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.8953700Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9678005Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9689267Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9699795Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9714244Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9763745Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9774258Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9816010Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9825803Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9862690Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9892911Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9907629Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9937371Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9948887Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9959994Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9971987Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9987808Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-04-25T04:46:16.9999635Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-04-25T04:46:17.0002916Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-04-25T04:46:17.0014614Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-04-25T04:46:17.0022300Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-04-25T04:46:17.0026077Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-04-25T04:46:17.0037266Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-04-25T04:46:17.0046882Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0050376Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0061300Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0071770Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0087682Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0098546Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0114243Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0125940Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0137413Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0147950Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0160831Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0171034Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0182870Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0194432Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0205145Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0235946Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0242411Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:17.0255875Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0260035Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0282046Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0332991Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0363094Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0379361Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0385194Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0412402Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0423756Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0434325Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0444618Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-04-25T04:46:17.0453236Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0456392Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0478326Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0497526Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0507540Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0523208Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0538431Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0549138Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0559321Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0570865Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0580777Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-04-25T04:46:17.0595230Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0598563Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0604737Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0622043Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0653259Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0670125Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0686463Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0701646Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0717948Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0733012Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0748507Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0765440Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0777705Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0789235Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0801660Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-04-25T04:46:17.0817927Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:46:17.0821572Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:46:17.0833231Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:46:17.0843504Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:46:17.0854725Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-04-25T04:46:17.0872838Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0875960Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0887620Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0897864Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0950287Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0960601Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0975936Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0989162Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-04-25T04:46:17.0996930Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-04-25T04:46:17.1000167Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-04-25T04:46:17.1007843Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-04-25T04:46:17.1010832Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-04-25T04:46:17.1017667Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-04-25T04:46:17.1020872Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-04-25T04:46:17.1052518Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:46:17.1056130Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:46:17.1061634Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:46:17.1067754Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-04-25T04:46:17.1080839Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1083948Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1094778Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1106026Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1122847Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1138430Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1150068Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1170836Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1182282Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1201065Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1222605Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1234599Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-04-25T04:46:17.1265460Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:46:17.1268849Z 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:46:17.1284456Z 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:46:17.1295204Z 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:46:17.1311695Z 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:46:17.1322407Z 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:46:17.1333195Z 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:46:17.1343638Z 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:46:17.1365620Z 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:46:17.1376760Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:46:17.1391803Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:46:17.1399951Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:46:17.1411198Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:46:17.1422116Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:46:17.1437429Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-04-25T04:46:17.1443705Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-04-25T04:46:17.1447136Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-04-25T04:46:17.1459099Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-04-25T04:46:17.1465272Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:46:17.1468692Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:46:17.1479452Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:46:17.1486510Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:46:17.1490012Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:46:17.1500305Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:46:17.1507239Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-04-25T04:46:17.1510774Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-04-25T04:46:17.1524954Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-04-25T04:46:17.1558221Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-04-25T04:46:17.1561396Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-04-25T04:46:17.1567706Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:46:17.1570869Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:46:17.1581316Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:46:17.1586959Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-04-25T04:46:17.1599017Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-04-25T04:46:17.1602233Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-04-25T04:46:17.1617470Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-04-25T04:46:17.1629652Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:46:17.1638472Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:46:17.1661212Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:46:17.1674996Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:46:17.1685460Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-04-25T04:46:17.1698813Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1702070Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1713880Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1726202Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1755465Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1777589Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1788786Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1800156Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1811883Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1822960Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1834090Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1846101Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1857056Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-04-25T04:46:17.1869823Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:46:17.1873368Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:46:17.1885271Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:46:17.1895638Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:46:17.1910844Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:46:17.1926923Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-04-25T04:46:17.1938690Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.1941872Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.1952645Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.1963521Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.1973673Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.1979938Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.1996554Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-04-25T04:46:17.2004627Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:46:17.2008167Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:46:17.2028954Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:46:17.2039579Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:46:17.2054996Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-04-25T04:46:17.2070476Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:46:17.2078847Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:46:17.2089758Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:46:17.2095896Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:46:17.2113051Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:46:17.2116334Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:46:17.2127022Z 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:46:17.2137183Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:46:17.2144666Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:46:17.2148021Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:46:17.2158715Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:46:17.2169131Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-04-25T04:46:17.2178578Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2181761Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2192395Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2209528Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2225907Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2237384Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2259120Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2467078Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2482235Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2499071Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:17.2506808Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-04-25T04:46:17.2510314Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-04-25T04:46:17.2527763Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-04-25T04:46:17.2534465Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-04-25T04:46:17.2537754Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-04-25T04:46:17.2548462Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-04-25T04:46:17.2555009Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-04-25T04:46:17.2558570Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-04-25T04:46:17.2568764Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-04-25T04:46:17.2575138Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-04-25T04:46:17.2578579Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-04-25T04:46:17.2588633Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-04-25T04:46:17.2596395Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:46:17.2599790Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:46:17.2617597Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:46:17.2627547Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:46:17.2638900Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-04-25T04:46:17.2655756Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:46:17.2659245Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:46:17.2685963Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:46:17.2698356Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:46:17.2713535Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:46:17.2729532Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-04-25T04:46:17.2741843Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2744967Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2755947Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2766885Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2778605Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2788884Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2805183Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2829632Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2839893Z copying torch\distributed\tensor\parallel\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2852029Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-04-25T04:46:17.2860994Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2864101Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2875796Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2890727Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2900765Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2916828Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2929021Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2952718Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2973581Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2989100Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.2999614Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.3020202Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.3036538Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-04-25T04:46:17.3061729Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-04-25T04:46:17.3062668Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-04-25T04:46:17.3063720Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-04-25T04:46:17.3064570Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-04-25T04:46:17.3065353Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-04-25T04:46:17.3072002Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-04-25T04:46:17.3075089Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-04-25T04:46:17.3095205Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-04-25T04:46:17.3140983Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3144257Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3169965Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3180438Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3186504Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3202824Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3224434Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3234587Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3246450Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:17.3263252Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-04-25T04:46:17.3266530Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-04-25T04:46:17.3276890Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-04-25T04:46:17.3284714Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:46:17.3288445Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:46:17.3300540Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:46:17.3312298Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:46:17.3323787Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-04-25T04:46:17.3335957Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:46:17.3339739Z 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:46:17.3350790Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:46:17.3361704Z 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:46:17.3368337Z 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:46:17.3379139Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:46:17.3397275Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:46:17.3404191Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-04-25T04:46:17.3407560Z 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:46:17.3419217Z 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:46:17.3435114Z 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:46:17.3452555Z 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:46:17.3459873Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-04-25T04:46:17.3464230Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-04-25T04:46:17.3476204Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-04-25T04:46:17.3479047Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-04-25T04:46:17.3494596Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3498252Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3520174Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3531897Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3546287Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3568134Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3578852Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3589651Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3600654Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3616387Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3629926Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3666826Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3682342Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3688277Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3700140Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3711115Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3822320Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3849406Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3860207Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3882248Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3892592Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3904054Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3922250Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3931738Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-04-25T04:46:17.3941214Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.3945559Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.3955050Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.3965251Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.3980203Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.3995382Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4006262Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4026573Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4037461Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4047810Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4058856Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4079231Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4099305Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4111122Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4134563Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4152633Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4164380Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4176347Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4187226Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-04-25T04:46:17.4196343Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:46:17.4199814Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:46:17.4215858Z 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:46:17.4243386Z 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:46:17.4270231Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:46:17.4276433Z 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:46:17.4291769Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:46:17.4301994Z 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:46:17.4311991Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:46:17.4319314Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4322699Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4384406Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4385335Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4386331Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4387279Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4388689Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4399146Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4409234Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-04-25T04:46:17.4416947Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4420650Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4431343Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4468077Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4479142Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4489769Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4503978Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:17.4511344Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-04-25T04:46:17.4514797Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-04-25T04:46:17.4524928Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-04-25T04:46:17.4531306Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-04-25T04:46:17.4538539Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-04-25T04:46:17.4545210Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:46:17.4548343Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:46:17.4580254Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:46:17.4590538Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:46:17.4601551Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-04-25T04:46:17.4619233Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-04-25T04:46:17.4622505Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-04-25T04:46:17.4632667Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-04-25T04:46:17.4639748Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:46:17.4643115Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:46:17.4653170Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:46:17.4665248Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:46:17.4681236Z 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:46:17.4697361Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:46:17.4708947Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-04-25T04:46:17.4716470Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-04-25T04:46:17.4720243Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-04-25T04:46:17.4732002Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-04-25T04:46:17.4738104Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-04-25T04:46:17.4740886Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-04-25T04:46:17.4753323Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-04-25T04:46:17.4756707Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-04-25T04:46:17.4767612Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-04-25T04:46:17.4774177Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4777702Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4789202Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4800446Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4807042Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4817052Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4832782Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4843746Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4861885Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-04-25T04:46:17.4869616Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:46:17.4872999Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:46:17.4883257Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:46:17.4900416Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:46:17.4940387Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:46:17.4964442Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-04-25T04:46:17.4971086Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:46:17.4974407Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:46:17.4986354Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:46:17.5011509Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:46:17.5021060Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-04-25T04:46:17.5033295Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-04-25T04:46:17.5036684Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-04-25T04:46:17.5042402Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-04-25T04:46:17.5048547Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-04-25T04:46:17.5051548Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-04-25T04:46:17.5066440Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.5069559Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.5095133Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.5106446Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6278005Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6292092Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6314241Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6852139Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6866937Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6878603Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6889336Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6900903Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6921817Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6933366Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6945049Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.6983637Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7030428Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7042515Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7059736Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7069891Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7098515Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7129905Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7147124Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7174580Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7185877Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7196659Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7209085Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-04-25T04:46:17.7222316Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7225891Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7237910Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7249320Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7292591Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7308807Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7319994Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7331851Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7342263Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-04-25T04:46:17.7354763Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-04-25T04:46:17.7357825Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-04-25T04:46:17.7365154Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-04-25T04:46:17.7368247Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-04-25T04:46:17.7377922Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-04-25T04:46:17.7379930Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-04-25T04:46:17.7385654Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-04-25T04:46:17.7399806Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7402883Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7414616Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7424586Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7435411Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7448923Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7465211Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7480558Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7500906Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7527801Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7570945Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7582304Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7593601Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7604383Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7614523Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7627191Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7637969Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-04-25T04:46:17.7651212Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-04-25T04:46:17.7658618Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-04-25T04:46:17.7670286Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-04-25T04:46:17.7677539Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-04-25T04:46:17.7681005Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-04-25T04:46:17.7687485Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-04-25T04:46:17.7694363Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-04-25T04:46:17.7697679Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-04-25T04:46:17.7704635Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-04-25T04:46:17.7707776Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-04-25T04:46:17.7716156Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:46:17.7719319Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:46:17.7730110Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:46:17.7736142Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:46:17.7742073Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-04-25T04:46:17.7754141Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-04-25T04:46:17.7757427Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-04-25T04:46:17.7765159Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:46:17.7768673Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:46:17.7775038Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:46:17.7781409Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:46:17.7787297Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-04-25T04:46:17.7794704Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:46:17.7798271Z 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:46:17.7804207Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:46:17.7811690Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-04-25T04:46:17.7815252Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-04-25T04:46:17.7837995Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:46:17.7838582Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:46:17.7839292Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:46:17.7840003Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:46:17.7845880Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-04-25T04:46:17.7853039Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-04-25T04:46:17.7857014Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-04-25T04:46:17.7863063Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-04-25T04:46:17.7869423Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:46:17.7872811Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:46:17.7878726Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:46:17.7884282Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-04-25T04:46:17.7891308Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-04-25T04:46:17.7894319Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-04-25T04:46:17.7902807Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7905963Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7912015Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7917616Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7923473Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7929234Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7940165Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7946034Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7951938Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7962569Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7968279Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7973983Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-04-25T04:46:17.7985196Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-04-25T04:46:17.7994853Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-04-25T04:46:17.8002417Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:46:17.8005708Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:46:17.8011591Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:46:17.8017314Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:46:17.8027643Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-04-25T04:46:17.8054791Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8058077Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8068252Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8074302Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8080026Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8085980Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8091641Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-04-25T04:46:17.8105069Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8108466Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8119861Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8131179Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8146469Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8157308Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8168926Z 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:46:17.8179760Z 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:46:17.8190242Z 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:46:17.8201052Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8211575Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-04-25T04:46:17.8219016Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-04-25T04:46:17.8222444Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-04-25T04:46:17.8234154Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-04-25T04:46:17.8247546Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8251129Z copying torch\onnx\_internal\io_adapter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8267838Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8279185Z copying torch\onnx\_internal\onnxruntime.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8311336Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8323537Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8338664Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8355261Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8365276Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-04-25T04:46:17.8375294Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8378172Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8390057Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8406395Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8417404Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8433580Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8439373Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8470920Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8481619Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8493436Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8504398Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8510386Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8516414Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8526823Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8537594Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8547847Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8564568Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8583112Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8594717Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8610426Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8620665Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8630944Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8642258Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-04-25T04:46:17.8650140Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8653487Z copying torch\onnx\_internal\fx\decomposition_table.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8665129Z copying torch\onnx\_internal\fx\dynamo_graph_extractor.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8676880Z copying torch\onnx\_internal\fx\fx_onnx_interpreter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8698207Z copying torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8715128Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8726709Z copying torch\onnx\_internal\fx\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8737074Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8749115Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8760182Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8772059Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-04-25T04:46:17.8779729Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:46:17.8783128Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:46:17.8793994Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:46:17.8803657Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:46:17.8810886Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:17.8818905Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:17.8828784Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:17.8838824Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:17.8849030Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:17.8859627Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:17.8867796Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.8870975Z copying torch\onnx\_internal\fx\passes\decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.8881764Z copying torch\onnx\_internal\fx\passes\functionalization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.8893646Z copying torch\onnx\_internal\fx\passes\modularization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.9086070Z copying torch\onnx\_internal\fx\passes\readability.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.9101549Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.9130931Z copying torch\onnx\_internal\fx\passes\virtualization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.9145300Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.9156247Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-04-25T04:46:17.9163603Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:46:17.9166908Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:46:17.9179057Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:46:17.9182445Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:46:17.9192931Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:46:17.9198860Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:46:17.9215081Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-04-25T04:46:17.9239092Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9242055Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9247702Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9253632Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9259494Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9265360Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9277581Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9287547Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9293486Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9303729Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9309505Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9319899Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9333137Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-04-25T04:46:17.9340340Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-04-25T04:46:17.9343569Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-04-25T04:46:17.9359184Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-04-25T04:46:17.9374201Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9383657Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9403153Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9418152Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9433928Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9446289Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9476977Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9502387Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9512667Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9523499Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9670887Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:17.9686642Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.2185378Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.2196913Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.2277333Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.2341254Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3002098Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3014838Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3061817Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3082417Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3097823Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3178456Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3973830Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.3990751Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4002080Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4016870Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4896800Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4908487Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4915424Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4921460Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4940998Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4952875Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4964118Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.4984631Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5004657Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5018472Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5030404Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5040136Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5050057Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5064314Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5078123Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5094376Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5104614Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-04-25T04:46:18.5111162Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-04-25T04:46:18.5114474Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-04-25T04:46:18.5122501Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:46:18.5125631Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:46:18.5131313Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:46:18.5136942Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-04-25T04:46:18.5145372Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.5148695Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.5160036Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.5171534Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.5193001Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.7068842Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.7080121Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.7090647Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.7106332Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.7121615Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-04-25T04:46:18.7128426Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-04-25T04:46:18.7132262Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-04-25T04:46:18.8161600Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-04-25T04:46:18.8168558Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:46:18.8172033Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:46:18.8221675Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:46:18.8234283Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:46:18.8246304Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-04-25T04:46:18.8258634Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8262066Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8273436Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8284631Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8290807Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8320966Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8330870Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-04-25T04:46:18.8338392Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:46:18.8342210Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:46:18.8348541Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:46:18.8354756Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-04-25T04:46:18.8361078Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-04-25T04:46:18.8365165Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-04-25T04:46:18.8372401Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:46:18.8375798Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:46:18.8428950Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:46:18.8440962Z 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:46:18.8456728Z 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:46:18.8466902Z 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:46:18.8480848Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:46:18.8559705Z 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:46:18.8569732Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-04-25T04:46:18.8576467Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-04-25T04:46:18.8579859Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-04-25T04:46:18.8589736Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-04-25T04:46:18.8597478Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-04-25T04:46:18.8600742Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-04-25T04:46:18.8616365Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-04-25T04:46:18.8623507Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-04-25T04:46:18.8627454Z 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:46:18.8644402Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-04-25T04:46:18.8651353Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:46:18.8655095Z 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:46:18.8667181Z 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:46:18.8678493Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:46:18.8685426Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:46:18.8688875Z 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:46:18.8699709Z 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:46:18.8721527Z 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:46:18.8731509Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:46:18.8738818Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-04-25T04:46:18.8742875Z 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:46:18.8754375Z 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:46:18.8764098Z 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:46:18.8775995Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.8779530Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.8917597Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.8953923Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.8980379Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.8991834Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.9013727Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.9036463Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.9056971Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:18.9064137Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-04-25T04:46:18.9067372Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-04-25T04:46:18.9074322Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-04-25T04:46:18.9077346Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-04-25T04:46:18.9084602Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-04-25T04:46:18.9088780Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-04-25T04:46:18.9092929Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-04-25T04:46:18.9105719Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9109035Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9115250Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9146162Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9161269Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9179414Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9190799Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9201902Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9212800Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-04-25T04:46:18.9228284Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:46:18.9231591Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:46:18.9242468Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:46:18.9366746Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:46:18.9707603Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:46:18.9722160Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-04-25T04:46:18.9731564Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-04-25T04:46:18.9734132Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-04-25T04:46:18.9746457Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-04-25T04:46:18.9753147Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:18.9756380Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:18.9777671Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:18.9785671Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-04-25T04:46:18.9789279Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-04-25T04:46:18.9799786Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-04-25T04:46:18.9833070Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9836435Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9858029Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9889564Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9891774Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9906445Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9917221Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9927170Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9938972Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9950207Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-04-25T04:46:18.9958451Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-04-25T04:46:18.9963207Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-04-25T04:46:18.9979257Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-04-25T04:46:18.9985637Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-04-25T04:46:18.9998331Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-04-25T04:46:19.0000815Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-04-25T04:46:19.0008104Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0011286Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0045474Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0059459Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0069996Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0085442Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0100704Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0111170Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0122048Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0131663Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0153107Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-04-25T04:46:19.0160446Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0163717Z copying torch\utils\benchmark\examples\blas_compare_setup.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0174646Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0184555Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0194650Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0205658Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0215918Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0226480Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-04-25T04:46:19.0233490Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0236723Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0247420Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0258243Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0268219Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0282790Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0292599Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:19.0299985Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0303269Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0315317Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0326214Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0336677Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0347376Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0362560Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0377185Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0394299Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0404556Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:19.0422324Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:46:19.0423263Z 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:46:19.0436428Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:46:19.0443495Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0447303Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0462075Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0473191Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0484043Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0503610Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0518668Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:19.0526451Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0529752Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0540755Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0554415Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0565574Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0575307Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0589617Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-04-25T04:46:19.0607750Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:19.0611229Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:19.0623435Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:19.0634218Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:19.0648658Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:19.0658454Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:19.0667191Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0670797Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0682018Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0693352Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0709074Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0726372Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0737580Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0748964Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0759567Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0769990Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0780229Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0790842Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0800914Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-04-25T04:46:19.0813634Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0835459Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0845667Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0857130Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0867787Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0877279Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0892928Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-04-25T04:46:19.0901984Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:46:19.0905541Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:46:19.0917578Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:46:19.0928846Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:46:19.0939108Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-04-25T04:46:19.0946823Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.0950126Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.0961288Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.0972689Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.0984109Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1004357Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1014325Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1024055Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1048892Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1054940Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1065171Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1075736Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-04-25T04:46:19.1084029Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1087340Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1097683Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1107761Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1117729Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1133704Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1143891Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1154395Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1164458Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1175482Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1185407Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1195950Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-04-25T04:46:19.1209120Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:46:19.1212693Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:46:19.1234467Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:46:19.1250731Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:46:19.1271133Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-04-25T04:46:19.1281143Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1284461Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1301043Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1357562Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1398041Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1409709Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1559915Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1582155Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1598091Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.1628311Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2666808Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2683300Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2694484Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2715655Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2745731Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2775625Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2791828Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2802286Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2813741Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2840085Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2874673Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2892330Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2923148Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-04-25T04:46:19.2936132Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:46:19.2939284Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:46:19.2949931Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:46:19.2955899Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:46:19.2965659Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-04-25T04:46:19.2975435Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.2978653Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.2990371Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3001059Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3017008Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3027238Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3037579Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3048707Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3063050Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3074870Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3091370Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3102306Z 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:46:19.3112594Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3123535Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3133436Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-04-25T04:46:19.3140996Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:46:19.3144352Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:46:19.3155200Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:46:19.3164938Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-04-25T04:46:19.3172416Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3175567Z copying torch\_export\serde\aoti_schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3182263Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3194246Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3206270Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3226814Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3278454Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3287889Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:19.3301644Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3304661Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3310762Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3320918Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3331123Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3341373Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3351819Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3361823Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3367602Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3381678Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3391759Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3414369Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3424387Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3430615Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3441490Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3447806Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3453944Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3460128Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3466447Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3476824Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3482990Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3489287Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3499092Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3505115Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3511340Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3521283Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3527699Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3538018Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3543904Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3554177Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3560427Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3566554Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3572584Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3578552Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3584815Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3590946Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3601253Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3607327Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-04-25T04:46:19.3618786Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:19.3622671Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:19.3640787Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:19.3651703Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:19.3665718Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:19.3676480Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:19.3685704Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3689483Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3710066Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3730435Z copying torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3746326Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3765930Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3781766Z copying torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3809415Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3819824Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3863675Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3890063Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3900669Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3916344Z copying torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3936953Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3951692Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-04-25T04:46:19.3963404Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:46:19.3966775Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:46:19.3977704Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:46:19.3988741Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:46:19.4002777Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:46:19.4014789Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-04-25T04:46:19.4026249Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4029546Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4040077Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4051407Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4087369Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4166082Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4185982Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4207529Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.4239124Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5073833Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5100690Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5112003Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5128293Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5145722Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5190532Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5216331Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5233927Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5244037Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5744875Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5756981Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5783869Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5806988Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5827789Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5834159Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5846271Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5882301Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5899237Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5909788Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5970966Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.5993485Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.6004695Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.6015841Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.6063071Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:19.6075701Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:46:19.6079065Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:46:19.6090955Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:46:19.6100465Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:46:19.6105253Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-04-25T04:46:19.6125339Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6128492Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6144934Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6161387Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6177733Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6229889Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6242850Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6254469Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6265138Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6282258Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6309581Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6326257Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6348451Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6358444Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6386413Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6401311Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6432640Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6453194Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.6470361Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.7467579Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.7486211Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.7502388Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.7548528Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-04-25T04:46:19.7556128Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7559280Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7570902Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7586622Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7624155Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7639983Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7665017Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7676166Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7690476Z copying torch\_inductor\kernel\mm_scaled_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7701230Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-04-25T04:46:19.7709215Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:46:19.7712672Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:46:19.7718871Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:46:19.7729596Z copying torch\_inductor\package\pt2_archive_constants.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:46:19.7735476Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-04-25T04:46:19.7745200Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7748058Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7764563Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7776032Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7786153Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7804180Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7815425Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7825807Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7837251Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7852212Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7863286Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7873647Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7891019Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7930932Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-04-25T04:46:19.7954565Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.7955420Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.7956495Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.7966992Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.7987014Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.8004091Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.8029744Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:19.8037550Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8040994Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8051833Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8061769Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8077784Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8094186Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8110807Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8122746Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8134095Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8163768Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-04-25T04:46:19.8171533Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8174811Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8195474Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8205581Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8230582Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8242157Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8253806Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8264010Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8275422Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8286552Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8296420Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-04-25T04:46:19.8302867Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-04-25T04:46:19.8306596Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-04-25T04:46:19.8317962Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-04-25T04:46:19.8324195Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:46:19.8327526Z 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:46:19.8339466Z 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:46:19.8354840Z 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:46:19.8370507Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:46:19.8373903Z 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:46:19.8384322Z 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:46:19.8398624Z 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:46:19.8413753Z 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:46:19.8425896Z 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:46:19.8437362Z 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:46:19.8453334Z 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:46:19.8465390Z 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:46:19.8476999Z 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:46:19.8488597Z 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:46:19.8503990Z 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:46:19.8528779Z 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:46:19.8544778Z 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:46:19.8565974Z 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:46:19.8577622Z 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:46:19.8588990Z 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:46:19.8600586Z 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:46:19.8612425Z 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:46:19.8624103Z 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:46:19.8639410Z 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:46:19.8681703Z 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:46:19.8693361Z 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:46:19.8705252Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:46:19.8711919Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-04-25T04:46:19.8715148Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-04-25T04:46:19.8745361Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-04-25T04:46:19.8753345Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-04-25T04:46:19.8756192Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-04-25T04:46:19.8768674Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-04-25T04:46:19.8771966Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-04-25T04:46:19.8779155Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-04-25T04:46:19.8787963Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-04-25T04:46:19.8800116Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-04-25T04:46:19.8803219Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-04-25T04:46:19.8826545Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:46:19.8830100Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:46:19.8846114Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:46:19.8856202Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-04-25T04:46:19.8864852Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-04-25T04:46:19.8867175Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-04-25T04:46:19.8878435Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-04-25T04:46:19.8886417Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8889654Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8909848Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8926373Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8936978Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8948855Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8970119Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8976083Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.8987394Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.9012721Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.9023016Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.9038174Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.9049761Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.9064823Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-04-25T04:46:19.9071757Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9074825Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9090765Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9101227Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9110280Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9247355Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9262914Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-04-25T04:46:19.9275161Z creating build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:46:19.9278364Z copying torchgen\executorch\model.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:46:19.9290514Z copying torchgen\executorch\parse.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:46:19.9300693Z copying torchgen\executorch\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-04-25T04:46:19.9308053Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:46:19.9310997Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:46:19.9323168Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:46:19.9329467Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-04-25T04:46:19.9341842Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:46:19.9345345Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:46:19.9356246Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:46:19.9367667Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-04-25T04:46:19.9384012Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:46:19.9511599Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:46:19.9526346Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:46:19.9542282Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:46:19.9557089Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-04-25T04:46:19.9563550Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:46:19.9566738Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:46:19.9577503Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:46:19.9588724Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:46:19.9599440Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-04-25T04:46:19.9606792Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:46:19.9610038Z copying torchgen\executorch\api\custom_ops.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:46:19.9620716Z copying torchgen\executorch\api\et_cpp.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:46:19.9632341Z copying torchgen\executorch\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:46:19.9646455Z copying torchgen\executorch\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-04-25T04:46:19.9654168Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:46:19.9657468Z copying torchgen\executorch\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:46:19.9667428Z copying torchgen\executorch\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:46:19.9677291Z copying torchgen\executorch\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-04-25T04:46:20.8823404Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:20.8846632Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:21.1703838Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-04-25T04:46:21.1709102Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1712356Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1723749Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1772899Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1783422Z copying torch\bin\ProcessGroupGlooAsyncTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1802241Z copying torch\bin\ProcessGroupGlooTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1813097Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1844372Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1854855Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1948635Z copying torch\bin\test_edge_op_registration.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.1959465Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.2015800Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.2046165Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.2105973Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-04-25T04:46:21.2119463Z creating build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2122538Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2133410Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2144646Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2155556Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2172981Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2183836Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2194128Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2204240Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2214228Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2225328Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2235476Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2245725Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2256448Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2267723Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2282189Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2292823Z copying torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2303171Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2314044Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2329241Z copying torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2340109Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2351478Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2361816Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2372062Z copying torch\test\c10_cuda_CUDATest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2382486Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2403564Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2413982Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2424542Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2435518Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2445978Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2456915Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2467702Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2478205Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2488320Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2498707Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2514732Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2524646Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2542986Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2553783Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2563911Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2579405Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2589671Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2600134Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2619405Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2631330Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2642035Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2652323Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2662261Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2672407Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2688211Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2697914Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2707925Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2723892Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2733740Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2743877Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2753833Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2763824Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2774039Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2784774Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2795352Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2810079Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2820452Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2830546Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2840763Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2851720Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2866933Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2881097Z copying torch\test\cuda_allocatorTraceTracker_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2892066Z copying torch\test\cuda_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2903233Z copying torch\test\cuda_apply_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2918145Z copying torch\test\cuda_atomic_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2929211Z copying torch\test\cuda_caching_host_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2940219Z copying torch\test\cuda_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2951396Z copying torch\test\cuda_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2963079Z copying torch\test\cuda_cub_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2974621Z copying torch\test\cuda_cudnn_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2985728Z copying torch\test\cuda_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.2996256Z copying torch\test\cuda_distributions_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3007978Z copying torch\test\cuda_dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3018770Z copying torch\test\cuda_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3030036Z copying torch\test\cuda_half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3046068Z copying torch\test\cuda_integer_divider_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3057198Z copying torch\test\cuda_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3068453Z copying torch\test\cuda_packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3079392Z copying torch\test\cuda_reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3089900Z copying torch\test\cuda_stream_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3106469Z copying torch\test\cuda_vectorized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3117567Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3129185Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3140258Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3150446Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3166327Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3177240Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3190529Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3201396Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3214073Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3229896Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3244371Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3257131Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3272258Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3286158Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3301495Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3311925Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3324676Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3343952Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3357786Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3369305Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3380576Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3391141Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3402106Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3412930Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3424379Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3435886Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3446740Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3457228Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3466976Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3492689Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3525032Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3538019Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3550200Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3562046Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3577659Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3588613Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3599918Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3610313Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3621239Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3638587Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3649305Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3657417Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3667616Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3679090Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3695472Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3702937Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3714618Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3724614Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-04-25T04:46:21.3735272Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:21.3748644Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:21.3762555Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:21.3781599Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:21.3793053Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:46:21.3800008Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:21.3813361Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:21.3841274Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3844620Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3856741Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3870038Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3877859Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3889623Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3901630Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3913120Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3933258Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3948198Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3959986Z copying torch\_C\_export.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3966502Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3978119Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.3989777Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4007241Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4013187Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4024665Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4031908Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4044503Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4060189Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4068196Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4078381Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.4090516Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.5732670Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.5739947Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-04-25T04:46:21.5898966Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:46:21.5902259Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:46:21.5910131Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:46:21.5921420Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:46:21.5937708Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-04-25T04:46:21.5943501Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-04-25T04:46:21.5951431Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-04-25T04:46:21.5957341Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:21.5960213Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:21.5966859Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:21.5972432Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:46:21.5975631Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:46:21.5986834Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:46:21.5998938Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:46:21.6009155Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-04-25T04:46:21.6019790Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-04-25T04:46:21.6022763Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-04-25T04:46:21.6028280Z creating build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6031600Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6039367Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6045546Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6052205Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6059002Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6070360Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6077322Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6083877Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6090350Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6096989Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6104735Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6111127Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6117327Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6123947Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6130213Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6142605Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6187272Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6187940Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:21.6208769Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6209359Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6210113Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6216150Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6222588Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6228979Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6240912Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-04-25T04:46:21.6247201Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6251152Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6258108Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6264653Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6271294Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6283870Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6292886Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6299722Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6306411Z copying torch\include\asmjit\arm\a64utils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6313141Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6319942Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-04-25T04:46:21.6326907Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6329566Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6336803Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6343715Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6351797Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6362339Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6370090Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6376891Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6384250Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6396505Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6403293Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6410793Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6417701Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6425364Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6437458Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6444259Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6451349Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6458825Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6465566Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6472982Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6480130Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6486785Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6493294Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6500837Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6512440Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6518932Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6526481Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6537266Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6543879Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6557644Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6565858Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6615847Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6616648Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6617432Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6618236Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6619585Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-04-25T04:46:21.6620297Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6621011Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6621929Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6628873Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6636487Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6651967Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6659895Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6668467Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-04-25T04:46:21.6678947Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6681951Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6688600Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6695434Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6703316Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6710175Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6724487Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6730802Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6737384Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6743944Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6750463Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6757447Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6764245Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6771365Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6779030Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6786394Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6794085Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6801229Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6808929Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6815919Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6827126Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6833790Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6841420Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6848436Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6855318Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6863176Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6870028Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6877657Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6884499Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6892019Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6908421Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6915967Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6922404Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6929111Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6935445Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6941968Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6949388Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6957683Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6964005Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6970704Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6982627Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.6989402Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7000791Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7016554Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7024129Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7036024Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7042977Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7050324Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7058209Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7065644Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7076542Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7083707Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7094870Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7101753Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7108177Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7115379Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7121785Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7128681Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7135482Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7142708Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7153703Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7160848Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7174901Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7182025Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7188738Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7195824Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7202787Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7209154Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7216102Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7223956Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7236540Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7247375Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7254170Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7260814Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7268710Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7279697Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7285978Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7292591Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7299121Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7305845Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7312465Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7324316Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7330929Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7337994Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7345374Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7374205Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7389476Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7396413Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7403822Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7410415Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7422186Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7428826Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7435801Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7442264Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7448848Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7455768Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7463235Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7470080Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7476621Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7483454Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7497928Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7510606Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7517626Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7525018Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7532629Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7539646Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7546542Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7553684Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7577345Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7584927Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7597508Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7604516Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7611607Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7618786Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7625110Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7631989Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7638753Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7645164Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7667934Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7674737Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-04-25T04:46:21.7680767Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7683763Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7690410Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7696836Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7703074Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7717754Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7724584Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7732597Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7739133Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7745399Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7752185Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7758906Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7766182Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7772908Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7779448Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7786499Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7794783Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7801833Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7808379Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7814880Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7826509Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7833393Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7840234Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7852183Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7858852Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7865718Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7872597Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7879201Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7885976Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7893784Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7900638Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7907661Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7914500Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7921260Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7934775Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7946012Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7953180Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7960057Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7967916Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7975910Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7987009Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.7995055Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8002847Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8009592Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8016690Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8028245Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8039348Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8046305Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8053138Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8060092Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8067267Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8076136Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8106401Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8107215Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8107980Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8108892Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8116650Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8124760Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8130994Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8137045Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8143990Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8150459Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8157121Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8163934Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8171402Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8186129Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8193095Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8207909Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8214273Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8221553Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8228154Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8234749Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8241710Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8248417Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8255703Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-04-25T04:46:21.8261541Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:46:21.8264611Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:46:21.8271576Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:46:21.8278136Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:46:21.8284902Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:46:21.8296113Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-04-25T04:46:21.8301955Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:46:21.8305092Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:46:21.8312185Z 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:46:21.8319528Z 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:46:21.8326699Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:46:21.8337696Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-04-25T04:46:21.8344161Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8346998Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8354020Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8361586Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8368556Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8380710Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8388256Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8395406Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-04-25T04:46:21.8401322Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:46:21.8404578Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-04-25T04:46:21.8411526Z 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:46:21.8418263Z 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:46:21.8425328Z 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:46:21.8468211Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:46:21.8471427Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:46:21.8477870Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:46:21.8484414Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-04-25T04:46:21.8490377Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8493868Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8499896Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8511152Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8518538Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8529062Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8535284Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8546953Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8553859Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8561312Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8567117Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-04-25T04:46:21.8573024Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-04-25T04:46:21.8576285Z 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:46:21.8583239Z 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:46:21.8590685Z 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:46:21.8597909Z 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:46:21.8706279Z 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:46:21.8717545Z 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:46:21.8723787Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:46:21.8726807Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:46:21.8733680Z 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:46:21.8740800Z 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:46:21.8747475Z 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:46:21.8759221Z 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:46:21.8766615Z 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:46:21.8772423Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:46:21.8775486Z 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:46:21.8782191Z 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:46:21.8788501Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:46:21.8795266Z 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:46:21.8806621Z 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:46:21.8813749Z 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:46:21.8821267Z 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:46:21.8828475Z 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:46:21.8835493Z 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:46:21.8842247Z 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:46:21.8849683Z 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:46:21.8856769Z 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:46:21.8864782Z 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:46:21.8871832Z 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:46:21.8879017Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-04-25T04:46:21.8882149Z 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:46:21.8888774Z 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:46:21.8900224Z 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:46:21.8912328Z 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:46:21.8919771Z 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:46:21.8927229Z 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:46:21.8938978Z 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:46:21.8945888Z 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:46:21.8953813Z 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:46:21.8960679Z 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:46:21.8967866Z 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:46:21.8975713Z 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:46:21.8983189Z 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:46:21.8989698Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-04-25T04:46:21.8993264Z 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:46:21.9000626Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:46:21.9003655Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:46:21.9010337Z 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:46:21.9029927Z 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:46:21.9037565Z 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:46:21.9050901Z 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:46:21.9057913Z 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:46:21.9068980Z 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:46:21.9076568Z 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:46:21.9084775Z 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:46:21.9092348Z 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:46:21.9100067Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9103575Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9114651Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9121120Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9127749Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9134897Z copying torch\include\ATen\cuda\CUDAConfig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9146487Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9152923Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9159861Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9166476Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9173390Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9188544Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9195436Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9202068Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9208751Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9215492Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9226720Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9233367Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9240480Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9247227Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9253911Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9265916Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9272457Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9279141Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9285652Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9292140Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9306734Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:21.9313034Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:21.9315850Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:21.9322592Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:21.9329149Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:21.9335828Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:21.9349281Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9352407Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9359583Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9366734Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9373213Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9387979Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9394866Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9401648Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-04-25T04:46:21.9407592Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9410773Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9417251Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9424117Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9430469Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9436759Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9451771Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-04-25T04:46:21.9457494Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9460512Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9467697Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9475166Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9491272Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9498540Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9505488Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9512412Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9519362Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9526508Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9533864Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9540319Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-04-25T04:46:21.9546647Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9549806Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9557239Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9563863Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9575925Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9582862Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9591450Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9602723Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9609458Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9616255Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9623023Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9629279Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9640183Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9647820Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-04-25T04:46:21.9672839Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:46:21.9677149Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:46:21.9683971Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:46:21.9690594Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:46:21.9706437Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-04-25T04:46:21.9712274Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-04-25T04:46:21.9715250Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-04-25T04:46:21.9720764Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9723775Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9731090Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9740969Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9747873Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9759507Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9765523Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-04-25T04:46:21.9771068Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9774064Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9780655Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9787306Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9794547Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9806512Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9813136Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9819636Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9826892Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9834134Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9844774Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9852213Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-04-25T04:46:21.9858060Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9861137Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9867757Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9874588Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9881211Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9892698Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9899477Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9906136Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9913039Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9919392Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9926119Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9933034Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9939592Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9945970Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9953995Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9960725Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9967675Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9974075Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9985629Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9992184Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:21.9999753Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0007098Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0027060Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0035111Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0042168Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0048396Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0055375Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0062561Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0069165Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0076151Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0083137Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0090011Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0096734Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0114780Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0163368Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0170114Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0176660Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0183477Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0190808Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0197973Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0204538Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0211344Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0218800Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0229586Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0243388Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0251226Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0259037Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0266477Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0273089Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0279955Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0286539Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0293164Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0299421Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0305994Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0316732Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0323296Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0330165Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0336673Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0343059Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0349793Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0356267Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0362963Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0370379Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0377234Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0383953Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0391321Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0410205Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0416876Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0423631Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0430462Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0438498Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0445363Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0451743Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0458633Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0465768Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0473512Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0485083Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0491960Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0499516Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0505971Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0513061Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0519938Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0527133Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0534590Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0541031Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0554087Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0561129Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0567930Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0579490Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0587699Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0594625Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0601916Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0608808Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0615494Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0622259Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0630053Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0637178Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0643541Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-04-25T04:46:22.0649831Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-04-25T04:46:22.0655551Z 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:46:22.0662485Z 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:46:22.0669117Z 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:46:22.0674870Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0678684Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0686201Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0702504Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0709393Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0721686Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0728431Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0735347Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0742652Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0749406Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0756696Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0763614Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0770560Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0777495Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0784766Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0791688Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0798765Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0811053Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0817762Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0825070Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0832941Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0844316Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0851616Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0858559Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0865727Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0872747Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0879658Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0886624Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0893552Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0900554Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0908370Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0915523Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0929122Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-04-25T04:46:22.0935630Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0938700Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0945347Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0952114Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0958504Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0969662Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0976796Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0983329Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0990215Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.0997685Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1004146Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1010322Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1016889Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1023668Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1030189Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1038091Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1045604Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1052349Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1059479Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1066879Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1074110Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1080628Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1087069Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1098109Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1109868Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1116888Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:22.1123191Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:46:22.1126443Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:46:22.1133366Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:46:22.1139671Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:46:22.1151137Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-04-25T04:46:22.1157096Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-04-25T04:46:22.1165569Z 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:46:22.1172544Z 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:46:22.1178436Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:46:22.1181482Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:46:22.1188492Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:46:22.1194929Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-04-25T04:46:22.1201168Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:46:22.1206509Z 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:46:22.1213565Z 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:46:22.1220371Z 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:46:22.1226937Z 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:46:22.1232572Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1235517Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1241880Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1248566Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1255021Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1271521Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1278248Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1285377Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-04-25T04:46:22.1291564Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1294912Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1301267Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1307824Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1319561Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1326483Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1333097Z copying torch\include\ATen\native\mps\operations\Indexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1339658Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-04-25T04:46:22.1345820Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:46:22.1348963Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:46:22.1355322Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:46:22.1418086Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:46:22.1430544Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:46:22.1437679Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-04-25T04:46:22.1443959Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1447308Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1454526Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1461164Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1472150Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1479130Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1486733Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1493039Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1499459Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-04-25T04:46:22.1505504Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1508547Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1515334Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1522693Z 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:46:22.1531467Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1857823Z 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:46:22.1864652Z 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:46:22.1871334Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1882725Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1889693Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1897512Z 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:46:22.1904068Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1912527Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1925276Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1933113Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.1941611Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.2374973Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:22.2380815Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-04-25T04:46:22.2384722Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-04-25T04:46:22.2390676Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-04-25T04:46:22.2394418Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-04-25T04:46:22.2401050Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-04-25T04:46:22.2407381Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-04-25T04:46:22.2410555Z 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:46:22.2416254Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-04-25T04:46:22.2419543Z 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:46:22.2426504Z 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:46:22.2436799Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-04-25T04:46:22.2440165Z 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:46:22.2447299Z 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:46:22.2453887Z 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:46:22.2469538Z 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:46:22.2477660Z 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:46:22.2483520Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-04-25T04:46:22.2486965Z 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:46:22.2494371Z 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:46:22.2501342Z 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:46:22.2516361Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-04-25T04:46:22.2519626Z 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:46:22.2526965Z 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:46:22.2533986Z 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:46:22.2541486Z 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:46:22.2562181Z 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:46:22.2569344Z 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:46:22.2576416Z 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:46:22.2583685Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-04-25T04:46:22.2587286Z 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:46:22.2631454Z 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:46:22.2639453Z 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:46:22.2656594Z 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:46:22.2665636Z 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:46:22.2674351Z 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:46:22.2682438Z 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:46:22.2688208Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-04-25T04:46:22.2692247Z 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:46:22.2699931Z 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:46:22.2706626Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-04-25T04:46:22.2711113Z 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:46:22.2715984Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-04-25T04:46:22.2731151Z 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:46:22.2738125Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-04-25T04:46:22.2740790Z 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:46:22.2747039Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-04-25T04:46:22.2750251Z 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:46:22.2755977Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:46:22.2759016Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:46:22.2765150Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:46:22.2771851Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-04-25T04:46:22.2778020Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2781205Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2787679Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2795676Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2802025Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2821442Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2828524Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2835246Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2841936Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2852883Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2859448Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2865811Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2872416Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2879299Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2890687Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2898194Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2904824Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2911629Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2918310Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2933855Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2941304Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2956512Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2963397Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2970079Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2980802Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2987882Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.2994739Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3001517Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3009038Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3016192Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3031884Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3038567Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3045876Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3053069Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3061217Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3068282Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3075461Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3082493Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3097742Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3104833Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3112613Z 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:46:22.3120103Z 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:46:22.3127372Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3134872Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3142765Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3150885Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3157992Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3165333Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3172098Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3199299Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3207061Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3213895Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3221577Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3227950Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3235238Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3242702Z 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:46:22.3249943Z 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:46:22.3256905Z 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:46:22.3263932Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3271361Z 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:46:22.3286436Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3293351Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3300782Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3307500Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3314651Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3321535Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3328524Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3344510Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3351492Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3367908Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3375138Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3383143Z 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:46:22.3399696Z 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:46:22.3408036Z 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:46:22.3419053Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3427230Z 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:46:22.3433818Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3441005Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3448411Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3456314Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3462992Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3470280Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3478570Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3485874Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3492869Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3500326Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3506565Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3513290Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3520910Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3527952Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3534812Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3542027Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3549088Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3556888Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3564260Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3571225Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3587002Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3594086Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3600999Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3608929Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3615640Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3623517Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3630743Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3637887Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3649200Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3656177Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3663609Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3670719Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3677782Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3689011Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3695625Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3702784Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3710316Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3717183Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3724435Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3731410Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3738454Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3745556Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3762735Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3769434Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3776280Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3783074Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3790089Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3796958Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3804165Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3811003Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3817757Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3824546Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3831224Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3842641Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3850015Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3856778Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3864509Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3871132Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3878267Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3884679Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3891623Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3898666Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3905646Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3912459Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3919628Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3926462Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3933598Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3941246Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3949222Z 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:46:22.3956584Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3964637Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3971458Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3988429Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.3995662Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4002982Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4010389Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4017538Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4034559Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4035805Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4058400Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4059191Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4059945Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4064627Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4070872Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4077857Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4084835Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4091857Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4098814Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4106026Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4113138Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4120253Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4126992Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4133590Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4140367Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4147388Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4154410Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4160923Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4167642Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4174626Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4181259Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4188436Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4195486Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4203320Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4210022Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4216811Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4223706Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4235190Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4238231Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4244834Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4251497Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4258512Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4265255Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4283100Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4290219Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4297370Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4304637Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4311616Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4318588Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4325781Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4332517Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4339496Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4345994Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4404097Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4411408Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4418147Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4424873Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4431722Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4472113Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4492794Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4499834Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4507912Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4514847Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4521808Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4528809Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4536373Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4542906Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4550553Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4557021Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4563982Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4571401Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4577657Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4584572Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4591493Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4599333Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4606753Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4613747Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4620518Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4628246Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4661414Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4671799Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4683556Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4693164Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4707524Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4712976Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4719812Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4726574Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4733136Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4740300Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4747061Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4754370Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4761285Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4768052Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4775360Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4782398Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4789097Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4796583Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4803058Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4810101Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4817178Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4823965Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4830699Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4837566Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4844101Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4851072Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4858216Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4865300Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4872502Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4879231Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4886019Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4892797Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4899641Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4906623Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4914772Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4921747Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4928947Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4935877Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4943702Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4950475Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4957844Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4964813Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4972871Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4979570Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4986882Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.4993934Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5002107Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5008933Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5016048Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5023262Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5030315Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5037333Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5044391Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5051128Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5058155Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5065178Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5072396Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5079554Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5089983Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5095922Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5102811Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5109963Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5117059Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5123925Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5169547Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5170610Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5171388Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5172120Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5172804Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5173803Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5176994Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5184337Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5192552Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5210150Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5211065Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5213728Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5222411Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5228116Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5235174Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5241939Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5248577Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5255690Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5262842Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5269314Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5276804Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5283859Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5291408Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5298409Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5305498Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5323965Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5330897Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5337820Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5344636Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5352294Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5359636Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5366867Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5374050Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5381016Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5387832Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5394885Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5401878Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5408418Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5415732Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5422405Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5429919Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5436654Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5443483Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5450784Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5457800Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5465018Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5472632Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5478940Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5485773Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5492593Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5499967Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5507279Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5514456Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5521944Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5528911Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5536040Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5542940Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5549587Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5557399Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5564434Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5571072Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5578307Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5585092Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5592265Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5599479Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5606999Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5613872Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5621277Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5628738Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5638774Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5643198Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5650454Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5657737Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5665335Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5675400Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5681659Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5688759Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5695851Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5703027Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5710478Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5718327Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5727208Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5734747Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5741846Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5748708Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5756502Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5764104Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5770934Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5777684Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5785170Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5793118Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5799470Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5806314Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5813387Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5820445Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5828013Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5835540Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5842579Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5849981Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5857119Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5864420Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5883044Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5890348Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5897203Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5904283Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5911575Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5918672Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5925808Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5932682Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5939457Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5946602Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5953512Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5960732Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5967669Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5974950Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5981887Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5988747Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.5995744Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6002970Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6010466Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6017511Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6024859Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6032202Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6039431Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6047074Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6053723Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6061104Z 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:46:22.6068534Z 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:46:22.6076289Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6083314Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6090546Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6098179Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6106039Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6113488Z 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:46:22.6121315Z 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:46:22.6128205Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6135449Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6142898Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6174694Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6175575Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6176442Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6177407Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6181818Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6189378Z 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:46:22.6196817Z 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:46:22.6204049Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6211561Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6218898Z 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:46:22.6226962Z 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:46:22.6233796Z 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:46:22.6240890Z 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:46:22.6248710Z 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:46:22.6255593Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6263010Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6269661Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6277621Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6284582Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6291770Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6299033Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6306058Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6314023Z 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:46:22.6321008Z 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:46:22.6328898Z 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:46:22.6336467Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6343699Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6351035Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6358537Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6365550Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6372920Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6379372Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6400226Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6440358Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6447416Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6454871Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6461392Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6468042Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6474679Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6481552Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6489240Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6496472Z 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:46:22.6503437Z 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:46:22.6510422Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6517558Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6524796Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6532461Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6540016Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6547216Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6554508Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6562674Z 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:46:22.6569749Z 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:46:22.6577717Z 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:46:22.6585067Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6592211Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6599137Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6606529Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6613834Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6621088Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6629081Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6636492Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6684284Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6685137Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6686044Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6686812Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6687558Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6688535Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6691501Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6698652Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6705945Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6713167Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6720426Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6727944Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6736618Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6742480Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6749847Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6757044Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6763958Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6770923Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6778098Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6785216Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6792234Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6799381Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6807683Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6815132Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6822300Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6830162Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6837250Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6844449Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6852138Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6859388Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6866390Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6874503Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6882473Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6889521Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6896666Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6904103Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6912615Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6919418Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6926723Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6933979Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6942130Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6949470Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6956895Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6964839Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6971753Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6979034Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6986273Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.6994511Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7001741Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7009344Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7017061Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7024195Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7031338Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7038428Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7045712Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7053292Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7060257Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7067666Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7075307Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7082673Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7090041Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7097827Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7106123Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7112994Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7120408Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7127268Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7134415Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7141328Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7148316Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7156139Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7162225Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7170305Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7176646Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7183512Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7190696Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7198791Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7205468Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7212444Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7219691Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7227023Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7234075Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7241531Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7248226Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7254997Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7262172Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7268940Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7276296Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7283184Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7289900Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7297350Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7303669Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7310718Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7317863Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7324657Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7331551Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7338247Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7345351Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7352876Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7359817Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7366609Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7373494Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7381110Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7388336Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7395236Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7401925Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7408714Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7415529Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7422468Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7429612Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7444973Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7451794Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7458813Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7465811Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7472928Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7480609Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7487780Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7495159Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7502265Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7509515Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7516492Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7523452Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7530458Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7537645Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7544546Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7551687Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7558780Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7565612Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7572579Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7579671Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7586387Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7593382Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7600637Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7608185Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7615013Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7621811Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7628546Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7635619Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7643594Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7650753Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7658019Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7665776Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7673005Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7679816Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7686518Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7693793Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7700990Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7708912Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7715528Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7722495Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7729395Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7736056Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7743331Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7750323Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7757577Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7764523Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7771486Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7779101Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7786043Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7793227Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7800022Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7806786Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7814542Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7821391Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7828474Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7835811Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7843114Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7850331Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7857677Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7864804Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7871995Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7878983Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.7886677Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8091263Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8098963Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8106135Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8113701Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8121206Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8129657Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8184315Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8191559Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8199574Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8206333Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8213249Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8220053Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8227513Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8234675Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8241555Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8249083Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8256212Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8263353Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8270582Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8277504Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8284370Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8291294Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8298172Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8305024Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8311975Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8319373Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8326025Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8332900Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8340036Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8346985Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8354111Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8361044Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8367852Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8374557Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8381441Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8387973Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8395229Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8402086Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8409002Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8415768Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8422650Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8429741Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8436982Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8443781Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8451478Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8458358Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8465256Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8472693Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8480527Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8488138Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8495543Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8502651Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8509940Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8517767Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8525050Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8533301Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8575983Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8583579Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8591497Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8599150Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8605866Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8612965Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8621244Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8628458Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8635872Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8642595Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8649880Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8690758Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8697793Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8705289Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8712586Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8720504Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8726575Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8733267Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8740035Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8746586Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8753427Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8760905Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8768866Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8776108Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8783565Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8790381Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8797993Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8804889Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8812189Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8819378Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8826270Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8834862Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8853218Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8860537Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8867131Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8874347Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8881783Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8888074Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8894943Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8901785Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8908941Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8915848Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8922838Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8929999Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8937054Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8943828Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8950777Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8957983Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8964968Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8972329Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8980400Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8987871Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.8995164Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9002645Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9010654Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9017528Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9025021Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9033556Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9040099Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9047534Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9054878Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9063188Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9070426Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9078587Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9087320Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9094822Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9101858Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9109049Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9116337Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9123564Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9130780Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9138392Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9145499Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9152739Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9159943Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9167657Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9175670Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9201635Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9202614Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9203612Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9207857Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9214496Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9222046Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9229760Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9237683Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9244401Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9251657Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9258770Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9265778Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9272931Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9279430Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9286606Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9293514Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9300209Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9307049Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9314078Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9321600Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9328388Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9335255Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9343224Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9350084Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9357002Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9364555Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9371516Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9378447Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9385801Z 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:46:22.9392891Z 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:46:22.9399872Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9407151Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9414412Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9421378Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9428122Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9434889Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9441897Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9448436Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9455423Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9462252Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9469156Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9477002Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9483782Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9490671Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9497591Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9504369Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9512309Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9519469Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9526814Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9534065Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9542266Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9549538Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9557173Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9565617Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9571850Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9579071Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9586561Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9594170Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9600674Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9607733Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9614618Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9622296Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9629588Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9637534Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9644636Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9651830Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9659249Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9686741Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9687621Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9688339Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9689488Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9696835Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9703851Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9711803Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9718908Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9725880Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9732836Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9740149Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9747164Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9754248Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9760972Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9769193Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9776276Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9783377Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9790371Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9797423Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9804213Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9811117Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9818411Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9825451Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9832436Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9839933Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9869112Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9934123Z 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:46:22.9935318Z 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:46:22.9936368Z 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:46:22.9937354Z 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:46:22.9938430Z 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:46:22.9939670Z 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:46:22.9940631Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9941536Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9942381Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9943194Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9950064Z 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:46:22.9957244Z 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:46:22.9964141Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9971158Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9978486Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9985663Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9992783Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:22.9999951Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0006964Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0014217Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0021611Z 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:46:23.0029695Z 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:46:23.0036406Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0043395Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0050515Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0057445Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0064655Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0071998Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0079387Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0087498Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0094854Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0102100Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0109331Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0117197Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0124373Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0131869Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0138872Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0146889Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0154252Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0161879Z 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:46:23.0170725Z 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:46:23.0208953Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0209893Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0210919Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0272392Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0282185Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0290155Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0298422Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0306273Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0313136Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0320316Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0327509Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0334129Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0341418Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0348578Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0355619Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0363076Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0370592Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0378001Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0385606Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0392661Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0399493Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0406599Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0413626Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0422863Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0428902Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0435886Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0443366Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0450654Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0457930Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0465103Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0472881Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0479939Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0487185Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0494922Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0501929Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0508886Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0516655Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0524510Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0531524Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0538887Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0551524Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0558306Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0565373Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0572861Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0580726Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0619690Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0627982Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0634781Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0642226Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0649599Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0657523Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0664428Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0671671Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0678524Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0686432Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0695004Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0700670Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0707393Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0714579Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0721583Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0728849Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0735756Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0742622Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0749840Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0756786Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0763798Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0770697Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0778116Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0784893Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0791350Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0798260Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0804786Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0812139Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0819366Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0827270Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0834438Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0841336Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0848117Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0855407Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0862268Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0868730Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0875796Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0882612Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0889269Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0896170Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0902790Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0909652Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0916711Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0924170Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0931489Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0941760Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0949148Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0956644Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0963865Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0971107Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0978497Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0985805Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.0993214Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1000386Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1007373Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1014791Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1022146Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1029644Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1036985Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1046038Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1053512Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1060412Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1067974Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1075749Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1083749Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1090799Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1098342Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1105345Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1113560Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1151593Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1196376Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1228814Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1235910Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1243419Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1250838Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1258369Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1265231Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1272518Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1280882Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1288073Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1295360Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1302476Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1309264Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1316305Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1322927Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1330057Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1337428Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1344488Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1351511Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1358813Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1365941Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1372792Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1380147Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1386966Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1394062Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1403191Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1411506Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1453783Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1460901Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1468003Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1475101Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1482397Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1489666Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1496387Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1503694Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1510410Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1517283Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1524340Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1531538Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1538637Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1545940Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1553596Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1560452Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1567295Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1574250Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1581952Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1588397Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1595293Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1602478Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1609916Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1616930Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1624284Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1631782Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1638708Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1646290Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1653462Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1661000Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1668139Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1676349Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1685223Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1698408Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1699174Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1705029Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1715242Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1723464Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1728768Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1735897Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1743742Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1751033Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1757899Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1764960Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1772109Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1778961Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1786015Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1794214Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1800807Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1808571Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1815843Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1822748Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1829739Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1837578Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1844272Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1851518Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1858669Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1904905Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1912021Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1919275Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1926267Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1933883Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1941106Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1948360Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1955969Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1962874Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1969892Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1977023Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1984208Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1991771Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.1998761Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2005790Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2013063Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2020542Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2027434Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2034715Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2042303Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2049780Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2056981Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2064198Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2072191Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2079316Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2086255Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2093520Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2101059Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2107953Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2115237Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2122209Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2129625Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2136687Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2144499Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2151844Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2159329Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2166327Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2173317Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2180158Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2187505Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2195259Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2203438Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2210862Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2218863Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2226136Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2233397Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2240363Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2247405Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2254302Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2261407Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2268562Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2275658Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2282750Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2312144Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2319063Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2325929Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2332752Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2340736Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2347108Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2353831Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2360962Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2367781Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2375094Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2382530Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2389848Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2398189Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2405939Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2413833Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2421251Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2428708Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2436328Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2442754Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2449656Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2457057Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2463561Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2470084Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2477414Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2484056Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2490902Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2498102Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2505355Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2513460Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2521640Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2528512Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2535184Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2542378Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2549293Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2556257Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2563790Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2570931Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2578675Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2585828Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2593657Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2601119Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2608362Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2614959Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2622410Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2629613Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2636701Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2644145Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2652150Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.2659644Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4175066Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4182557Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4189831Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4197918Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4204874Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4211873Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4218874Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4225928Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4233150Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4240695Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4247661Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4254515Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4261360Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4267861Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4274931Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4281720Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4288310Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4296275Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4303259Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4310054Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4317159Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4324659Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4331764Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4339865Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4346915Z 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:46:23.4355217Z 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:46:23.4362914Z 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:46:23.4370714Z 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:46:23.4378230Z 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:46:23.4386236Z 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:46:23.4393753Z 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:46:23.4401418Z 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:46:23.4408730Z 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:46:23.4416546Z 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:46:23.4424022Z 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:46:23.4431375Z 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:46:23.4438778Z 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:46:23.4446171Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4453599Z 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:46:23.4461253Z 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:46:23.4469141Z 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:46:23.4476725Z 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:46:23.4484932Z 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:46:23.4492952Z 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:46:23.4500301Z 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:46:23.4508012Z 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:46:23.4515946Z 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:46:23.4523554Z 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:46:23.4531362Z 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:46:23.4538627Z 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:46:23.4546361Z 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:46:23.4553844Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4561383Z 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:46:23.4569869Z 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:46:23.4576902Z 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:46:23.4584166Z 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:46:23.4592570Z 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:46:23.4599650Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4606989Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4614580Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4622689Z 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:46:23.4630597Z 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:46:23.4638722Z 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:46:23.4645747Z 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:46:23.4652979Z 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:46:23.4660529Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4667588Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4675469Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4683224Z 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:46:23.4690379Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4697642Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4744150Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4751961Z 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:46:23.4759337Z 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:46:23.4766172Z 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:46:23.4773296Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4780725Z 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:46:23.4787866Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4795146Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4802428Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4809848Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4816663Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4823719Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4831276Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4839580Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4847521Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4854709Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4862178Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4869536Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4876529Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4883594Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4890871Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4898769Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4906313Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4913494Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4920777Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4928074Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4935704Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4943086Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4950195Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4958135Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4965735Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4973006Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4979804Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4987173Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.4994533Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5001595Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5008685Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5015856Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5023965Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5031308Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5038432Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5045489Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5053026Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5060127Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5067644Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5075289Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5082889Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5090617Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5097642Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5104493Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5112024Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5120178Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5127259Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5135118Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5144487Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5151062Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5158069Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5165200Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5172580Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5180177Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5186832Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5194523Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5202137Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5209011Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5216481Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5223328Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5231314Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5238395Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5245310Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5252436Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5259803Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5266799Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5273973Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5281417Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5289739Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5296938Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5309390Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5316399Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5323685Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5330849Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5337921Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5344986Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5354095Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5362141Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5369091Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5376557Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5383560Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5391106Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5398043Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5404925Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5412153Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5419559Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5426313Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5433772Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5441563Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5448816Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5456158Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5463533Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5471492Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5478999Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5486213Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5493634Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5501261Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5508604Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5544051Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5544941Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5545846Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5546652Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5547824Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.5560875Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6562087Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6563261Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6564087Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6565035Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6565778Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6566470Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6567315Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6568192Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6568988Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6569693Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6570577Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6571520Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6572510Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6573533Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6574571Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6575384Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6576140Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6576849Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6577554Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6578433Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6579330Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6580087Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6580805Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6581693Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6582604Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6583352Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6584234Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6585136Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6585942Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6586723Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6587444Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6588177Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6589130Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6590070Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6590958Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6591702Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6592653Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6593705Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6594515Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6595311Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6596222Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6597198Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6598069Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6604154Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6610829Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6617853Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6625236Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6633030Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6640170Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6647312Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6654415Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6661858Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6668827Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6675962Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6683234Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6690354Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6697263Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6704144Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6710960Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6718347Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6725827Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6733683Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.6744317Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7566707Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7574331Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7581230Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7587994Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7595632Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7602784Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7609761Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7617652Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7624668Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7631956Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7638964Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7645935Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7683462Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7690511Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7697832Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7705713Z 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:46:23.7713402Z 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:46:23.7720778Z 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:46:23.7728669Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7736532Z 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:46:23.7744794Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7752897Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7760349Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7767594Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7775121Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7782532Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7790030Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7797356Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7804954Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7813563Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7820629Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7827841Z 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:46:23.7836053Z 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:46:23.7842818Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7849909Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7857401Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7864960Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7872159Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7879099Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7886604Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7893591Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7900663Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7908050Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7915021Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7921868Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7928667Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7935717Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7942665Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7949362Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7956017Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7962745Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7969628Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7976855Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7984136Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.7990903Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8004222Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8011741Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8018830Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8025958Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8033061Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8039834Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8047428Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8054513Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8061892Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8069014Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8076882Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8084099Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8091241Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8098463Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8106170Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8113631Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8120796Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8127800Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8135529Z 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:46:23.8142719Z 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:46:23.8149886Z 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:46:23.8157578Z 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:46:23.8165130Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8171756Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8179204Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8186396Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8194548Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8202023Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8209894Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8218148Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8224938Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8232892Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8240499Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8248051Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8256143Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8263207Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8270417Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8277823Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8284711Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8291753Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8298184Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8305377Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8312976Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8319572Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8326128Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8332879Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8340365Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8347458Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8354662Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8361923Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8369148Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8376124Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8383212Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8390960Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8397962Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8404965Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8411831Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8418743Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8425782Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8432804Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8439386Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8446678Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8453780Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8461246Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8468406Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8475488Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8482640Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8489891Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8496754Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8504122Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8512736Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8519439Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8527011Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8534516Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8542320Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8549643Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8556963Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8564159Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8571543Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8578698Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8585456Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8592495Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8599523Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8606615Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8613452Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8620570Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8628356Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8635911Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8648831Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8657100Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8664884Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8671659Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8678921Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8686246Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8694119Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8701401Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8708362Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8715422Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8723921Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8730825Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8738740Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8746526Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8754729Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8761039Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8768279Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8775286Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8782253Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8789199Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8796233Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8803358Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8810691Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8817585Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8824611Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8831938Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8838892Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8846049Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8853515Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8861474Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8868885Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8876104Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8882911Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8890186Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8897842Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8905198Z 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:46:23.8912594Z 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:46:23.8919947Z 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:46:23.8927021Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8934089Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8941310Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8978633Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8985735Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.8993098Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9000159Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9007772Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9014918Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9022335Z 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:46:23.9030067Z 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:46:23.9037383Z 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:46:23.9044540Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9051747Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9059076Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9066621Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9073956Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9081364Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9088387Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9095907Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9107951Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9115436Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9122591Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9130102Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9136875Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9143894Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9150974Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9157953Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9164900Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9171778Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9178873Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9186117Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9193128Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9200517Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9207884Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9215123Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9222613Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9229470Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9236864Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9244388Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9251792Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9259105Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9266315Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9274391Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9281642Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9289254Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9298157Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9304564Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9311175Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9318413Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9325339Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9332461Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9339901Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9346975Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9354209Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9368070Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9371315Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9382804Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9390310Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9398737Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9405674Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9412767Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9420138Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9426957Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9434120Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9446507Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9453737Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9460642Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9468139Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9475229Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9482274Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9489396Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9496819Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9503714Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9510665Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9518346Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9525447Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9532830Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9540220Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9547424Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9554840Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9562263Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9569329Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9576453Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9583687Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9591769Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9598989Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9606364Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9640226Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9647418Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9655220Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9662011Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9669465Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9676701Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9683880Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9691751Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9699394Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9706894Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9714580Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9721672Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9733409Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9741057Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9748611Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9756229Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9763829Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9770822Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9838784Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9873465Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9880406Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9887361Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9894408Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9901566Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9908498Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9915597Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9922858Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9930236Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9937190Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9943990Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9950786Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9957783Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9964684Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9971586Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9978661Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9985469Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:23.9992946Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0005175Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0012393Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0019582Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0027611Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0034867Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0046048Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0053112Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0060524Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0068026Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0075457Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0082318Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0089678Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0097722Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0104791Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0111800Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0123390Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0130917Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0138731Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0146199Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0153424Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0160912Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0168371Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0175518Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0182650Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0189734Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0203553Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0209912Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0217857Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0224915Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0232330Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0244796Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0259562Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0260357Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0268002Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0275390Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0287728Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0294936Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0303231Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0308675Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0315604Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0326853Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0333842Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0340414Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0347266Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0354316Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0368284Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0375062Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0381990Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0388895Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0396171Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0407277Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0414535Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0422203Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0429024Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0436200Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0443152Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0450129Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0457007Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0463913Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0471383Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0478214Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0485009Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0492007Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0498769Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0505533Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0517031Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0523858Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0530676Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0537293Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0543879Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0551362Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0558846Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0566368Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0573564Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0581714Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0588940Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0596165Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0603351Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0611145Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0618177Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0625693Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0634753Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0641622Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0648892Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0656058Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0663655Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0670682Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0677851Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0685344Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0693046Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0700066Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0707549Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0715252Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0722387Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0729576Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0737128Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0744974Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0752957Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0785622Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0786409Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0787197Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0787929Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0792059Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0799719Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0806763Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0813894Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0821863Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0828626Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0835883Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0843439Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0850631Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0857711Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0864797Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0872160Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0879197Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0886313Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0893756Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0900996Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0908193Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0916239Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0923322Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0931208Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0938227Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0945503Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0952931Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0959580Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0966632Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0973619Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0980611Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0987477Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.0995802Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1002683Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1009988Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1017278Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1024530Z 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:46:24.1031518Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1038833Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1046317Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1053399Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1061050Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1068073Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1075181Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1082381Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1089748Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1096715Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1103651Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1110937Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1117626Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1124744Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1131777Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1138809Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1145848Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1152864Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1159762Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1166850Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1174424Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1180724Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1219374Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1226308Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1233807Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1240308Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1247180Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1254674Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1262201Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1269540Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1277137Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1289065Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1292457Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1299331Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1307521Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1314020Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1320724Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1327588Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1334099Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1341427Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1352893Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1359879Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1366623Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1373630Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1386189Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1393653Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1400696Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1408017Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1414874Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1421722Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1428780Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1435922Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1442854Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1450108Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1457030Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1463988Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1471081Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1478279Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1485592Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1492522Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1500201Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1506950Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1517819Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1520803Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1527622Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1534595Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1541314Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1548426Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1555688Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1562568Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1570163Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1576811Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1583899Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1591739Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1599757Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1606675Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1613868Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1620940Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1627945Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1634890Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1642014Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1649509Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1656891Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1664471Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1697617Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1709341Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1717171Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1724101Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1731156Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1738377Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1745881Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1752862Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1760220Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1768462Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1790041Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1790918Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1793597Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1801218Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1808464Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1815464Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1822474Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1829844Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1837367Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1844076Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1851171Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1858481Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1865653Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1872768Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1879703Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1887159Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1894835Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1901500Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1908838Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1916035Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1922971Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1930107Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1936916Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1944164Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1951498Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1958395Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1965183Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1972473Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1980007Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1986967Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.1993890Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2005463Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2012194Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2019080Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2026044Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2032779Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2040044Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2047852Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2055149Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2062089Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2069360Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2077488Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2084174Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2091650Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2099109Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2106770Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2113688Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2120783Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2128484Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2136425Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2143398Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2150895Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2157999Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2165779Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2172359Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2234300Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2244783Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2255093Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2278674Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2288631Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2295748Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2303126Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2310604Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2317528Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2333243Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2334401Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2341793Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2347934Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2355083Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2361971Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2368511Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2375269Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2382094Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2388791Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2395638Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2402179Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2408906Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2416525Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2423419Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2431501Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2438655Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2446539Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2453929Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2460973Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2469176Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2476548Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2483789Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2490850Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2497893Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2504804Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2511892Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2519211Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2526359Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2533390Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2540543Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2547597Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2554790Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2561809Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2569118Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2575797Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2582836Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2590257Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2598462Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2610289Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2617363Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2624441Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2631691Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2639464Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2651306Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2662659Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2669596Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2676837Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2683712Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2690612Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2697908Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2704836Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2716431Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2723509Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2731152Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2739016Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2746129Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2753385Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2760402Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2768470Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2775599Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2782846Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2789820Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2798676Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2804969Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2812073Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2819310Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2830757Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2837719Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2844613Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2851161Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2858469Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2865921Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2873275Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2880752Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2887897Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2895506Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2902560Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2909687Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2917399Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2924957Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2932015Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2939217Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2946401Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2954447Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2961622Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2969165Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2976288Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2983874Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2990973Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.2999342Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3006507Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3019072Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3027579Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3034250Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3041467Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3049232Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3056796Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3063868Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3071254Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3078603Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3085910Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3092923Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3099958Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3107049Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3114541Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3121971Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3129414Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3136648Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3143784Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3151483Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3158656Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3166116Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3174119Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3181546Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3188722Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3195968Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3203454Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3211228Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3218409Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3225544Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3233555Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3240925Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3248323Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3256141Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3263405Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3270847Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3278042Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3286472Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3293374Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3301129Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3307836Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3315190Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3322527Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3329858Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3336927Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3344301Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3351383Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3358132Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3365154Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3372663Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3379949Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3387724Z 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:46:24.3395013Z 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:46:24.3402457Z 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:46:24.3409532Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3416641Z 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:46:24.3424142Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3431322Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3438421Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3445479Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3452619Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3460108Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3467364Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3474890Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3481977Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3489379Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3497002Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3504065Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3547160Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3555008Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3562967Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3570342Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3577518Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3584906Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3592835Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3600616Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3607939Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3615269Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3622778Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3630408Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3637838Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3645715Z 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:46:24.3654692Z 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:46:24.3660811Z 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:46:24.3668328Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3675776Z 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:46:24.3683625Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3690842Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3698789Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3706521Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3713950Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3752211Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3759639Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3766744Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3774345Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3782666Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3790071Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3797972Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3805531Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3813880Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3820286Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3832231Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3839930Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3847365Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3854615Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3862939Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3869559Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3877092Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3884702Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3892540Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3899600Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3906806Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3914161Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3921596Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3928746Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3936420Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3948080Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3955659Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3962727Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3969907Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3976928Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3984439Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3992123Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.3999421Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4006489Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4013825Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4020955Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4028051Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4035398Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4043005Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4050749Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4063082Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4070728Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4079210Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4087191Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4095956Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4103860Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4111937Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4120106Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4127904Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4134955Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4143627Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4149758Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4157219Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4164334Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4171822Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4179647Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4187271Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4194544Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4201762Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4208839Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4221846Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4229255Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4236735Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4243712Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4250954Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4258158Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4265141Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4272386Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4279537Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4286800Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4293889Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4301685Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4308729Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4315943Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4323435Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4330602Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4337635Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4344984Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4352574Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4360039Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4367893Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4375755Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4383519Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4391838Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4399765Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4408356Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4416164Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4424024Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4431609Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4439517Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4446859Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4453730Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4461725Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4468813Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4504053Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4511427Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4518528Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4526281Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4533447Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4545507Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4552862Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4560043Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4567322Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4574544Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4582246Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4589280Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4596654Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4603608Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4610790Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4618248Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4625690Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4650801Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4658022Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4665122Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4672517Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4679700Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4686904Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4693979Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4701353Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4708451Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4715885Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4722624Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4729910Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4736843Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4744036Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4751416Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4758671Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4765852Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4773501Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4781589Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4789155Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4796180Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4803344Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4810378Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4817653Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4829516Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4836648Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4844020Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4851014Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4857797Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4869107Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4876350Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4883250Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4890122Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4897133Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4903950Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4910889Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4918751Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4925570Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4932722Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4939946Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4946991Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4954136Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4961176Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4968728Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4979722Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4987000Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.4994352Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5001370Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5008466Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5015946Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5022976Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5030408Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5037814Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5045043Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5056480Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5063599Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5071307Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5078265Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5085083Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5092375Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5099586Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5106880Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5114221Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5121624Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5128817Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5136418Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5143897Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5152117Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5160008Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5167969Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5176108Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5184150Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5191888Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5204810Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5212229Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5219887Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5227022Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5234428Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5241792Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5249172Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5256405Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5263586Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5271046Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5278320Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5284954Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5292370Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5303854Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5311229Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5318339Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5325698Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5332805Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5339972Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5346892Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5354546Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5362440Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5369502Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5376719Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5405240Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5412397Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5419761Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5427026Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5434332Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5441500Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5448625Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5455990Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5463532Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5471014Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5478435Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5485625Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5492824Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5500584Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5508522Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5514904Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5522199Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5533578Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5540559Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5547611Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5555609Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5563231Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5570358Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5578330Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5585678Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5592911Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5600131Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5607307Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5614421Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5621979Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5629185Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5636671Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5644017Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5651870Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5658929Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5671805Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5675980Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5683483Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5690997Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5698005Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5705255Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5713056Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5720329Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5728004Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5735351Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5742800Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5749622Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5756832Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5793182Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5800711Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5808634Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5816141Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5827198Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5836204Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5842909Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5850130Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5856952Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5864515Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5871849Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5878752Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5886197Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5892985Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5900036Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5907138Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5914862Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5924017Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5929251Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5936740Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5943552Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5950456Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5957921Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5965081Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5980721Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5988473Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.5995551Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6002471Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6009669Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6017265Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6024308Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6031673Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6038713Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6049450Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6057363Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6064606Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6071922Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6079014Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6086443Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6094408Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6101803Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6109354Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6117255Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6124264Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6136182Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6143624Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6150930Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6158512Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6165481Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6176749Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6184326Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6191939Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6200308Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6207696Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6214868Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6223043Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6229483Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6236865Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6244281Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6256291Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6264017Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6271526Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6279155Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6286084Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6293723Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6301128Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6308287Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6315385Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6322785Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6329456Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6336522Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6343378Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6350651Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6358285Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6370260Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6395130Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6395921Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6396699Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6430311Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6431449Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6432481Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6433450Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6437550Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6445200Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6456575Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6463802Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6471423Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6478616Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6485684Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6498271Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6506241Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6513345Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6520722Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6527529Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6535295Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6542199Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6549798Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6556995Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6564218Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6576000Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6583050Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6590581Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6598042Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6605172Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6612261Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6619170Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6626772Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6634271Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6641304Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6648605Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6655915Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6662901Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6670830Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6678387Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6686419Z 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:46:24.6697919Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6706149Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6713395Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6721284Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6729617Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6736774Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6744331Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6752168Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6759307Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6767017Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6774420Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6781918Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6790615Z 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:46:24.6798230Z 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:46:24.6806093Z 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:46:24.6813440Z 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:46:24.6821889Z 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:46:24.6828858Z 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:46:24.6836463Z 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:46:24.6848715Z 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:46:24.6855985Z 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:46:24.6863699Z 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:46:24.6871026Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6878566Z 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:46:24.6886332Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6894049Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6900961Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6908350Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6915491Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6922566Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6929663Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6937452Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.6944667Z 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:46:24.6952078Z 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:46:24.6963914Z 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:46:24.6971180Z 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:46:24.6978437Z 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:46:24.6986460Z 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:46:24.6993734Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7001370Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7008557Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7015690Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7022779Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7030040Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7041852Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7048947Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7056468Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7063691Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7070968Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7082859Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7089852Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7097339Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7104475Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7112735Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7119195Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7126737Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7133859Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7141596Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7149339Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7156628Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7163440Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7171456Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7178505Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7186136Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7198580Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7206125Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7213488Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7220689Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7227841Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7235932Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7243045Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7250072Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7256801Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7264169Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7275301Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7282063Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7290206Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7297146Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7304487Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7312195Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7319964Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7355091Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7362227Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7369198Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7380795Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7387856Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7394895Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7401885Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7409080Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7420472Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7427355Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7434885Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7442039Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7449598Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7457631Z 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:46:24.7464130Z 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:46:24.7471663Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7478782Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7486291Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7493316Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7500349Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7507479Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7514970Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7522596Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7529890Z 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:46:24.7538095Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7545260Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7552716Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7559953Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7567148Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7574604Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7582466Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7589943Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7597438Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7604813Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7612002Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7620120Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7627790Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7635049Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7642301Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7649718Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7657311Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7665084Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7672663Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7680259Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7687686Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7695216Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7702823Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7710238Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7722458Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7730477Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7737575Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7744904Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7752382Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7764346Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7771911Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7778780Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7786182Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7794613Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7802909Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7810690Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7847115Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7855137Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7862209Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7869304Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7876446Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7883395Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7890497Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7898095Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7904647Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7911337Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7918781Z 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:46:24.7926107Z 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:46:24.7933088Z 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:46:24.7940146Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7947399Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7954644Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7962068Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7968960Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7976434Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7984051Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7991436Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.7998958Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8006187Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8013981Z 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:46:24.8021517Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8028614Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8036159Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8043191Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8054881Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8062528Z 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:46:24.8069821Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8077188Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8084596Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8092208Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8099234Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8106558Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8113934Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8121551Z 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:46:24.8128599Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8135689Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8143524Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8150795Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8158050Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8172341Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8180377Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8188015Z 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:46:24.8196169Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8203850Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8215470Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8222878Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8230627Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8237891Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8245489Z 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:46:24.8252733Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8259847Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8267577Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8275494Z 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:46:24.8282726Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8294028Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8301935Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8309423Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8317424Z 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:46:24.8324592Z 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:46:24.8332336Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8339690Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8347152Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8354384Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8361717Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8369454Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8376466Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8384003Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8392459Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8399779Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8408242Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8415709Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8423590Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8435276Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8443506Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8450638Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8458171Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8465269Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8472679Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8480492Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8487697Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8494696Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8501787Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8508968Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8516857Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8523960Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8531067Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8537967Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8544842Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8612138Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8619772Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8668723Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8813623Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8821350Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8836120Z 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:46:24.8843652Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8851508Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8858842Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8865900Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8873235Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8883518Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8889792Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8898134Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8905798Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8912898Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8920151Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8927384Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8934442Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8941665Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8949282Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8957295Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8964784Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8972316Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8980636Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8987412Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.8994942Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9001811Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9008665Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9015516Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9022299Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9032773Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9041746Z 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:46:24.9049588Z 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:46:24.9057296Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9064980Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9072933Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9080554Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9088057Z 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:46:24.9095364Z 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:46:24.9103106Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9112444Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9119773Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9127079Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9134897Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9142339Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9149726Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9157623Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9165132Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9172767Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9180014Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9191503Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9199087Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9207034Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9214757Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9222790Z 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:46:24.9230546Z 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:46:24.9238445Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9246903Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9253611Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9262594Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9271318Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9278922Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9287042Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9331927Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9332841Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9333636Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9334379Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9340301Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9347501Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9805141Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9813130Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9820928Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9828990Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9835428Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9842960Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9849853Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9857227Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9865252Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9872465Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9879603Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9887096Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9893991Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9900898Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9908331Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9915722Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9922940Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9930511Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9937221Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9944891Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9952245Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9959452Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9967280Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9974045Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9981008Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9988662Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:24.9996471Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0002975Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0010228Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0017271Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0024466Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0036395Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0044002Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0050954Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0058191Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0065855Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0073045Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0080801Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0088068Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0095206Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0102935Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0110017Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0117600Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0124876Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0132383Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0139628Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0147579Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0155643Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0163240Z 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:46:25.0170643Z 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:46:25.0178402Z 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:46:25.0190660Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0197406Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0204744Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0212259Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0219997Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0231792Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0239320Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0247231Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0254413Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0261780Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0269096Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0276496Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0284033Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0291686Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0298976Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0306307Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0313937Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0320887Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0328448Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0335509Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0342866Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0350205Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0358327Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0365418Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0372684Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0380755Z 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:46:25.0387950Z 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:46:25.0395554Z 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:46:25.0402573Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0409736Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0417150Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0424465Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0431766Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0438862Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0445915Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0453362Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0461146Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0468793Z 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:46:25.0476455Z 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:46:25.0483415Z 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:46:25.0490531Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0497965Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0505448Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0541468Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0548675Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0555883Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0563318Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0570404Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0578169Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0586370Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0593575Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0601448Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0609179Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0616444Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0623682Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0630749Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0637858Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0645577Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0653085Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0660151Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0667767Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0674164Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0712382Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0719479Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0726433Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0734447Z 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:46:25.0741371Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0748532Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0756305Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0764132Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0771582Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0779052Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0787262Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0794536Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0801980Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0809148Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0816719Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0824292Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0832191Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0839605Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0846562Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0853893Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0862221Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0868390Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0875591Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0883093Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0890423Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0897341Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0904565Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0911655Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0919001Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0925922Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0934173Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0941050Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0948303Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0956442Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0963886Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0971268Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0978334Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0985178Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0992585Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.0999125Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1005971Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1012985Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1019636Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1031180Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1038186Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1045349Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1052641Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1059769Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1066828Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1074447Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1081447Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1089174Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1096330Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1108076Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1115303Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1122499Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1129525Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1136720Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1144352Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1151773Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1158922Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1166251Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1173342Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1180464Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1187577Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1194973Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1202248Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1210103Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1222042Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1224509Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1232304Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1239562Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1246906Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1254134Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1261583Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1268520Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1275962Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1283019Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1289966Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1297308Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1304272Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1311157Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1318196Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1325454Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1358586Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1359562Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1360520Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1361333Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1371705Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1379034Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1386370Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1393764Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1401009Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1408194Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1416048Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1422799Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1429847Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1437094Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1444494Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1451617Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1458525Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1465940Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1474555Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1481591Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1488717Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1495871Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1502805Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1510208Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1517673Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1525284Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1532237Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1539447Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1546804Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1554662Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1561814Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1569438Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1576748Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1584070Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1591246Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1598558Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1605823Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1613225Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1620436Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1628087Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1635597Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1642505Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1649522Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1656414Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1686978Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1693914Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1701362Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1709045Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1716365Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1723609Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1732176Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1738969Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1746195Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1753837Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1760924Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1769035Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1775964Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1783139Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1790685Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1797585Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1805613Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1812428Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1819956Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1828202Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1834538Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1841994Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1848951Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1855785Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1862959Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1875679Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1879582Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1886574Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1893923Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1900456Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1907471Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1914200Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1921079Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1927973Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1934761Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1941344Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1948139Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1955735Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1963084Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1970130Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1977209Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1984431Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1991910Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.1998925Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2005876Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2012594Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2024258Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2030991Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2037961Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2044804Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2051535Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2059123Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2070691Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2077883Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2084975Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2092374Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2099326Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2106194Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2117869Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2125150Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2131819Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2138875Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2146086Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2153145Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2164936Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2172732Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2180136Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2187311Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2194623Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2201800Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2208948Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2216632Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2225479Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2232786Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2239865Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2247012Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2258515Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2266068Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2273390Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2280461Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2287583Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2294870Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2306785Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2314607Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2322365Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2330342Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2337769Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2344839Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2356994Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2364082Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2370988Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2378134Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2385107Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2393159Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2400388Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2408018Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2414979Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2422525Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2429481Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2436663Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2444169Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2451207Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2458643Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2465467Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2472904Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2480175Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2487151Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2494548Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2501911Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2538744Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2545640Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2552351Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2559419Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2566179Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2572882Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2579983Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2587044Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2593768Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2601139Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2608276Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2615206Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2622161Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2629982Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2637123Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2644104Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2651237Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2658116Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2665245Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2672645Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2680070Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2691809Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2699406Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2706346Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2713413Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2722184Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2729951Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2737718Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2745500Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2752762Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2759323Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2767099Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2773769Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2781131Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2788067Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2794721Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2801542Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2808749Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2816119Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2828030Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2835838Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2843612Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2851795Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2859327Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2866965Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2874701Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2882240Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2889309Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2896555Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2903659Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2912561Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2918654Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2925784Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2932857Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2940562Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2947656Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2955161Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2980175Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2987628Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.2994960Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3002503Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3009788Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3017780Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3029853Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3037481Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3045191Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3053123Z 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:46:25.3060299Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3067612Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3081996Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3089660Z 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:46:25.3096784Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3104046Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3111623Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3119148Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3130810Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3138248Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3145552Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3153281Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3160749Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3168350Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3180029Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3187589Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3195172Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3203251Z 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:46:25.3210720Z 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:46:25.3217872Z 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:46:25.3230508Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3237834Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3245113Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3252313Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3259503Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3266493Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3273593Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3280860Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3288798Z 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:46:25.3296371Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3303145Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3310755Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3327253Z 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:46:25.3335158Z 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:46:25.3342365Z 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:46:25.3349426Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3356549Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3363202Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3370087Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3377194Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3384284Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3391435Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3398524Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3405288Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3416741Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3423717Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3431840Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3439599Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3446601Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3454329Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3461389Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3468493Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3476168Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3483435Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3490477Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3497867Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3505401Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3512373Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3519650Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3526816Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3533693Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3540671Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3554230Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3561210Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3569202Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3576246Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3583784Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3591220Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3598959Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3606419Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3614339Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3622238Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3628637Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3635822Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3649984Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3657468Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3664485Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3672107Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3679701Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3686771Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3694237Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3701130Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3708300Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3716177Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3723131Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3730007Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3741718Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3749169Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3756734Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3763740Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3771375Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3778207Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3785915Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3793309Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3800123Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3806993Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3814211Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3820883Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3827664Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3834586Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3841393Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3848995Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3855866Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3862879Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3870609Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3877738Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3884742Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3891744Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3898926Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3906045Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3913864Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3920627Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3927679Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3934789Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3941801Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3948622Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3956077Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3963096Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3970727Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3978124Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3985239Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.3992607Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4000100Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4007159Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4014265Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4021798Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4028875Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4036381Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4043484Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4050934Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4058118Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4065143Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4107530Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4115388Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4123047Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4130344Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4138430Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4146135Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4154272Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4161799Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4169684Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4177356Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4184755Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4192351Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4200243Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4207421Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4215294Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4222718Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4230164Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4239046Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4245850Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4253653Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4266095Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4274415Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4281456Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4288804Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4297336Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4304080Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4311343Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4318712Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4327089Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4333199Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4340072Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4376429Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4384637Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4390578Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4398501Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4405639Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4412400Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4419766Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4427275Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4434496Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4441647Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4448637Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4455890Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4462923Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4475099Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4483153Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4490097Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4497524Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4504805Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4513532Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4519927Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4527062Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4534820Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4542061Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4549217Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4556448Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4568474Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4607587Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4613796Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4620945Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4628252Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4636572Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4648665Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4655628Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4663095Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4670509Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4678593Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4685667Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4692829Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4700123Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4707430Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4715596Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4722861Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4730905Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4743135Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4750661Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4758644Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4766052Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4773771Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4780895Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4788798Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4796334Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4804497Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4812779Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4819845Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4834458Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4841875Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4849484Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4856537Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4863928Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4871401Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4879083Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4886203Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4894056Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4901072Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4908353Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4915721Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4923087Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4934959Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4942666Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4949909Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4957503Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4965516Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4973575Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4981297Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4988668Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.4996154Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5003446Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5010736Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5018000Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5029986Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5037329Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5044403Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5051786Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5058545Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5065442Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5072386Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5079532Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5086643Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5094015Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5101678Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5109098Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5116582Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5123585Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5130878Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5137904Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5145183Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5152326Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5159469Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5166516Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5173587Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5181030Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5188199Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5195470Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5202920Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5210257Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5217211Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5224347Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5232151Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5238645Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5248273Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5298762Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5299718Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5300767Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5301562Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5302325Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5303288Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5307149Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5314237Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5322476Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5329370Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5336853Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5343913Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5351189Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5358172Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5365617Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5372984Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5381076Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5387370Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5394422Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5401176Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5408155Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5415154Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5422305Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5429216Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5436965Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5443358Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5450525Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5457540Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5464861Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5472368Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5479510Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5500545Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5507802Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5514312Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5521444Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5528413Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5535648Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5542931Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5550603Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5557671Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5565669Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5572734Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5579611Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5586583Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5593752Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5600743Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5607291Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5614245Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5621110Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5627938Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5634936Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5642540Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5649863Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5657183Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5665061Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5672981Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5679739Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5697365Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5698266Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5701757Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5708714Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5716777Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5723872Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5731479Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5738353Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5745684Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5752702Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5760593Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5767611Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5774812Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5781957Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5794042Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5801679Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5808725Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5815762Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5823263Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5831468Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5839140Z 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:46:25.5846879Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5854935Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5862963Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5870578Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5878025Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5885197Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5892697Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5899702Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5906972Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5913992Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5921319Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5933375Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5940384Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5947519Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5954889Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5961937Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5970072Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5977048Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5984200Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5991555Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.5998458Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6005760Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6013128Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6020236Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6068298Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6075508Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6082409Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6089399Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6096341Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6102864Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6110001Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6116955Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6123825Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6131182Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6138441Z 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:46:25.6145331Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6153044Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6159868Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6166568Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6173948Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6181451Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6188640Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6196149Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6203245Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6210564Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6217801Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6225406Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6233148Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6241240Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6248015Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6255307Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6263220Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6270779Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6283453Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6290891Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6298351Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6306136Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6313831Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6321111Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6329343Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6336495Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6344341Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6351975Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6359435Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6366657Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6374921Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6383274Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6390051Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6397244Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6404552Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6411714Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6418765Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6426105Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6433274Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6441556Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6447499Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6454965Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6462027Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6468970Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6476074Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6483598Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6490795Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6497837Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6505396Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6513262Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6520146Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6527374Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6534785Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6541671Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6548759Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6556378Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6563578Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6570541Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6577808Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6614710Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6621752Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6628859Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6635645Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6642352Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6649323Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6656419Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6668255Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6675362Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6682250Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6688866Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6695677Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6703042Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6715125Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6722885Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6730041Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6736947Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6744141Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6751086Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6762636Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6770361Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6777081Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6784412Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6791445Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6798302Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6805570Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6813113Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6820016Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6827333Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6835861Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6843129Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6850576Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6858625Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6887726Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6888838Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6890087Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6890898Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6897902Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6906225Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6912623Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6919577Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6926440Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6933555Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6940960Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6948342Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6955324Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6962156Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6970857Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6977108Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6984571Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6991316Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.6998645Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7005777Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7012480Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7019315Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7031211Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7039552Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7046306Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7053778Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7061336Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7068197Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7080015Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7087043Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7094768Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7102046Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7109292Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7117039Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7128572Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7135495Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7142623Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7149349Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7156709Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7164117Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7170945Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7177715Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7185029Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7192597Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7200056Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7207131Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7218125Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7225187Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7232729Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7239640Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7247276Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7254254Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7261309Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7268577Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7276019Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7282771Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7290008Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7297394Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7304822Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7312057Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7319248Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7325728Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7332811Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7340636Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7369642Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7370514Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7371393Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7375860Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7382066Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7388534Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7396242Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7403441Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7410927Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7435971Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7443000Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7450777Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7462085Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7469144Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7476239Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7483913Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7491279Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7498198Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7505518Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7512709Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7519648Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7526587Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7534388Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7541942Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7549177Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7556217Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7563362Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7570371Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7577286Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7584459Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7595761Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7603177Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7610565Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7617798Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7624863Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7632063Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7643379Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7650487Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7657856Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7666224Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7675889Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7683702Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7697193Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7704813Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7712321Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7720569Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7728925Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7735590Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7743240Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7750968Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7758658Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7766483Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7774206Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7781833Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7794506Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7802166Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7809661Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7817433Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7824506Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7832237Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7839640Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7847602Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7855588Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7863012Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7870166Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7878266Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7885121Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7892258Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7899752Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7907804Z 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:46:25.7914921Z 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:46:25.7922284Z 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:46:25.7929681Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7937165Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7944942Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7953062Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7959741Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7966852Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7979191Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7986887Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.7994072Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8001601Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8009283Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8016359Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8023315Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8030937Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8038056Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8044852Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8053126Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8060300Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8067407Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8074670Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8081975Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8089246Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8096800Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8104730Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8112438Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8119817Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8127472Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8134690Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8142185Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8149656Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8157243Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8164327Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8172357Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8180693Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8187754Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8195274Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8208264Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8215926Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8222822Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8230259Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8237754Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8246529Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8259176Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8267434Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8274842Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8281965Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8289123Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8296554Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8308456Z 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:46:25.8316135Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8323250Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8330806Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8339038Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8351528Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8365350Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8367190Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8375512Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8382777Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8390953Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8398384Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8406018Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8413861Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8421448Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8428426Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8435822Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8443536Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8451175Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8458432Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8465766Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8473417Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8480912Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8488271Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8496167Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8503838Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8511468Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8519053Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8526759Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8534900Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8543510Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8551862Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8558938Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8567160Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8575353Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8582488Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8590032Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8597611Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8606376Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8646411Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8654038Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8661343Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8676194Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8683238Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8690476Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8698471Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8706091Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8713465Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8725537Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8732584Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8740645Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8748572Z 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:46:25.8757791Z 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:46:25.8765744Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8773428Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8782245Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8790704Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8798770Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8805604Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8813827Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8820682Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8828748Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8836695Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8844345Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8851222Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8858184Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8905870Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8913121Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8920612Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8927434Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8935392Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8944001Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8951648Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8958791Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.8994451Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9001491Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9008500Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9015612Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9022544Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9030033Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9037367Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9044628Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9051826Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9059194Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9071825Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9079700Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9086909Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9094657Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9101599Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9109023Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9116084Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9123275Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9130585Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9138253Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9145066Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9153371Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9161660Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9170776Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9178513Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9187262Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9196025Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9202971Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9215155Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:25.9223189Z 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:46:25.9231437Z 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:46:26.1415595Z 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:46:26.1424921Z 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:46:26.1446631Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1455261Z 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:46:26.1464023Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1472831Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1480960Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1489112Z 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:46:26.1496578Z 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:46:26.1504403Z 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:46:26.1511919Z 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:46:26.1519452Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1526944Z 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:46:26.1534189Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1541481Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1549124Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1557019Z 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:46:26.1564492Z 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:46:26.1571643Z 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:46:26.1578940Z 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:46:26.1586388Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1598678Z 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:46:26.1605996Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1614243Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1621815Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1629871Z 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:46:26.1637817Z 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:46:26.1650583Z 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:46:26.1657904Z 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:46:26.1665971Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1674042Z 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:46:26.1681516Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1689425Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1696523Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1704520Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1712775Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1720962Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1733142Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1741680Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1754925Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1762360Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1769915Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1778133Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1785611Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1793190Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1807129Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1813843Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1821102Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1829012Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1836710Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1844285Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1851848Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1860176Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1868223Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1877297Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1885256Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1893415Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1900304Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1907302Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1915603Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1945414Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1952605Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1960090Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1967392Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1974147Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1981303Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1989076Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.1996713Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2003770Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2011044Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2018423Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2026284Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2033564Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2041457Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2049030Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2060380Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2067389Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2074853Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2082500Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2090188Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2097515Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2104920Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2112521Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2119656Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2127171Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2134194Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2141691Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2149273Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2156657Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2164094Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2171391Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2179247Z 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:46:26.2186608Z 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:46:26.2194430Z 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:46:26.2201936Z 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:46:26.2209882Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2217538Z 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:46:26.2224954Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2232461Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2240889Z 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:46:26.2248282Z 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:46:26.2255822Z 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:46:26.2264060Z 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:46:26.2271315Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2279367Z 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:46:26.2292090Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2300035Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2307568Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2315557Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2323798Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2331160Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2343216Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2350846Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2358656Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2366211Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2373470Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2381751Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2389610Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2396662Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2403928Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2412820Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2419610Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2426720Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2438809Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2446530Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2453502Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2460813Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2468112Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2476171Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2483572Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2501097Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2502097Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2505178Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2512265Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2519785Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2531465Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2540964Z 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:46:26.2548479Z 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:46:26.2556119Z 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:46:26.2564063Z 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:46:26.2572448Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2580663Z 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:46:26.2589315Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2598421Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2605815Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2614194Z 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:46:26.2621912Z 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:46:26.2629224Z 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:46:26.2636955Z 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:46:26.2644581Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2652913Z 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:46:26.2661289Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2668274Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2684987Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2692976Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2700675Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2707874Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2715324Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2723380Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2730435Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2737780Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2745439Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2753263Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2760751Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2768091Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2780202Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2788200Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2795661Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2802819Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2811438Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2818913Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2826925Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2834889Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2842163Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2849845Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2858298Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2864810Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2872366Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2880337Z 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:46:26.2897793Z 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:46:26.2898790Z 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:46:26.2905114Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2914205Z 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:46:26.2925816Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2933903Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2941041Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.2949810Z 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:46:26.2957160Z 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:46:26.2964508Z 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:46:26.2971796Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3004835Z 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:46:26.3012086Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3019885Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3027091Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3035159Z 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:46:26.3042860Z 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:46:26.3050588Z 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:46:26.3058461Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3066369Z 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:46:26.3074070Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3081327Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3089592Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3097136Z 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:46:26.3104819Z 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:46:26.3112629Z 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:46:26.3119996Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3181319Z 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:46:26.3193009Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3200559Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3208227Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3216235Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3224197Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3231609Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3243222Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3251950Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3259615Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3267040Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3274652Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3281905Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3289343Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3296729Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3304538Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3312517Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3319892Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3327024Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3338852Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3346493Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3353828Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3361683Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3368521Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3375979Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3383130Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3391287Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3399229Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3406835Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3413995Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3422668Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3428971Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3436955Z 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:46:26.3444145Z 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:46:26.3451901Z 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:46:26.3459277Z 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:46:26.3466810Z 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:46:26.3474191Z 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:46:26.3481550Z 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:46:26.3488881Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3497148Z 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:46:26.3504205Z 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:46:26.3511577Z 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:46:26.3518921Z 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:46:26.3529483Z 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:46:26.3537344Z 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:46:26.3545019Z 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:46:26.3552161Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3560071Z 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:46:26.3567594Z 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:46:26.3575171Z 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:46:26.3582742Z 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:46:26.3590053Z 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:46:26.3597619Z 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:46:26.3605636Z 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:46:26.3613040Z 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:46:26.3620433Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3628425Z 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:46:26.3636087Z 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:46:26.3643800Z 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:46:26.3651433Z 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:46:26.3663226Z 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:46:26.3670963Z 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:46:26.3678669Z 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:46:26.3686552Z 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:46:26.3694321Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3702642Z 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:46:26.3719612Z 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:46:26.3727458Z 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:46:26.3735011Z 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:46:26.3743048Z 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:46:26.3750787Z 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:46:26.3758549Z 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:46:26.3766567Z 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:46:26.3774074Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3782346Z 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:46:26.3790561Z 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:46:26.3798488Z 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:46:26.3807022Z 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:46:26.3814742Z 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:46:26.3822948Z 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:46:26.3831136Z 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:46:26.3838989Z 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:46:26.3846316Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3854708Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3866158Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3873388Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3880743Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3892630Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3896403Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3904237Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3917209Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3925227Z 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:46:26.3932541Z 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:46:26.3940332Z 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:46:26.3947575Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3955678Z 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:46:26.3962461Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3969975Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3977284Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3985130Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3992749Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.3999870Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4007207Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4014565Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4022018Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4029506Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4037089Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4044191Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4057111Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4064308Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4071640Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4078923Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4086537Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4093937Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4102022Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4109819Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4117227Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4124831Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4132083Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4139544Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4146951Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4154292Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4162765Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4169620Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4177132Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4184705Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4192516Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4199697Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4207261Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4214341Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4222304Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4230059Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4242153Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4249978Z 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:46:26.4257825Z 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:46:26.4265013Z 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:46:26.4272468Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4279780Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4287422Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4295104Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4302366Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4310563Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4316813Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4323840Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4335047Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4342111Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4357469Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4364488Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4371264Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4378208Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4385664Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4392969Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4399947Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4407159Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4414431Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4421937Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4429408Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4436755Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4443761Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4451731Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4458952Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4466195Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4478549Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4485652Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4493140Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4500136Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4507612Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4514893Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4525878Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4532822Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4539555Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4546788Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4553430Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4560260Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4568046Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4575132Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4581964Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4588922Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4596092Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4602828Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4610071Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4617034Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4624329Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4631292Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4638089Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4644616Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4651452Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4658326Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4665524Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4672750Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4679598Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4686528Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4693093Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4699868Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4706617Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4713763Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4720858Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4728875Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4736654Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4743975Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4752319Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4758396Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4765311Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4771964Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4779006Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4786067Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4793288Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4800520Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4808426Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4816302Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4822917Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4830079Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4837473Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4844592Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4852825Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4859791Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4866978Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4874834Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4881914Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4888785Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4895776Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4903263Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4911081Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4918212Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4925093Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4932873Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4939837Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4947349Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4955122Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4962117Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4970011Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4976127Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4983112Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4990413Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.4997473Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5005040Z 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:46:26.5012460Z 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:46:26.5019684Z 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:46:26.5026764Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5051918Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5059249Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5066475Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5073718Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5080586Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5087743Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5094593Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5101490Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5108887Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5116065Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5123359Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5130767Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5137517Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5144603Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5152812Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5160353Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5167079Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5174257Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5180704Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5187440Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5194805Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5201729Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5208520Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5215450Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5222262Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5230105Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5237204Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5243732Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5250242Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5256824Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5264402Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5271273Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5278265Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5285593Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5292922Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5299877Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5307352Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5316019Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5321763Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5328970Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5336093Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5342774Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5349737Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5356733Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5363946Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5370897Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5378071Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5385185Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5391952Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5441665Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5442389Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5443099Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5447897Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5454282Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5461251Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5468846Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5476377Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5483861Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5490852Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5498059Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5504903Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5512280Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5519196Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5526973Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5533799Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5559719Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5567090Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5574450Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5582177Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5588921Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5596459Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5603611Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5610682Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5618414Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5625348Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5632912Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5640185Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5647184Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5654077Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5661224Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5668169Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5675263Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5682340Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5689435Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5696150Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5702936Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5710300Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5717911Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5725093Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5732001Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5739138Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5746641Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5754330Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5761748Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5768780Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5775629Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5783755Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5791639Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5798576Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5806649Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5814171Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5821655Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5828661Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5836440Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5844420Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5851667Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5858684Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5866517Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5873730Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5881254Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5889263Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5896354Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5903343Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5910686Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5919124Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5926654Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5933913Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5941104Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5948055Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5956122Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5962552Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5969354Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5976262Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5983085Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5989911Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.5997790Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6005284Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6012565Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6020080Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6027275Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6034491Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6041688Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6048812Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6056267Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6063222Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6070461Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6077911Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6084764Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6091351Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6098825Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6105782Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6112712Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6120028Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6127305Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6134681Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6141410Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6148319Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6155362Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6162867Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6170161Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6178116Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6186057Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6193618Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6200995Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6208168Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6215328Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6222704Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6230252Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6237627Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6244711Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6252034Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6259815Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6267155Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6274261Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6281281Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6289132Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6296564Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6303765Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6312544Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6319238Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6326775Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6334162Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6341894Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6348768Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6356258Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6363679Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6370808Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6378094Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6385382Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6392548Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6399619Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6422625Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6423413Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6424177Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6430792Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6438113Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6445219Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6452417Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6460169Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6467139Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6475116Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6482055Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6489261Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6496264Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6503250Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6510374Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6517753Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6524745Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6531691Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6538923Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6546510Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6553851Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6561304Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6568356Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6575335Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6582068Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6589433Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6597369Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6604757Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6612031Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6619457Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6627104Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6634276Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6641706Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6655895Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6664169Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6670871Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6677931Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6684835Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6692004Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6698988Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6706150Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6713479Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6721306Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6728991Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6736230Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6743076Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6750455Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6757567Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6764583Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6772349Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6779571Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6787304Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6794881Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6802127Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6809423Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6817194Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6824466Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6832352Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6840200Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6847409Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6854837Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6863750Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6870961Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6877973Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6885087Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6892875Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6900364Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6906924Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6914962Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6934256Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6935282Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6939579Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6945905Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6953205Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6960737Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6988002Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.6995445Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7002707Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7009904Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7017006Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7024416Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7031702Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7038718Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7045947Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7052954Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7060270Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7067151Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7074428Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7081448Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7088166Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7126991Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7134297Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7141334Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7148536Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7156171Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7163453Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7170498Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7178103Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7185573Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7193153Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7200297Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7207452Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7214724Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7222329Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7229729Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7237317Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7244539Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7252314Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7259613Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7266920Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7275223Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7281607Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7288755Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7296240Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7303428Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7310954Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7318646Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7326708Z 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:46:26.7334795Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7342405Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7349715Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7358195Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7365340Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7373060Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7381203Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7388424Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7396163Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7403630Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7410912Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7435978Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7436859Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7438005Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7443425Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7451076Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7458693Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7466526Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7474049Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7481215Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7489397Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7496674Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7504100Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7511501Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7519362Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7526776Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7534777Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7542114Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7549253Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7557475Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7565233Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7572435Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7579778Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7587105Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7595089Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7602854Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7610247Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7617849Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7625119Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7632550Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7640033Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7647382Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7654368Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7661401Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7668486Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7676110Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7684762Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7692008Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7699611Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7706856Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7714694Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7722492Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7729895Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7737252Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7744915Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7752711Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7760552Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7768338Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7775664Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7783029Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7791366Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7798342Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7805768Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7813232Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7821124Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7829035Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7836476Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7844564Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7851896Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7859744Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7867789Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7874670Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7882360Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7890862Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7897885Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7905630Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7913459Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7921484Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7929559Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7937366Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7944995Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7952615Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7961391Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7968312Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7975529Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7982814Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7990379Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.7997663Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8005491Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8013142Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8020419Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8028127Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8035680Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8042888Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8050317Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8057527Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8065487Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8073024Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8080314Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8087887Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8095642Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8103153Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8111086Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8118641Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8125970Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8133593Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8140791Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8148764Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8156473Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8163799Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8171064Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8178274Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8185677Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8193376Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8200888Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8208006Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8215665Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8223446Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8231502Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8274649Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8282965Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8290928Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8299719Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8306967Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8315172Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8323822Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8331496Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8339023Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8347066Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8354870Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8362831Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8371823Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8379255Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8387650Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8394486Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8401913Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8409501Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8417892Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8443006Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8443868Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8444608Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8449705Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8457419Z 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:46:26.8464788Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8473113Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8480479Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8487748Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8495364Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8502343Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8509790Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8517299Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8524220Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8531747Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8538624Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8545577Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8553034Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8559901Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8567227Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8575434Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8583000Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8590223Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8597706Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8604773Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8611537Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8618508Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8625743Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8632991Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8639977Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8646873Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8653999Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8661264Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8668518Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8676211Z 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:46:26.8684288Z 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:46:26.8691506Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8698887Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8706258Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8713514Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8720949Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8728111Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8735389Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8742867Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8750270Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8757765Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8764441Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8771944Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8780034Z 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:46:26.8787816Z 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:46:26.8795505Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8802875Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8810524Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8818009Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8826181Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8834021Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8841194Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8849250Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8856664Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8863905Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8871384Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8878776Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8886476Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8894549Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8902094Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8909920Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8917914Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8925617Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8933581Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8941262Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8948403Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8955582Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8962566Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8969804Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.8976485Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9003129Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9010431Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9017402Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9024481Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9031692Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9038931Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9046010Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9053346Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9060415Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9067752Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9074999Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9082587Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9089570Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9096791Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9105761Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9113862Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9121835Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9130044Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9137926Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9145584Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9153277Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9160897Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9169125Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9176896Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9184299Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9191831Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9199651Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9206771Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9213735Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9221174Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9228876Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9236546Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9243889Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9251228Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9258333Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9265274Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9272618Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9279743Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9287443Z 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:46:26.9294755Z 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:46:26.9303414Z 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:46:26.9311450Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9320029Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9326981Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9334779Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9343099Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9350364Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9358225Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9366430Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9373424Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9381079Z 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:46:26.9389274Z 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:46:26.9396887Z 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:46:26.9404293Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9411974Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9420087Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9427569Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9435579Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9443732Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9451689Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9459884Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9467677Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9475304Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9482857Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9490091Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9497605Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9504932Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9512685Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9520540Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9528131Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9535388Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9542272Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9549871Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9557177Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9564049Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9571103Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9578574Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9585845Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9593109Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9600541Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9607864Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9614896Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9621794Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9629190Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9637240Z 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:46:26.9644714Z 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:46:26.9651711Z 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:46:26.9658804Z 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:46:26.9666916Z 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:46:26.9674840Z 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:46:26.9682124Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9689571Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9697047Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9704661Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9712102Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9719594Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9726821Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9733848Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9741004Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9748096Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9755488Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9762736Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9770046Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9778004Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9784978Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9792104Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9799492Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9808548Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9815227Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9822872Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9838574Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9846009Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9853712Z 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:46:26.9861198Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9869361Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9877037Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9884869Z 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:46:26.9892854Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9900403Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9908076Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9915790Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9923372Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9956918Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9957716Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9958673Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:26.9959736Z 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:46:26.9965127Z 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:46:26.9971866Z 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:46:26.9997487Z 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:46:27.0004650Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0011671Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0020227Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0027964Z 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:46:27.0035158Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0042835Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0050430Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0058011Z 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:46:27.0065283Z 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:46:27.0110365Z 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:46:27.0118073Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0125474Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0132310Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0140823Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0148049Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0155255Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0162105Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0172651Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0179699Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0186754Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0193904Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0201503Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0209122Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0216039Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0223868Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0231455Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0238743Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0246096Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0253882Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0261904Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0268951Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0276545Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0283491Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0291235Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0298329Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0306185Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0313511Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0321112Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0328445Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0336466Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0343581Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0351802Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0359286Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0366238Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0373871Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0382007Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0388810Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0396202Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0403728Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0411843Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0418988Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0426701Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0434005Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0441826Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0449106Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0456764Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0465143Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0472778Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0480189Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0487642Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0494797Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0502258Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0509299Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0516814Z 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:46:27.0523934Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0531563Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0538208Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0545563Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0552486Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0559966Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0566957Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0573797Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0581232Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0589325Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0596703Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0603774Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0610965Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0619236Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0626531Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0633809Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0641306Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0648951Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0656386Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0663661Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0671688Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0678540Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0685293Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0692441Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0699759Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0706872Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0714232Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0720911Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0727950Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0734638Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0741545Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0749524Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0756739Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0764238Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0772110Z 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:46:27.0779223Z 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:46:27.0786481Z 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:46:27.0794326Z 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:46:27.0802075Z 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:46:27.0809308Z 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:46:27.0816909Z 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:46:27.0824428Z 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:46:27.0831912Z 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:46:27.0839823Z 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:46:27.0847921Z 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:46:27.0855777Z 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:46:27.0863135Z 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:46:27.0870811Z 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:46:27.0878964Z 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:46:27.0886309Z 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:46:27.0893619Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0901742Z 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:46:27.0909141Z 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:46:27.0916790Z 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:46:27.0924693Z 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:46:27.0931723Z 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:46:27.0939137Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0947248Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0955538Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0963913Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0971990Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0979260Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.0986924Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1017060Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1024831Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1032093Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1040076Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1047249Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1055036Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1062689Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1070066Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1077468Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1084975Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1092251Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1099712Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1107155Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1114475Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1122110Z 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:46:27.1129186Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1136625Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1144317Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1151531Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1158596Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1165707Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1172978Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1180327Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1187558Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1194712Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1202210Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1209603Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1216877Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1224729Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1232386Z 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:46:27.1240451Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1248062Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1255246Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1262333Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1269879Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1277448Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1284674Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1292422Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1300232Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1307761Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1315296Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1323780Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1331075Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1338670Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1347255Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1354533Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1361868Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1381114Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1382331Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1384773Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1392465Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1400793Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1407690Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1415006Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1422771Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1431127Z 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:46:27.1438724Z 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:46:27.1446900Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1454364Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1461829Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1470548Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1478238Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1485512Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1494300Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1500600Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1508050Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1515914Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1523611Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1531158Z 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:46:27.1538675Z 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:46:27.1546064Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1553773Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1560991Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1568117Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1575897Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1583693Z 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:46:27.1591045Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1598278Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1606231Z 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:46:27.1613875Z 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:46:27.1621231Z 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:46:27.1628721Z 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:46:27.1636232Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1644037Z 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:46:27.1651386Z 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:46:27.1658642Z 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:46:27.1666061Z 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:46:27.1674124Z 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:46:27.1681385Z 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:46:27.1688392Z 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:46:27.1695868Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1703055Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1710578Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1717548Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1724919Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1732078Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1739541Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1747188Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1754174Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1761711Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1769570Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1777342Z 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:46:27.1784754Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1791892Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1799530Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1805857Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1812997Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1820137Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1826696Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1834596Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1841251Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1848664Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1856056Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1863100Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1870558Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1878133Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1885268Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1893431Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1900217Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1907624Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1914939Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1923179Z 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:46:27.1930238Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1937563Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1945057Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1953530Z 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:46:27.1961291Z 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:46:27.1969340Z 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:46:27.1976975Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1984729Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.1993723Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2000073Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2007875Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2015195Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2022719Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2029977Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2037971Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2045366Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2052432Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2060487Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2067943Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2075227Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2082904Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2090270Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2097275Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2105103Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2112755Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2120270Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2127755Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2135472Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2142582Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2149931Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2157854Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2165578Z 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:46:27.2172797Z 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:46:27.2180360Z 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:46:27.2187694Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2195389Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2202649Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2210733Z 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:46:27.2217977Z 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:46:27.2225629Z 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:46:27.2233102Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2240949Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2248871Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2257793Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2265030Z 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:46:27.2273500Z 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:46:27.2281802Z 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:46:27.2289421Z 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:46:27.2297600Z 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:46:27.2305336Z 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:46:27.2313158Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2321860Z 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:46:27.2329087Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2337741Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2345574Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2353604Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2361175Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2369788Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2377017Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2384394Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2393029Z 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:46:27.2400268Z 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:46:27.2408943Z 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:46:27.2416587Z 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:46:27.2423896Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2431833Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2439599Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2446986Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2455582Z 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:46:27.2462953Z 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:46:27.2470567Z 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:46:27.2478056Z 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:46:27.2486816Z 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:46:27.2493814Z 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:46:27.2502265Z 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:46:27.2509888Z 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:46:27.2517919Z 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:46:27.2526057Z 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:46:27.2533754Z 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:46:27.2541875Z 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:46:27.2549604Z 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:46:27.2558162Z 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:46:27.2566285Z 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:46:27.2574081Z 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:46:27.2581515Z 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:46:27.2589143Z 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:46:27.2625840Z 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:46:27.2634110Z 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:46:27.2641537Z 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:46:27.2649229Z 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:46:27.2657207Z 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:46:27.2664894Z 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:46:27.2672368Z 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:46:27.2680147Z 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:46:27.2687980Z 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:46:27.2695427Z 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:46:27.2702447Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2713353Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2719555Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2726796Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2733774Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2740896Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2747863Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2755980Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2764222Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2771310Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2778329Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2786414Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2793317Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2800216Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2807647Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2815276Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2822194Z 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:46:27.2829501Z 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:46:27.2836847Z 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:46:27.2844491Z 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:46:27.2851897Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2860019Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2866643Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2874411Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2881586Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2889936Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2897840Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2905397Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2913252Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2920631Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2927735Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2935078Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2942824Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2975682Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2976599Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2977572Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2978404Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.2986478Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3014261Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3022806Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3029404Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3036735Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3044216Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3051344Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3059242Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3066747Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3074638Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3081831Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3088988Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3096600Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3104229Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3111926Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3119298Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3126654Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3134708Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3141884Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3149231Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3156516Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3163758Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3171496Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3178899Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3186290Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3193724Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3200811Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3208948Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3216774Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3223960Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3232242Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3245714Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3253564Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3260744Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3268332Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3275819Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3282919Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3290944Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3298411Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3305626Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3313455Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3321321Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3329056Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3336520Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3343921Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3351688Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3358944Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3366931Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3374672Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3382298Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3389838Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3417498Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3424239Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3431742Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3438954Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3446641Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3480387Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3481329Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3482294Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3483121Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3487102Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3494813Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3502636Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3510665Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3518149Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3525327Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3532792Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3539833Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3547250Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3554726Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3561901Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3569687Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3577317Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3584495Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3591680Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3598995Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3606358Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3613834Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3621473Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3628642Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3636068Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3643240Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3650862Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3658503Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3666106Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3673558Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3680942Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3688537Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3695733Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3702916Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3710410Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3717950Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3725708Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3733084Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3740287Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3748110Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3755831Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3763495Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3771612Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3778564Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3786190Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3795405Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3802639Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3810219Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3817523Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3825165Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3832694Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3839991Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3848663Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3855964Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3863365Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3871574Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3879481Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3887264Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3895154Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3902198Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3909374Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3917257Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3925498Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3932923Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3940109Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3947323Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3955504Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3963286Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3972064Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3980172Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3987888Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.3996041Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4003933Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4011387Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4018915Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4026326Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4034448Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4042247Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4049684Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4056854Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4064399Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4072013Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4079472Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4086912Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4094271Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4101529Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4109194Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4116560Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4123799Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4131079Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4138668Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4146187Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4153405Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4160581Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4167749Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4175135Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4182987Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4190448Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4197914Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4205449Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4212680Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4220135Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4227349Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4234753Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4249376Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4257274Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4264797Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4272161Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4279531Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4286697Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4294344Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4302059Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4309478Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4316976Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4324383Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4331477Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4339015Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4346634Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4354500Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4361690Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4368812Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4376759Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4383923Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4391527Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4399396Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4406616Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4439023Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4446529Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4453968Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4462285Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4470562Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4478796Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4487071Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4495159Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4503156Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4511288Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4519732Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4527443Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4535059Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4542225Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4549450Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4557779Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4564852Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4572423Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4579502Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4587152Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4594994Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4602083Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4609429Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4617085Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4624263Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4631445Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4639607Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4647474Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4654865Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4662074Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4669615Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4677192Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4684715Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4692291Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4699666Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4707356Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4714918Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4722288Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4729819Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4737294Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4745683Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4753369Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4760848Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4768375Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4775950Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4783590Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4791494Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4799160Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4807178Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4814355Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4822097Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4829598Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4837674Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4845744Z 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:46:27.4853568Z 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:46:27.4861699Z 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:46:27.4869526Z 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:46:27.4877411Z 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:46:27.4899821Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4907325Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4914840Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4922395Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4929749Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4938015Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4945362Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4952970Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4960520Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4969067Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4977091Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.4985336Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5009181Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5021032Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5033535Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5043385Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5051249Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5471930Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5492402Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5492762Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5496107Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5504628Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5512646Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5520445Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5528312Z 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:46:27.5536806Z 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:46:27.5544632Z 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:46:27.5552308Z 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:46:27.5560006Z 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:46:27.5567916Z 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:46:27.5575554Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5583228Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5590573Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5597830Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5605482Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5613095Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5621091Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5629042Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5636765Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5644553Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5656990Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5664270Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5671785Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5679368Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5690610Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5698065Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5705139Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5712155Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5719968Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5727296Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5734377Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5742462Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5749528Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5756459Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5763909Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5771277Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5778588Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5785838Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5793383Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5800428Z 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:46:27.5808156Z 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:46:27.5815670Z 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:46:27.5823193Z 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:46:27.5839379Z 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:46:27.5846720Z 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:46:27.5853997Z 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:46:27.5861361Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5868755Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5877487Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5885488Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5892910Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5900541Z 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:46:27.5908048Z 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:46:27.5915175Z 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:46:27.5922369Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5930102Z 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:46:27.5937332Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5944637Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5952209Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5959597Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5966675Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5974960Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.5982788Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6000589Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6001619Z 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:46:27.6040190Z 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:46:27.6041132Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6042029Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6042889Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6043936Z 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:46:27.6048094Z 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:46:27.6056249Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6065049Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6071811Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6080957Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6088398Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6095493Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6102800Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6110427Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6117807Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6125088Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6131649Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6139406Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6146818Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6154034Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6161219Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6168348Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6175403Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6182733Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6190985Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6197677Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6205049Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6212284Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6220042Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6228276Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6235568Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6242720Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6250022Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6264124Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6271225Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6278780Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6286295Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6293836Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6300723Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6307816Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6315520Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6322886Z 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:46:27.6330496Z 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:46:27.6338004Z 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:46:27.6345915Z 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:46:27.6353218Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6360571Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6367728Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6375147Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6382593Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6390756Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6398898Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6406002Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6413355Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6421759Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6429027Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6436774Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6444107Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6451905Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6459579Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6467053Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6475330Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6483932Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6492308Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6500706Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6508041Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6515684Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6522781Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6530291Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6538561Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6545750Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6553130Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6560988Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6567901Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6574978Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6582951Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6617180Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6624545Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6638162Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6640803Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6648001Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6655406Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6663113Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6671385Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6678344Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6685563Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6692719Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6700210Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6707733Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6715620Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6723423Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6731473Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6739831Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6747878Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6755957Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6762981Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6770445Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6777305Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6784637Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6791735Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6798809Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6806617Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6813706Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6820799Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6828281Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6835318Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6842163Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6849735Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6857019Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6864021Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6871893Z 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:46:27.6879427Z 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:46:27.6886916Z 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:46:27.6894111Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6902226Z 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:46:27.6910006Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6917705Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6925987Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6933281Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6940881Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6948651Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6956189Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6963679Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6971134Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6978854Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6992282Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.6999777Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7007111Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7014609Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7022475Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7029630Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7037379Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7043807Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7051078Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7058240Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7065316Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7072708Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7080237Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7087450Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7096366Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7102468Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7109505Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7116823Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7124046Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7130960Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7138156Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7145889Z 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:46:27.7153542Z 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:46:27.7160816Z 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:46:27.7168315Z 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:46:27.7176543Z 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:46:27.7183533Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7191286Z 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:46:27.7198941Z 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:46:27.7206438Z 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:46:27.7213624Z 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:46:27.7221507Z 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:46:27.7228431Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7235815Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7243208Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7250339Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7257523Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7264774Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7271940Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7279219Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7286354Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7294943Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7301558Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7308841Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7316665Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7324871Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7332368Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7340112Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7348033Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7355326Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7362443Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7369582Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7376922Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7383877Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7391508Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7398796Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7406289Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7413362Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7420975Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7428260Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7435969Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7443416Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7450331Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7473317Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7480738Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7488572Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7496690Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7504897Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7512726Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7519980Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7527527Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7535182Z 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:46:27.7542425Z 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:46:27.7549951Z 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:46:27.7557226Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7564507Z 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:46:27.7572307Z 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:46:27.7579797Z 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:46:27.7587350Z 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:46:27.7594569Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7601831Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7609389Z 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:46:27.7616661Z 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:46:27.7624774Z 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:46:27.7632107Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7639375Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7646325Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7653574Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7660536Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7668135Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7675656Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7683308Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7690085Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7697024Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7703810Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7711249Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7718793Z 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:46:27.7726016Z 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:46:27.7733169Z 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:46:27.7740499Z 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:46:27.7747712Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7755692Z 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:46:27.7763779Z 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:46:27.7771333Z 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:46:27.7779511Z 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:46:27.7786929Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7794659Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7802490Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7809826Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7817385Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7825184Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7832296Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7839651Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7846896Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7855378Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7862491Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7870163Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7877892Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7884613Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7892755Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7900077Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7907964Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7915282Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7922664Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7930070Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7937560Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7945125Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7952368Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7959710Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7967051Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7974158Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7982223Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7990328Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.7998055Z 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:46:27.8045455Z 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:46:27.8054711Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8061907Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8069553Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8076676Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8084140Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8091434Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8098577Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8105736Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8113396Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8120655Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8127980Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8135817Z 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:46:27.8142913Z 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:46:27.8150316Z 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:46:27.8157818Z 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:46:27.8165674Z 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:46:27.8173538Z 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:46:27.8181189Z 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:46:27.8188670Z 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:46:27.8196143Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8208560Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8217186Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8224713Z 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:46:27.8232337Z 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:46:27.8239679Z 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:46:27.8247485Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8255222Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8262703Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8270359Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8277679Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8285307Z 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:46:27.8293682Z 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:46:27.8300182Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8308170Z 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:46:27.8315528Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8323182Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8330430Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8338053Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8346412Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8353554Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8360842Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8368248Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8376329Z 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:46:27.8384081Z 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:46:27.8391620Z 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:46:27.8399409Z 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:46:27.8406770Z 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:46:27.8414118Z 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:46:27.8426089Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8434159Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8441308Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8448792Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8456897Z 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:46:27.8464668Z 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:46:27.8472638Z 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:46:27.8480120Z 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:46:27.8488044Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8495261Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8502781Z 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:46:27.8510658Z 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:46:27.8518113Z 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:46:27.8525351Z 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:46:27.8532901Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8540172Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8547467Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8554604Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8561789Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8569302Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8576757Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8584199Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8591311Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8597788Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8604830Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8611554Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8618642Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8626534Z 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:46:27.8633375Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8640455Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8648059Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8655529Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8662719Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8669995Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8677304Z 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:46:27.8684427Z 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:46:27.8692406Z 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:46:27.8700676Z 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:46:27.8707725Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8715143Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8722707Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8729654Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8736703Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8744596Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8751738Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8802397Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8809567Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8816844Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8828768Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8834477Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8841143Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8848475Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8855579Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8862936Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8870150Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8877212Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8885302Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8892755Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8900025Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8907368Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8915105Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8922212Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8929778Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8937213Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8944122Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8951331Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8958179Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8965208Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8972453Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.8994093Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9006404Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9009118Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9017036Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9024656Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9032632Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9040555Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9048512Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9056031Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9063899Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9071220Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9078877Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9086738Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9094057Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9100724Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9108692Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9115658Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9122520Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9129731Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9136733Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9143675Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9151267Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9158725Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9165781Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9172942Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9181329Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9188743Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9196310Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9203395Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9210180Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9217357Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9224789Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9232615Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9239504Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9246850Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9254345Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9261588Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9268498Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9275722Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9283221Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9290215Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9297517Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9304693Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9312040Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9319818Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9326987Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9334158Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9341380Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9350166Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9357308Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9364604Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9372596Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9380088Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9387145Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9395557Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9402350Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9409711Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9417248Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9425538Z 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:46:27.9432859Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9440093Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9447658Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9455307Z 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:46:27.9462608Z 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:46:27.9470150Z 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:46:27.9478416Z 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:46:27.9485178Z 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:46:27.9510764Z 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:46:27.9518306Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9525692Z 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:46:27.9533605Z 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:46:27.9541506Z 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:46:27.9548955Z 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:46:27.9556809Z 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:46:27.9564139Z 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:46:27.9571555Z 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:46:27.9579167Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9586592Z 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:46:27.9594234Z 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:46:27.9601944Z 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:46:27.9609318Z 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:46:27.9617110Z 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:46:27.9625284Z 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:46:27.9632779Z 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:46:27.9639902Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9647221Z 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:46:27.9655010Z 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:46:27.9662880Z 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:46:27.9670300Z 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:46:27.9677705Z 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:46:27.9685037Z 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:46:27.9693099Z 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:46:27.9700804Z 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:46:27.9708280Z 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:46:27.9716464Z 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:46:27.9724139Z 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:46:27.9731514Z 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:46:27.9738767Z 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:46:27.9746118Z 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:46:27.9753622Z 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:46:27.9761415Z 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:46:27.9769190Z 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:46:27.9777155Z 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:46:27.9784897Z 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:46:27.9792749Z 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:46:27.9800746Z 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:46:27.9808248Z 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:46:27.9816209Z 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:46:27.9823524Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9831442Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9839394Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9846643Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9853820Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9862325Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9869199Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9876572Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9884645Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9892380Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9904791Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9912476Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9920082Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9927425Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9935266Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9942724Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9951028Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9957890Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9964891Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9972138Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9980268Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9987868Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:27.9995731Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0003596Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0011527Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0019145Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0056247Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0064918Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0071324Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0078450Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0085570Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0092925Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0100366Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0107677Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0114952Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0122352Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0129118Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0136382Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0143448Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0151941Z 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:46:28.0158711Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0165982Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0173281Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0181171Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0188794Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0196857Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0204804Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0211245Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0218941Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0225946Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0233360Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0240716Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0248060Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0255170Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0262391Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0270171Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0277352Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0285553Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0293340Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0300741Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0307937Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0315296Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0323772Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0330360Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0337535Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0345020Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0352827Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0359947Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0367823Z 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:46:28.0375659Z 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:46:28.0383216Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0390888Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0398645Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0406038Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0413061Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0420634Z 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:46:28.0428936Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0436466Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0443711Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0452477Z 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:46:28.0459333Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0467045Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0475707Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0483866Z 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:46:28.0491188Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0499341Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0506611Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0514785Z 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:46:28.0522751Z 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:46:28.0530869Z 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:46:28.0538139Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0545924Z 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:46:28.0553248Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0560691Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0568213Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0575671Z 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:46:28.0584234Z 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:46:28.0592057Z 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:46:28.0599409Z 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:46:28.0606940Z 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:46:28.0614510Z 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:46:28.0621746Z 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:46:28.0629384Z 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:46:28.0636845Z 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:46:28.0644653Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0652258Z 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:46:28.0659547Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0667244Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0674460Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0682410Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0689664Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0696825Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0704047Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0711951Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0719239Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0726261Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0734129Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0742940Z 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:46:28.0750190Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0757610Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0764703Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0772101Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0779634Z 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:46:28.0786979Z 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:46:28.0794402Z 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:46:28.0801770Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0809233Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0817838Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0825004Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0832916Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0840667Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0847837Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0855236Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0862602Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0871045Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0878177Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0890663Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0898474Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0905622Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0913303Z 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:46:28.0921531Z 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:46:28.0928638Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0940753Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0948394Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0956019Z 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:46:28.0963668Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0971454Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0979624Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.0992824Z 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:46:28.0999673Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1007743Z 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:46:28.1015541Z 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:46:28.1023979Z 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:46:28.1031772Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1043468Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1050805Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1058716Z 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:46:28.1066224Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1073875Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1081753Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1089009Z 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:46:28.1096243Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1103423Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1110964Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1118587Z 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:46:28.1125877Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1133200Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1140361Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1147588Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1155303Z 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:46:28.1163104Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1170435Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1178189Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1185661Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1192784Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1200342Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1207464Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1215348Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1222489Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1229607Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1236846Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1265399Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1273032Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1279919Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1290756Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1298151Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1305711Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1313031Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1321181Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1328363Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1340302Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1347398Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1354600Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1361845Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1369367Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1375967Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1383381Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1391104Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1398093Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1405199Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1412151Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1419384Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1426638Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1434150Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1441240Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1448821Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1456105Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1464243Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1471623Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1479237Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1487028Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1494594Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1502715Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1525215Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1526821Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1550346Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1557686Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1564942Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1572235Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1580026Z 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:46:28.1591686Z 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:46:28.1599288Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1606472Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1614343Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1622033Z 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:46:28.1630104Z 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:46:28.1638107Z 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:46:28.1645712Z 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:46:28.1658229Z 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:46:28.1666219Z 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:46:28.1684854Z 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:46:28.1685929Z 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:46:28.1689110Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1696603Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1703761Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1711320Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1718945Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1726332Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1733832Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1740970Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1748025Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1755347Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1763083Z 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:46:28.1770401Z 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:46:28.1777665Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1785021Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1792642Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1800510Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1807839Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1814966Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1822082Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1829181Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1836794Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1844055Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1851306Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1858720Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1866006Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1874033Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1881296Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1888613Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1896679Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1904931Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1912531Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1920221Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1927299Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1935163Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1942287Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1949820Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1956923Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1965157Z 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:46:28.1973291Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1980548Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1988808Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.1996906Z 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:46:28.2003501Z 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:46:28.2011444Z 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:46:28.2038512Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2039771Z 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:46:28.2040961Z 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:46:28.2044704Z 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:46:28.2051256Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2058910Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2066933Z 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:46:28.2074590Z 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:46:28.2081514Z 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:46:28.2088943Z 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:46:28.2096612Z 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:46:28.2104046Z 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:46:28.2111478Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2118747Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2125876Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2133148Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2140829Z 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:46:28.2148230Z 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:46:28.2156035Z 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:46:28.2164785Z 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:46:28.2172080Z 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:46:28.2180260Z 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:46:28.2187683Z 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:46:28.2195027Z 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:46:28.2202481Z 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:46:28.2209736Z 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:46:28.2217035Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2224734Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2236409Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2243470Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2250530Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2257570Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2264722Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2271690Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2278912Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2285743Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2293167Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2300651Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2307728Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2315253Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2322394Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2329427Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2337099Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2344674Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2352058Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2359386Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2367395Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2374196Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2381799Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2389676Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2398030Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2405471Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2412498Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2419914Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2427203Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2434675Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2442509Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2449751Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2457031Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2464433Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2472097Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2479418Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2489335Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2496510Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2503916Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2511682Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2580492Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2588405Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2596370Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2604580Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2661362Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2672496Z 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:46:28.2683390Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2691809Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2699822Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2707198Z 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:46:28.2714709Z 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:46:28.2722600Z 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:46:28.2729892Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2736938Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2744329Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2752188Z 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:46:28.2763550Z 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:46:28.2770921Z 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:46:28.2778453Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2785682Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2793822Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2801258Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2808571Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2815510Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2822525Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2830381Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2837756Z 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:46:28.2845338Z 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:46:28.2852464Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2859767Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2866984Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2874499Z 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:46:28.2881983Z 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:46:28.2889146Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2896209Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2903347Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2910023Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2917152Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2924198Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2931364Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2938391Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2945670Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2953209Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2960685Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2968028Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2975490Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2982819Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2990233Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.2997857Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3004870Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3011999Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3019712Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3027697Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3035643Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3043049Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3050299Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3057718Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3065419Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3076898Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3084290Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3091973Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3099646Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3107001Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3114327Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3121925Z 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:46:28.3130198Z 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:46:28.3136850Z 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:46:28.3143899Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3151835Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3159018Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3166520Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3173661Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3181151Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3206548Z 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:46:28.3213700Z 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:46:28.3221017Z 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:46:28.3228196Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3236006Z 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:46:28.3243249Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3250500Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3258268Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3265649Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3273284Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3280514Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3287666Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3294824Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3301937Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3309410Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3316931Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3324498Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3332261Z 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:46:28.3339754Z 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:46:28.3346853Z 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:46:28.3354517Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3361967Z 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:46:28.3369562Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3377735Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3385654Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3393468Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3400602Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3407961Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3415101Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3422490Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3429824Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3437441Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3444679Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3456745Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3464628Z 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:46:28.3472273Z 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:46:28.3479859Z 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:46:28.3487184Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3494861Z 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:46:28.3502165Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3509388Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3517662Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3544259Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3545343Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3546318Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3594580Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3595553Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3596647Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3597541Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3598425Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3599440Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3601158Z 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:46:28.3609376Z 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:46:28.3617381Z 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:46:28.3624781Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3633206Z 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:46:28.3660884Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3669101Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3677483Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3685150Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3692355Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3699682Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3707173Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3714654Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3721952Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3729467Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3736826Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3744299Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3752715Z 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:46:28.3760149Z 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:46:28.3767775Z 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:46:28.3775115Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3782870Z 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:46:28.3790859Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3798126Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3806249Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3813808Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3821508Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3828886Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3836985Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3844485Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3851825Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3859204Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3866551Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3874154Z 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:46:28.3881367Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3888624Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3896840Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3904495Z 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:46:28.3912261Z 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:46:28.3919458Z 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:46:28.3927371Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3934900Z 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:46:28.3942705Z 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:46:28.3950112Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3958786Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3966033Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.3973677Z 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:46:28.3981799Z 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:46:28.3989625Z 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:46:28.3997479Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4005858Z 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:46:28.4044364Z 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:46:28.4052843Z 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:46:28.4060132Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4067794Z 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:46:28.4077061Z 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:46:28.4083569Z 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:46:28.4091045Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4098650Z 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:46:28.4106272Z 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:46:28.4113809Z 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:46:28.4121042Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4129131Z 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:46:28.4136640Z 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:46:28.4143920Z 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:46:28.4151707Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4159764Z 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:46:28.4166833Z 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:46:28.4174510Z 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:46:28.4181771Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4188926Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4196817Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4204428Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4211770Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4218768Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4225980Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4233092Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4240440Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4247728Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4254647Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4261356Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4268774Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4276199Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4283709Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4291420Z 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:46:28.4299067Z 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:46:28.4307082Z 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:46:28.4314794Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4322392Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4330034Z 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:46:28.4338008Z 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:46:28.4345543Z 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:46:28.4353306Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4360728Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4368347Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4376316Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4383159Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4391467Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4399798Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4407345Z 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:46:28.4415236Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4423686Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4435657Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4444177Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4453195Z 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:46:28.4459957Z 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:46:28.4467765Z 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:46:28.4475975Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4483309Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4491856Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4499425Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4506479Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4514706Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4523346Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4531461Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4544670Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4546706Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4554639Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4563497Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4570182Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4578088Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4585539Z 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:46:28.4592834Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4600189Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-04-25T04:46:28.4606425Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-04-25T04:46:28.4609654Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-04-25T04:46:28.4616730Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-04-25T04:46:28.4623832Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4627006Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4634004Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4673977Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4680560Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4691814Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4698369Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-04-25T04:46:28.4704366Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-04-25T04:46:28.4707329Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-04-25T04:46:28.4713543Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4718148Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4724594Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4731470Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4738273Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4749636Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4756992Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4763758Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4770848Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4777932Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4785102Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4792218Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4798582Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4805059Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4812075Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4819340Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4826715Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4841846Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4849026Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4857287Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4863969Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4875926Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4882681Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4889296Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4896832Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4903498Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4910239Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4916752Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4923737Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4930211Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4936984Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4943496Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4950452Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4957043Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4973628Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4980634Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4987860Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.4994917Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5001618Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5009142Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5016513Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5023350Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5076017Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5076370Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5076685Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5077078Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5077419Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5077724Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5084191Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5091072Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-04-25T04:46:28.5097027Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5100877Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5106548Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5113687Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5120807Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5133051Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5140412Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5147241Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5154744Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5162628Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5169689Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5176653Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5183489Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5190251Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5197334Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5204497Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5211443Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5218769Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-04-25T04:46:28.5224670Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5227846Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5234884Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5241709Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5249117Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5260724Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5267496Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5274671Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5281611Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5288655Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5295303Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5302152Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5309074Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5316014Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5322836Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-04-25T04:46:28.5328870Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:46:28.5332037Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:46:28.5340075Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:46:28.5346014Z copying torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-04-25T04:46:28.5351811Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:46:28.5354427Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:46:28.5361191Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:46:28.5367839Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-04-25T04:46:28.5374864Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5377824Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5384667Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5392523Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5398914Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5405612Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5417914Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-04-25T04:46:28.5423718Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-04-25T04:46:28.5426831Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-04-25T04:46:28.5434485Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-04-25T04:46:28.5441203Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:46:28.5445872Z 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:46:28.5453605Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:46:28.5460729Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-04-25T04:46:28.5467236Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5470442Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5478069Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5484426Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5491212Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5502913Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5509707Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5516993Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5523939Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5531193Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5538499Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5545756Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5552716Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5561023Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5567369Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5573598Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5580281Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5587630Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5614561Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5621442Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5628365Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5635175Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5642254Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5648991Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5655572Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5668036Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5675340Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5681611Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5689150Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5696019Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5702671Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5709666Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5716603Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5724722Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5731539Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5738702Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5752709Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5760048Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5767743Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5774672Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5781413Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5793408Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5800801Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5807879Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5814663Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5825732Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5832555Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5839601Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5846395Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5853312Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5860391Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5867529Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5874764Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5882274Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5889043Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5896347Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5903138Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5910101Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5921785Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5929123Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5935720Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5942608Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5949869Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5956725Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5964202Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5971485Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5978418Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5985089Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5991858Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.5998758Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6013502Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6021588Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6028729Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6036594Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6043327Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6049980Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6056560Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6063281Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6069666Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6076109Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6082783Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6089456Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6101592Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6108427Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6115434Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6122023Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6129844Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6137796Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6144463Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6151971Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6158785Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6165355Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6172017Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6185210Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6193344Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6200690Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6207569Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6214483Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6221581Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6228800Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6235577Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6242351Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6249242Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6256331Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6263318Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6270815Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6277937Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6285223Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6291657Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6298513Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6305303Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6312661Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6319565Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-04-25T04:46:28.6325632Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6333755Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6341689Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6348157Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6354924Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6367041Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6373752Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-04-25T04:46:28.6379667Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-04-25T04:46:28.6382800Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-04-25T04:46:28.6388897Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-04-25T04:46:28.6393311Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-04-25T04:46:28.6399052Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:46:28.6403367Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:46:28.6409847Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:46:28.6416635Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-04-25T04:46:28.6422247Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:46:28.6426011Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:46:28.6433132Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:46:28.6439913Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-04-25T04:46:28.6445761Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6448872Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6456621Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6463258Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6492153Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6503860Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6510979Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6517546Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-04-25T04:46:28.6523328Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:46:28.6526449Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:46:28.6533041Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:46:28.6539941Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-04-25T04:46:28.6545898Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6556425Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6573733Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6574929Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6581916Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6588564Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6595442Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:28.6601496Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6604669Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6611192Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6618622Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6625528Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6636829Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6644494Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6651346Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6658192Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6665254Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6672389Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6679632Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6686537Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6693812Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6700871Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6707851Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6715320Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6722235Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6729476Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6736665Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6747981Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6755137Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6761875Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6768657Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6775270Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-04-25T04:46:28.6781458Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6784263Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6791407Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6799177Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6807088Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6814403Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6821166Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6827609Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6840851Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6849594Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6856122Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6862558Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6869512Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6876901Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6883635Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-04-25T04:46:28.6889596Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:46:28.6892681Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:46:28.6898978Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:46:28.6906066Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-04-25T04:46:28.6911975Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6916330Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6923097Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6929928Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6937375Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6944702Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6957678Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6964443Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6972518Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6985720Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.6993324Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7000304Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7007582Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7014499Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7022274Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7029246Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7036896Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7043749Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7050940Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7058721Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.7065707Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8065273Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8072423Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8079479Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8086178Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8093384Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8100461Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8107960Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8115774Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8122925Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8130355Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8150413Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8157994Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8165177Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8172821Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8178965Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8186785Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8193757Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8201208Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8208224Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8216377Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8223209Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8230321Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8249834Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8257417Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8264435Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8273290Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8280194Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8287711Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8295814Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-04-25T04:46:28.8303182Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8306622Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8313669Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8320890Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8327722Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8335017Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8353758Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-04-25T04:46:28.8361093Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-04-25T04:46:28.8364413Z 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:46:28.8370462Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-04-25T04:46:28.8374111Z 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:46:28.8381004Z 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:46:28.8387250Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-04-25T04:46:28.8390742Z 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:46:28.8397613Z 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:46:28.8403659Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-04-25T04:46:28.8406783Z 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:46:28.8414181Z 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:46:28.8420120Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-04-25T04:46:28.8423420Z 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:46:28.8431395Z 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:46:28.8460772Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-04-25T04:46:28.8463869Z 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:46:28.8469838Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-04-25T04:46:28.8473380Z 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:46:28.8479063Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-04-25T04:46:28.8639530Z 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:46:28.8645637Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8649568Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8657162Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8664118Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8671017Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8677579Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8691882Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8699081Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-04-25T04:46:28.8706144Z 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:46:28.8713785Z 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:46:28.8720010Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8723162Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8729677Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8741193Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8747829Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8754338Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8760749Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8779397Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8786580Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8793310Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8800669Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8807269Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8814322Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8821343Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8827946Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8834932Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8841416Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8848796Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8856088Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-04-25T04:46:28.8862860Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8865606Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8873443Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8880691Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8902745Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8910839Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8918012Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8924999Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8931851Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-04-25T04:46:28.8937994Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8941214Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8948381Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8955470Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8973689Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8980987Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8987269Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.8994180Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9000998Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9008126Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9015287Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9022298Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9028963Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9035738Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9042376Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9050213Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9056663Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-04-25T04:46:28.9063064Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:46:28.9066282Z copying torch\include\mimalloc-1.8\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:46:28.9073779Z copying torch\include\mimalloc-1.8\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:46:28.9080600Z copying torch\include\mimalloc-1.8\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-1.8 2025-04-25T04:46:28.9098101Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9113708Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9122559Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9129364Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9135972Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9153489Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9160387Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9167703Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9174664Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9181517Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9199971Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9207001Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9214070Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9220936Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9229441Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9236542Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9245779Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9253400Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9260492Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9267420Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:28.9273480Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9276603Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9283633Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9290615Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9298748Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9305393Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9311962Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9329606Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9335911Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9342777Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9349748Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9357344Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9364022Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9370934Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9396289Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9405070Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9412212Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9419122Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9427941Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9436435Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9443447Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9451331Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9457836Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-04-25T04:46:28.9463628Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9466630Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9474641Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9481898Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9488769Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9495852Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9514044Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9521719Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9529474Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9536451Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9544367Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-04-25T04:46:28.9550214Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:46:28.9553324Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:46:28.9560230Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:46:28.9567243Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-04-25T04:46:28.9573304Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-04-25T04:46:28.9576714Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-04-25T04:46:28.9583187Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:46:28.9586094Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:46:28.9593555Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:46:28.9600401Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:46:28.9606699Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:46:28.9625682Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-04-25T04:46:28.9631518Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9634543Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9641486Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9648303Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9654685Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9671617Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9677992Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9684583Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9691292Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9697806Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9704830Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9711633Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9718266Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9724590Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9730990Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9737185Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9744111Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9750708Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9757249Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9764015Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9770813Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9778082Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9784806Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9791547Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9798270Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9816700Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9823480Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9829726Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9837439Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9844427Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9851332Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9857619Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-04-25T04:46:28.9863758Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-04-25T04:46:28.9869621Z 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:46:28.9876486Z 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:46:28.9883931Z 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:46:28.9890243Z 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:46:28.9897106Z 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:46:28.9904023Z 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:46:28.9911732Z 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:46:28.9929666Z 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:46:28.9936777Z 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:46:28.9943527Z 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:46:28.9950224Z 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:46:28.9956829Z 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:46:28.9963376Z 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:46:28.9969659Z 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:46:28.9976154Z 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:46:28.9983567Z 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:46:28.9990279Z 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:46:28.9997190Z 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:46:29.0003785Z 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:46:29.0011367Z 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:46:29.0019131Z 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:46:29.0030474Z 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:46:29.0037143Z 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:46:29.0044241Z 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:46:29.0049827Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-04-25T04:46:29.0052957Z 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:46:29.0074893Z 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:46:29.0081772Z 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:46:29.0088139Z 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:46:29.0096277Z 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:46:29.0112493Z 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:46:29.0119062Z 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:46:29.0125495Z 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:46:29.0131529Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-04-25T04:46:29.0134787Z 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:46:29.0141692Z 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:46:29.0148196Z 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:46:29.0154002Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-04-25T04:46:29.0157189Z 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:46:29.0164023Z 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:46:29.0171329Z 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:46:29.0177901Z 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:46:29.0185341Z 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:46:29.0191821Z 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:46:29.0198378Z 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:46:29.0214680Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-04-25T04:46:29.0217917Z 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:46:29.0224565Z 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:46:29.0231273Z 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:46:29.0236962Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-04-25T04:46:29.0240273Z 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:46:29.0248100Z 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:46:29.0254801Z 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:46:29.0261514Z 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:46:29.0268359Z 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:46:29.0284975Z 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:46:29.0292009Z 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:46:29.0297899Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-04-25T04:46:29.0301543Z 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:46:29.0309494Z 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:46:29.0316683Z 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:46:29.0324986Z 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:46:29.0331619Z 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:46:29.0337335Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-04-25T04:46:29.0340670Z 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:46:29.0347334Z 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:46:29.0354699Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-04-25T04:46:29.0357014Z 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:46:29.0364070Z 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:46:29.0370841Z 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:46:29.0378619Z 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:46:29.0385619Z 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:46:29.0507791Z 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:46:29.0514367Z 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:46:29.0521452Z 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:46:29.0528699Z 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:46:29.0535368Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-04-25T04:46:29.0538817Z 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:46:29.0548260Z 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:46:29.0556512Z 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:46:29.0566608Z 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:46:29.0580793Z 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:46:29.0628314Z 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:46:29.0635598Z 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:46:29.0642471Z 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:46:29.0649190Z 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:46:29.0656188Z 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:46:29.0663870Z 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:46:29.0670652Z 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:46:29.0677404Z 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:46:29.0684190Z 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:46:29.0691493Z 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:46:29.0698518Z 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:46:29.0704455Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-04-25T04:46:29.0723995Z 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:46:29.0731343Z 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:46:29.0737875Z 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:46:29.0745061Z 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:46:29.0751913Z 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:46:29.0764110Z 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:46:29.0770928Z 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:46:29.0777544Z 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:46:29.0784258Z 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:46:29.0791649Z 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:46:29.0798416Z 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:46:29.0805051Z 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:46:29.0812231Z 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:46:29.0819031Z 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:46:29.0825741Z 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:46:29.0832805Z 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:46:29.0839894Z 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:46:29.0846750Z 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:46:29.0853586Z 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:46:29.0860663Z 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:46:29.0867507Z 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:46:29.0874930Z 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:46:29.0881347Z 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:46:29.0887074Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-04-25T04:46:29.0890521Z 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:46:29.0897425Z 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:46:29.0904220Z 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:46:29.0911159Z 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:46:29.0922944Z 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:46:29.0930397Z 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:46:29.0937006Z 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:46:29.0951272Z 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:46:29.0954187Z 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:46:29.0960416Z 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:46:29.0966269Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-04-25T04:46:29.0969585Z 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:46:29.0977069Z 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:46:29.0983620Z 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:46:29.0990417Z 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:46:29.0997525Z 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:46:29.1009386Z 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:46:29.1016132Z 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:46:29.1022929Z 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:46:29.1029702Z 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:46:29.1036668Z 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:46:29.1043737Z 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:46:29.1050987Z 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:46:29.1057756Z 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:46:29.1064498Z 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:46:29.1071595Z 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:46:29.1079148Z 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:46:29.1086499Z 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:46:29.1094165Z 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:46:29.1101523Z 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:46:29.1108943Z 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:46:29.1116357Z 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:46:29.1122550Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-04-25T04:46:29.1126111Z 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:46:29.1131860Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-04-25T04:46:29.1135395Z 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:46:29.1142476Z 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:46:29.1149314Z 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:46:29.1155456Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-04-25T04:46:29.1158609Z 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:46:29.1165374Z 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:46:29.1171960Z 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:46:29.1178533Z 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:46:29.1185118Z 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:46:29.1191999Z 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:46:29.1204390Z 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:46:29.1211521Z 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:46:29.1217218Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-04-25T04:46:29.1221045Z 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:46:29.1227975Z 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:46:29.1234699Z 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:46:29.1245159Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-04-25T04:46:29.1248311Z 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:46:29.1253699Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-04-25T04:46:29.1256957Z 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:46:29.1268011Z 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:46:29.1274843Z 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:46:29.1281733Z 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:46:29.1291682Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1294807Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1301423Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1308214Z 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:46:29.1314789Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1326838Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1334031Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1340516Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1347129Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1354369Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1361623Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1368997Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1375796Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1382250Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1389376Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1395981Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1402700Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1409645Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1416426Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1422752Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1429530Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1437066Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1443638Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1454798Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1461410Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1468257Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1475574Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1482429Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1488999Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1495996Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1503797Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1510537Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1521910Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1528843Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1536751Z 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:46:29.1544304Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1551058Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1557622Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1569771Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1572525Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1580030Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1589354Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1595162Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1605871Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1616947Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1621125Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1628796Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-04-25T04:46:29.1635971Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:46:29.1639102Z 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:46:29.1647031Z 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:46:29.1653334Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:46:29.1659958Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:46:29.1671601Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:46:29.1677857Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-04-25T04:46:29.1683377Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:46:29.1686770Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:46:29.1703698Z 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:46:29.1710272Z 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:46:29.1721976Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:46:29.1728272Z 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:46:29.1735972Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-04-25T04:46:29.1742771Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:46:29.1745956Z 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:46:29.1752614Z 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:46:29.1759174Z 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:46:29.1765747Z 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:46:29.1778048Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-04-25T04:46:29.1784354Z 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:46:29.1790224Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-04-25T04:46:29.1793270Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-04-25T04:46:29.1798812Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1802020Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1809060Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1815585Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1822075Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1828348Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1839651Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1846311Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1852424Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1858966Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1865369Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1872394Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1879351Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-04-25T04:46:29.1884909Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:46:29.1889193Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:46:29.1897238Z 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:46:29.1903818Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:46:29.1909071Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-04-25T04:46:29.1912405Z 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:46:29.1919002Z 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:46:29.1924391Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-04-25T04:46:29.1927554Z 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:46:29.1933475Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-04-25T04:46:29.1941732Z 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:46:29.1948418Z 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:46:29.1953915Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-04-25T04:46:29.1957092Z 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:46:29.1963865Z 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:46:29.1970493Z 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:46:29.1982252Z 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:46:29.1988864Z 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:46:29.1996085Z 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:46:29.2002601Z 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:46:29.2009450Z 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:46:29.2027270Z 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:46:29.2028946Z 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:46:29.2030108Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2031740Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2037731Z 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:46:29.2044593Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2051337Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2057540Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2069720Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2076862Z 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:46:29.2091595Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2110785Z 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:46:29.2111871Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.2112789Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-04-25T04:46:29.2113801Z 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:46:29.2119348Z 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:46:29.2123190Z 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:46:29.2134231Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:46:29.2137578Z 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:46:29.2144778Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:46:29.2152483Z 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:46:29.2159519Z 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:46:29.2171072Z 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:46:29.2177894Z 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:46:29.2184595Z 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:46:29.2191883Z 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:46:29.2198483Z 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:46:29.2205472Z 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:46:29.2212245Z 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:46:29.2218823Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:46:29.2225683Z 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:46:29.2232528Z 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:46:29.2239623Z 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:46:29.2246524Z 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:46:29.2253971Z 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:46:29.2260742Z 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:46:29.2267479Z 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:46:29.2274484Z 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:46:29.2286149Z 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:46:29.2320788Z 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:46:29.2327584Z 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:46:29.2334257Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:46:29.2341194Z 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:46:29.2348060Z 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:46:29.2354931Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:46:29.2360576Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-04-25T04:46:29.2363870Z 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:46:29.2369542Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-04-25T04:46:29.2372802Z 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:46:29.2379682Z 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:46:29.2385471Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-04-25T04:46:29.2388989Z 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:46:29.2396096Z 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:46:29.2401597Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2404871Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2424960Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2433027Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2439799Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2452180Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2458801Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2466662Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2474066Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2481461Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2488379Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2495227Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2501870Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2509343Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2516587Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-04-25T04:46:29.2522409Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-04-25T04:46:29.2545421Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-04-25T04:46:29.2550980Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-04-25T04:46:29.2554072Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-04-25T04:46:29.2559847Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-04-25T04:46:29.2562784Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-04-25T04:46:29.2568722Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:46:29.2571790Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:46:29.2579223Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:46:29.2586163Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-04-25T04:46:29.2591755Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-04-25T04:46:29.2603846Z 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:46:29.2611683Z 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:46:29.2617659Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:46:29.2620567Z 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:46:29.2626829Z 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:46:29.2633489Z 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:46:29.2639904Z 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:46:29.2646021Z 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:46:29.2656471Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-04-25T04:46:29.2659453Z 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:46:29.2666097Z 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:46:29.2671579Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-04-25T04:46:29.2675176Z 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:46:29.2682619Z 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:46:29.2688455Z 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:46:29.2700549Z 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:46:29.2707005Z 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:46:29.2712505Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:46:29.2715778Z 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:46:29.2723143Z 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:46:29.2729394Z 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:46:29.2740300Z 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:46:29.2747172Z 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:46:29.2753960Z 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:46:29.2761350Z 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:46:29.2768687Z 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:46:29.2775874Z 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:46:29.2782623Z 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:46:29.2789122Z 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:46:29.2796266Z 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:46:29.2803653Z 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:46:29.2809483Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-04-25T04:46:29.2812667Z 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:46:29.2819689Z 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:46:29.2826445Z 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:46:29.2837228Z 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:46:29.2843836Z 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:46:29.2849494Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-04-25T04:46:29.2852580Z 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:46:29.2860286Z 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:46:29.2866879Z 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:46:29.2872682Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-04-25T04:46:29.2876089Z 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:46:29.2883512Z 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:46:29.2891418Z 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:46:29.2901391Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:46:29.2904582Z 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:46:29.2911281Z 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:46:29.2917739Z 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:46:29.2923951Z 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:46:29.2930214Z 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:46:29.2941140Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-04-25T04:46:29.2944321Z 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:46:29.2950627Z 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:46:29.2957035Z 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:46:29.2962351Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-04-25T04:46:29.2965579Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-04-25T04:46:29.2971246Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:46:29.2974249Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:46:29.2980920Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:46:29.2987611Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-04-25T04:46:29.2993476Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:46:29.2996596Z 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:46:29.3003270Z 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:46:29.3009765Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:46:29.3016320Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:46:29.3023183Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-04-25T04:46:29.3034373Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:46:29.3042169Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-04-25T04:46:29.3049106Z 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:46:29.3055297Z 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:46:29.3061685Z 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:46:29.3073915Z 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:46:29.3080548Z 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:46:29.3090678Z 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:46:29.3094844Z 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:46:29.3102235Z 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:46:29.3108405Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-04-25T04:46:29.3113251Z 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:46:29.3119375Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-04-25T04:46:29.3122825Z 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:46:29.3130028Z 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:46:29.3137151Z 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:46:29.3149639Z 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:46:29.3156420Z 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:46:29.3163631Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-04-25T04:46:29.3166886Z 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:46:29.3172638Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-04-25T04:46:29.3176875Z 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:46:29.3182003Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-04-25T04:46:29.3185165Z 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:46:29.3191003Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-04-25T04:46:29.3194568Z 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:46:29.3200752Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-04-25T04:46:29.3205039Z 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:46:29.3210655Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:46:29.3213823Z 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:46:29.3220414Z 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:46:29.3227006Z 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:46:29.3234066Z 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:46:29.3240276Z 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:46:29.3246526Z 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:46:29.3258771Z 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:46:29.3265551Z 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:46:29.3272326Z 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:46:29.3279221Z 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:46:29.3285802Z 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:46:29.3292721Z 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:46:29.3298339Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-04-25T04:46:29.3301753Z 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:46:29.3308314Z 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:46:29.3315095Z 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:46:29.3320868Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-04-25T04:46:29.3324166Z 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:46:29.3330852Z 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:46:29.3336453Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:46:29.3339918Z 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:46:29.3351202Z 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:46:29.3357870Z 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:46:29.3365128Z 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:46:29.3377223Z 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:46:29.3383811Z 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:46:29.3390582Z 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:46:29.3401985Z 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:46:29.3408574Z 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:46:29.3415524Z 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:46:29.3422902Z 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:46:29.3428532Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-04-25T04:46:29.3431789Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-04-25T04:46:29.3437885Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3441228Z 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:46:29.3448183Z 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:46:29.3454814Z 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:46:29.3467228Z 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:46:29.3474256Z 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:46:29.3481343Z 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:46:29.3487706Z 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:46:29.3494513Z 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:46:29.3502434Z 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:46:29.3508588Z 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:46:29.3516033Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3523863Z 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:46:29.3530336Z 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:46:29.3537231Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3543637Z 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:46:29.3551209Z 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:46:29.3558151Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3564780Z 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:46:29.3571618Z 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:46:29.3579485Z 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:46:29.3590797Z 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:46:29.3597572Z 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:46:29.3607063Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3613460Z 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:46:29.3620161Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3626994Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:29.3633884Z 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:46:29.3641282Z 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:46:29.3647234Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:29.3650297Z 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:46:29.3669213Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:29.3676741Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:29.3685707Z 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:46:29.3698106Z 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:46:29.3705391Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:29.3713973Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:29.3721329Z 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:46:29.3728705Z 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:46:29.3737319Z 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:46:29.3744824Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:29.3753089Z 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:46:29.3760606Z 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:46:29.3766817Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3770240Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3781860Z 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:46:29.3789323Z 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:46:29.3796944Z 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:46:29.3808628Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3815860Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3823014Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3830513Z 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:46:29.3839329Z 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:46:29.3847559Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3857033Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3865750Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3875107Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3883508Z 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:46:29.3897114Z 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:46:29.3906534Z 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:46:29.3916044Z 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:46:29.3925163Z 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:46:29.3933865Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:29.3943782Z 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:46:29.3952371Z 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:46:29.3961847Z 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:46:29.3974074Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-04-25T04:46:29.3978647Z 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:46:29.3986942Z 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:46:29.3995869Z 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:46:29.4010275Z 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:46:29.4018149Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-04-25T04:46:29.4023712Z 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:46:29.4037251Z 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:46:29.4049229Z 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:46:29.4063400Z 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:46:29.4072640Z 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:46:29.4081528Z 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:46:29.4088818Z 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:46:29.4100295Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-04-25T04:46:29.4103903Z 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:46:29.4111487Z 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:46:29.4119053Z 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:46:29.4126288Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-04-25T04:46:29.4128948Z 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:46:29.4135629Z 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:46:29.4142097Z 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:46:29.4147682Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-04-25T04:46:29.4150846Z 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:46:29.4156497Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-04-25T04:46:29.4159618Z 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:46:29.4166595Z 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:46:29.4172901Z 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:46:29.4179640Z 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:46:29.4189659Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4192980Z 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:46:29.4199186Z 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:46:29.4205401Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4211555Z 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:46:29.4223598Z 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:46:29.4230881Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4239260Z 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:46:29.4246917Z 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:46:29.4258801Z 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:46:29.4266221Z 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:46:29.4274052Z 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:46:29.4281023Z 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:46:29.4315810Z 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:46:29.4322211Z 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:46:29.4329453Z 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:46:29.4340492Z 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:46:29.4347078Z 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:46:29.4354067Z 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:46:29.4360621Z 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:46:29.4371230Z 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:46:29.4392336Z 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:46:29.4399075Z 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:46:29.4406282Z 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:46:29.4413767Z 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:46:29.4420748Z 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:46:29.4427805Z 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:46:29.4435073Z 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:46:29.4442737Z 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:46:29.4453333Z 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:46:29.4461300Z 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:46:29.4468060Z 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:46:29.4475640Z 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:46:29.4482408Z 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:46:29.4488991Z 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:46:29.4495871Z 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:46:29.4502751Z 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:46:29.4509879Z 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:46:29.4521354Z 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:46:29.4528159Z 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:46:29.4534957Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4541648Z 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:46:29.4548448Z 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:46:29.4555280Z 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:46:29.4562066Z 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:46:29.4568732Z 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:46:29.4575513Z 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:46:29.4587305Z 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:46:29.4594932Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4601986Z 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:46:29.4609431Z 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:46:29.4616144Z 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:46:29.4623060Z 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:46:29.4630261Z 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:46:29.4637082Z 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:46:29.4643922Z 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:46:29.4651821Z 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:46:29.4667570Z 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:46:29.4674438Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4681032Z 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:46:29.4687977Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:29.4695047Z 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:46:29.4701575Z 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:46:29.4708498Z 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:46:29.4715635Z 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:46:29.4722958Z 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:46:29.4729577Z 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:46:29.4736260Z 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:46:29.4748109Z 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:46:29.4755089Z 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:46:29.4761676Z 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:46:29.4768111Z 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:46:29.4775064Z 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:46:29.4782237Z 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:46:29.4788803Z 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:46:29.4795683Z 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:46:29.4802369Z 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:46:29.4814360Z 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:46:29.4821372Z 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:46:29.4828474Z 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:46:29.4835406Z 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:46:29.4843161Z 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:46:29.4850139Z 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:46:29.4857165Z 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:46:29.4863938Z 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:46:29.4870984Z 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:46:29.4878063Z 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:46:29.4884810Z 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:46:29.4891456Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-04-25T04:46:29.4894956Z 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:46:29.4900732Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:46:29.4904356Z 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:46:29.4911101Z 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:46:29.4917986Z 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:46:29.4924898Z 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:46:29.4935918Z 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:46:29.4942966Z 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:46:29.4950133Z 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:46:29.4956818Z 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:46:29.4963792Z 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:46:29.4975171Z 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:46:29.4987204Z 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:46:29.4994328Z 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:46:29.5001103Z 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:46:29.5008052Z 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:46:29.5014728Z 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:46:29.5021702Z 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:46:29.5028475Z 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:46:29.5035575Z 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:46:29.5043109Z 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:46:29.5049826Z 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:46:29.5062396Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-04-25T04:46:29.5065980Z 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:46:29.5073243Z 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:46:29.5079610Z 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:46:29.5095969Z 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:46:29.5102074Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-04-25T04:46:29.5105646Z 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:46:29.5112565Z 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:46:29.5120654Z 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:46:29.5126976Z 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:46:29.5138181Z 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:46:29.5145352Z 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:46:29.5152574Z 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:46:29.5160670Z 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:46:29.5167332Z 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:46:29.5172884Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-04-25T04:46:29.5176100Z 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:46:29.5182804Z 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:46:29.5189648Z 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:46:29.5200957Z 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:46:29.5207849Z 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:46:29.5317675Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:46:29.5321437Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:46:29.5331613Z 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:46:29.5340548Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-04-25T04:46:29.5349322Z 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:46:29.5359264Z 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:46:29.5373038Z 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:46:29.5380272Z 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:46:29.5388227Z 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:46:29.5396570Z 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:46:29.5405439Z 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:46:29.5413222Z 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:46:29.5420837Z 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:46:29.5428593Z 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:46:29.5435910Z 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:46:29.5443352Z 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:46:29.5450669Z 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:46:29.5458534Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:29.5463662Z 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:46:29.5473311Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:29.5483727Z 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:46:29.5494233Z 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:46:29.5506191Z 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:46:29.5513637Z 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:46:29.5520545Z 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:46:29.5528187Z 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:46:29.5534896Z 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:46:29.5541844Z 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:46:29.5548974Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:29.5555901Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:29.5563380Z 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:46:29.5570147Z 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:46:29.5576769Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:29.5583492Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:29.5590568Z 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:46:29.5598030Z 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:46:29.5605516Z 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:46:29.5612780Z 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:46:29.5625853Z 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:46:29.5633359Z 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:46:29.5639948Z 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:46:29.5646545Z 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:46:29.5653521Z 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:46:29.5660540Z 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:46:29.5668266Z 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:46:29.5675495Z 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:46:29.5682469Z 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:46:29.5693897Z 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:46:29.5701383Z 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:46:29.5707076Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-04-25T04:46:29.5710766Z 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:46:29.5717602Z 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:46:29.5725453Z 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:46:29.5732030Z 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:46:29.5741862Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:46:29.5745057Z 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:46:29.5751834Z 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:46:29.5759746Z 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:46:29.5766142Z 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:46:29.5772896Z 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:46:29.5779588Z 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:46:29.5790987Z 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:46:29.5797847Z 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:46:29.5804894Z 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:46:29.5811790Z 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:46:29.5817569Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5820957Z 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:46:29.5828395Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5835253Z 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:46:29.5849842Z 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:46:29.5857081Z 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:46:29.5863542Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5870584Z 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:46:29.5877345Z 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:46:29.5884023Z 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:46:29.5890846Z 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:46:29.5897703Z 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:46:29.5905009Z 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:46:29.5913377Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5919751Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5926476Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5933853Z 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:46:29.5940854Z 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:46:29.5947986Z 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:46:29.5955044Z 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:46:29.5962071Z 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:46:29.5974698Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:29.5980629Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.5983916Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.5990925Z 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:46:29.5997770Z 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:46:29.6004884Z 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:46:29.6015665Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6022418Z 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:46:29.6029157Z 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:46:29.6036505Z 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:46:29.6043465Z 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:46:29.6050239Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6057059Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6063836Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6070955Z 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:46:29.6078102Z 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:46:29.6084884Z 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:46:29.6091878Z 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:46:29.6099534Z 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:46:29.6106691Z 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:46:29.6114250Z 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:46:29.6121608Z 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:46:29.6129199Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6140469Z 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:46:29.6146909Z 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:46:29.6154387Z 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:46:29.6160968Z 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:46:29.6168089Z 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:46:29.6174770Z 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:46:29.6181429Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6188519Z 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:46:29.6195491Z 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:46:29.6202057Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6209354Z 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:46:29.6220492Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6227279Z 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:46:29.6234404Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6241564Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6248788Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6256054Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6262926Z 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:46:29.6269428Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:29.6276619Z 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:46:29.6283351Z 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:46:29.6289338Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:46:29.6292606Z 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:46:29.6299560Z 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:46:29.6305864Z 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:46:29.6312754Z 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:46:29.6319427Z 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:46:29.6330995Z 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:46:29.6337883Z 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:46:29.6344621Z 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:46:29.6351603Z 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:46:29.6357010Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-04-25T04:46:29.6360257Z 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:46:29.6367384Z 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:46:29.6373310Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-04-25T04:46:29.6394821Z 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:46:29.6401685Z 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:46:29.6408514Z 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:46:29.6415549Z 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:46:29.6426201Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6429226Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6436213Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6443083Z 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:46:29.6450127Z 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:46:29.6456838Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6468061Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6474803Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6481508Z 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:46:29.6488291Z 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:46:29.6494948Z 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:46:29.6506445Z 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:46:29.6513444Z 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:46:29.6520323Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6528440Z 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:46:29.6534690Z 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:46:29.6541444Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6548123Z 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:46:29.6560445Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6567302Z 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:46:29.6575048Z 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:46:29.6581175Z 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:46:29.6588616Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6596002Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6603191Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:29.6609722Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-04-25T04:46:29.6617782Z 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:46:29.6623977Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-04-25T04:46:29.6629103Z 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:46:29.6635313Z 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:46:29.6641238Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:46:29.6644363Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:46:29.6654677Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:46:29.6661851Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-04-25T04:46:29.6668475Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-04-25T04:46:29.6671367Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-04-25T04:46:29.6677945Z 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:46:29.6683338Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-04-25T04:46:29.6691412Z 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:46:29.6697833Z 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:46:29.6704803Z 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:46:29.6711729Z 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:46:29.6722979Z 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:46:29.6729669Z 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:46:29.6736587Z 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:46:29.6743534Z 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:46:29.6750450Z 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:46:29.6757257Z 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:46:29.6762804Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-04-25T04:46:29.6765933Z 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:46:29.6777709Z 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:46:29.6791025Z 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:46:29.6794902Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:46:29.6797648Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:46:29.6804448Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:46:29.6810859Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-04-25T04:46:29.6816428Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-04-25T04:46:29.6819570Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-04-25T04:46:29.6824689Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-04-25T04:46:29.6827594Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-04-25T04:46:29.6833183Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-04-25T04:46:29.6836267Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-04-25T04:46:29.6841744Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:46:29.6853484Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:46:29.6854366Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:46:29.6858537Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-04-25T04:46:29.6863836Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6866774Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6873521Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6880872Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6892249Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6903392Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6910338Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6917072Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6923426Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6930036Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6936624Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6943325Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-04-25T04:46:29.6949385Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:46:29.6952856Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:46:29.6959754Z 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:46:29.6966396Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:46:29.6972127Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:46:29.6975250Z 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:46:29.6981813Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:46:29.6998407Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-04-25T04:46:29.7004076Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:46:29.7007996Z 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:46:29.7014803Z 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:46:29.7021529Z 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:46:29.7032908Z 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:46:29.7038986Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-04-25T04:46:29.7042065Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-04-25T04:46:29.7047874Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7050925Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7057986Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7064995Z 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:46:29.7072101Z 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:46:29.7083484Z 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:46:29.7090470Z 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:46:29.7106619Z 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:46:29.7113059Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7119810Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7126636Z 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:46:29.7133807Z 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:46:29.7140618Z 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:46:29.7146999Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7153788Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7161895Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:29.7167768Z 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:46:29.7173537Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-04-25T04:46:29.7177059Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-04-25T04:46:29.7182585Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-04-25T04:46:29.7185552Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-04-25T04:46:29.7191605Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7199992Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7207217Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7213853Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7220294Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7231847Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7238849Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7247320Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7253909Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7260357Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7267332Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7274689Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7281592Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7288695Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7295705Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7302435Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7309120Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7316824Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7324950Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7332633Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7339286Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7352426Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7359712Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7366732Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7373819Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7380436Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7389095Z 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:46:29.7396068Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7402926Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7410195Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7417995Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7430726Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7437017Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7443600Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7450679Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7457210Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7463882Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7470704Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7477676Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7491117Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7503443Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7510827Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7518153Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7524932Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7532173Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7538914Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-04-25T04:46:29.7545921Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:46:29.7547996Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:46:29.7554548Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:46:29.7561250Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-04-25T04:46:29.7567672Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:29.7574735Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:29.7581277Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:29.7588102Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:29.7595658Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-04-25T04:46:29.7604033Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7621867Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7629056Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7637879Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7644497Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7651556Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7659189Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7666275Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7673553Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7680591Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-04-25T04:46:29.7688599Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7695384Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7701962Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7709086Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7715912Z 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:46:29.7722685Z copying torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7729761Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7741034Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7748060Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7755600Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7763209Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7769676Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7781410Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7788190Z 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:46:29.7795046Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7802018Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7808476Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7815736Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7822876Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7829588Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7837479Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7849414Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7856278Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7864272Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7872503Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7879608Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7886566Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7893388Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7907617Z 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:46:29.7914731Z 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:46:29.7921870Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7937472Z copying torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7944476Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7951453Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7958324Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7964989Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7971657Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7979514Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7985443Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7992771Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.7999269Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:29.8005615Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-04-25T04:46:29.8009182Z 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:46:29.8016130Z 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:46:29.8022762Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-04-25T04:46:29.8026716Z 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:46:29.8033245Z 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:46:29.8039104Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-04-25T04:46:29.8042375Z 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:46:29.8050717Z 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:46:29.8057227Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8064544Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8072058Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8079410Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8100993Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8128850Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8129719Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8130552Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8133155Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8141178Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8171777Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8183526Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8190513Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-04-25T04:46:29.8197640Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:29.8205458Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:29.8212571Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:29.8224406Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:29.8231164Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:29.8238226Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-04-25T04:46:29.8246888Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8253626Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8262887Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8398992Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8406077Z copying torch\include\ATen\native\cuda\cutlass_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8414212Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8421113Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8427682Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8435405Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8447637Z 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:46:29.8454657Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8461977Z 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:46:29.8469360Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8476942Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8483578Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8490704Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8497942Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8505104Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8516876Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8523993Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8530874Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8539465Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8547233Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8554822Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8612718Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8620304Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8628156Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8635646Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8644285Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8651393Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8658765Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8667361Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8674430Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8681511Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8688965Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8695438Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8702287Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-04-25T04:46:29.8708380Z creating build\lib.win-amd64-cpython-39\torch\include\THC 2025-04-25T04:46:29.8711905Z copying torch\include\THC\THCAtomics.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-04-25T04:46:29.8718137Z copying torch\include\THC\THCDeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-04-25T04:46:29.8731868Z copying torch\_inductor\codegen\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-04-25T04:46:29.8752777Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-04-25T04:46:29.8756366Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-04-25T04:46:29.8770154Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-04-25T04:46:29.8777119Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:29.8791344Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-04-25T04:46:29.8804742Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-04-25T04:46:29.8810160Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-04-25T04:46:29.8819879Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8822939Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8835447Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8841748Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8854825Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8862257Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8869251Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8875997Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-04-25T04:46:29.8887017Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8890157Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8897170Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8904202Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8910703Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8922105Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8928866Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8942307Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8948971Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8956127Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-04-25T04:46:29.8962765Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-04-25T04:46:29.8965929Z 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:46:29.8972334Z 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:46:29.8978148Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-04-25T04:46:29.8987869Z 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:46:29.8999804Z 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:46:29.9007951Z 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:46:29.9020560Z 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:46:29.9026320Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-04-25T04:46:29.9029554Z 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:46:29.9037023Z 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:46:29.9043702Z 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:46:29.9059828Z 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:46:29.9066082Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-04-25T04:46:29.9069097Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-04-25T04:46:29.9076103Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-04-25T04:46:29.9083250Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-04-25T04:46:29.9095213Z 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:46:29.9116080Z 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:46:29.9127548Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:46:29.9135146Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:46:29.9146829Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:29.9154624Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:29.9172282Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:29.9192154Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-04-25T04:46:29.9205192Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9220026Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9230602Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9239734Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9255851Z copying torch\lib\c10_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9271650Z copying torch\lib\caffe2_nvrtc.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9278151Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9361264Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9370069Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9377207Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:29.9388950Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.0710845Z copying torch\lib\torch_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2695148Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2702432Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2859103Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2861082Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2869520Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2877187Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2890956Z copying torch\lib\c10_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2903168Z copying torch\lib\caffe2_nvrtc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2915714Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:30.2923806Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.0051006Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.0071547Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.0092247Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.0098739Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.0691263Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.0794632Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1171330Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1533481Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1566958Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1576763Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1663889Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1675557Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1683149Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1954176Z copying torch\lib\torch_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1978319Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.1988390Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-04-25T04:46:31.2018408Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-04-25T04:46:31.2024245Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-04-25T04:46:31.2553234Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-04-25T04:46:31.2943987Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.2947563Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.2959575Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.2972026Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.3701998Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4193463Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4206168Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4640910Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4648874Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4655452Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4662316Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4669102Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4681026Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4692640Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4709132Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4716650Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4723614Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4735578Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4743040Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4756567Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4773053Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4786647Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4794286Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4800445Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4811945Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4818732Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4830097Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.4841115Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5465110Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5472095Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5493195Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5505678Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5513283Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5520457Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5539930Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5555644Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5563056Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5569828Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5577009Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5598092Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-04-25T04:46:31.5608193Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.5611217Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.5617859Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.5629004Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.5640020Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.5652070Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.7549240Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.7562530Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:31.7909322Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.2964105Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.2985230Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3008218Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3034468Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3046604Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3639273Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3652668Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3680886Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3687902Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-04-25T04:46:32.3692947Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.3697383Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4074023Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4080937Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4103388Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4115476Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4128350Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4141957Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4154266Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4161304Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4173107Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4184818Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4196145Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4211741Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4218745Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4230192Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4241651Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.4253481Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5131132Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5142777Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5158447Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5169377Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5181491Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5188329Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-04-25T04:46:32.5195455Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-04-25T04:46:32.5203618Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:32.5212144Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-04-25T04:46:32.5220505Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-04-25T04:46:32.5229199Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-04-25T04:46:32.5238428Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-04-25T04:46:32.5246838Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-04-25T04:46:32.6221483Z running build_ext 2025-04-25T04:46:34.5887448Z -- Building with NumPy bindings 2025-04-25T04:46:34.5887984Z -- Detected cuDNN at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64, 2025-04-25T04:46:34.5888583Z -- Detected CUDA at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-04-25T04:46:34.5888993Z -- Not using XPU 2025-04-25T04:46:34.5889207Z -- Using MKLDNN 2025-04-25T04:46:34.5889508Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-04-25T04:46:34.5889901Z -- Not using CBLAS in MKLDNN 2025-04-25T04:46:34.5890171Z -- Not using NCCL 2025-04-25T04:46:34.5890410Z -- Building without distributed package 2025-04-25T04:46:34.5890715Z -- Building Executorch 2025-04-25T04:46:34.5890935Z -- Using ITT 2025-04-25T04:46:34.5891665Z 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:46:34.5892838Z 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:46:34.5908093Z building 'torch._C' extension 2025-04-25T04:46:34.5929745Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-04-25T04:46:34.5942639Z "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:46:34.6054110Z stub.c 2025-04-25T04:46:35.1584692Z "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:46:35.1993425Z 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:46:35.2105212Z Generating code 2025-04-25T04:46:35.2739243Z Finished generating code 2025-04-25T04:46:35.3277295Z 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:46:35.3321283Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:79: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-04-25T04:46:35.3322057Z !! 2025-04-25T04:46:35.3322181Z 2025-04-25T04:46:35.3322298Z ******************************************************************************** 2025-04-25T04:46:35.3322669Z Please avoid running ``setup.py`` directly. 2025-04-25T04:46:35.3323045Z Instead, use pypa/build, pypa/installer or other 2025-04-25T04:46:35.3323383Z standards-based tools. 2025-04-25T04:46:35.3323554Z 2025-04-25T04:46:35.3323843Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-04-25T04:46:35.3324346Z ******************************************************************************** 2025-04-25T04:46:35.3324579Z 2025-04-25T04:46:35.3324652Z !! 2025-04-25T04:46:35.3324831Z self.initialize_options() 2025-04-25T04:46:35.3426999Z installing to build\bdist.win-amd64\wheel 2025-04-25T04:46:35.3427355Z running install 2025-04-25T04:46:35.3451229Z running install_lib 2025-04-25T04:46:35.3564103Z creating build\bdist.win-amd64\wheel 2025-04-25T04:46:35.3569533Z creating build\bdist.win-amd64\wheel\functorch 2025-04-25T04:46:35.3572818Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-04-25T04:46:35.3576079Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-04-25T04:46:35.3581912Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-04-25T04:46:35.3585245Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3591199Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3597231Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3602962Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3619331Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3624840Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3631655Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3636805Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3642300Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-04-25T04:46:35.3648277Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-04-25T04:46:35.3651564Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-04-25T04:46:35.3657000Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-04-25T04:46:35.3662471Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-04-25T04:46:35.3667789Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-04-25T04:46:35.3671636Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-04-25T04:46:35.3677153Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-04-25T04:46:35.3682280Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-04-25T04:46:35.3687620Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-04-25T04:46:35.3708075Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-04-25T04:46:35.3711784Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-04-25T04:46:35.3715111Z 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:46:35.3720372Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-04-25T04:46:35.3723820Z 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:46:35.3729255Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-04-25T04:46:35.3732555Z 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:46:35.3773137Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-04-25T04:46:35.3786805Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-04-25T04:46:35.3788578Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-04-25T04:46:35.3836659Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-04-25T04:46:35.3837260Z creating build\bdist.win-amd64\wheel\torch 2025-04-25T04:46:35.3837632Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-04-25T04:46:35.3838277Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-04-25T04:46:35.3839187Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-04-25T04:46:35.3839812Z creating build\bdist.win-amd64\wheel\torch\amp 2025-04-25T04:46:35.3840419Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-04-25T04:46:35.3841272Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-04-25T04:46:35.3853546Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-04-25T04:46:35.3859279Z creating build\bdist.win-amd64\wheel\torch\ao 2025-04-25T04:46:35.3863153Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-04-25T04:46:35.3866281Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-04-25T04:46:35.3869701Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-04-25T04:46:35.3873514Z 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:46:35.3879721Z 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:46:35.3885144Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-04-25T04:46:35.3888954Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-04-25T04:46:35.3892551Z 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:46:35.3903511Z 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:46:35.3909292Z 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:46:35.3914969Z 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:46:35.3931574Z 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:46:35.3936993Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-04-25T04:46:35.3940513Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-04-25T04:46:35.3944436Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:46:35.3947843Z 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:46:35.3953552Z 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:46:35.3958852Z 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:46:35.3964513Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-04-25T04:46:35.3968120Z 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:46:35.3973969Z 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:46:35.3980092Z 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:46:35.3986198Z 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:46:35.3992302Z 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:46:35.4008640Z 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:46:35.4014355Z 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:46:35.4020334Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-04-25T04:46:35.4024219Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-04-25T04:46:35.4027666Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-04-25T04:46:35.4031826Z 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:46:35.4038242Z 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:46:35.4043393Z 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:46:35.4048961Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-04-25T04:46:35.4052376Z 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:46:35.4058136Z 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:46:35.4063709Z 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:46:35.4069216Z 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:46:35.4074438Z 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:46:35.4080725Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-04-25T04:46:35.4084172Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-04-25T04:46:35.4101093Z 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:46:35.4102346Z 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:46:35.4103443Z 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:46:35.4105316Z 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:46:35.4110821Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-04-25T04:46:35.4124912Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-04-25T04:46:35.4128259Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-04-25T04:46:35.4132112Z 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:46:35.4138240Z 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:46:35.4143621Z 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:46:35.4150115Z 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:46:35.4155544Z 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:46:35.4160536Z 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:46:35.4171610Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-04-25T04:46:35.4175241Z 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:46:35.4181403Z 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:46:35.4186892Z 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:46:35.4193424Z 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:46:35.4198773Z 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:46:35.4215357Z 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:46:35.4220969Z 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:46:35.4226627Z 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:46:35.4232912Z 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:46:35.4238464Z 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:46:35.4244433Z 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:46:35.4249938Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-04-25T04:46:35.4263577Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-04-25T04:46:35.4266818Z 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:46:35.4272480Z 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:46:35.4278732Z 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:46:35.4284756Z 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:46:35.4290224Z 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:46:35.4295652Z 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:46:35.4301080Z 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:46:35.4306352Z 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:46:35.4311850Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-04-25T04:46:35.4315255Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-04-25T04:46:35.4325233Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-04-25T04:46:35.4327125Z 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:46:35.4332870Z 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:46:35.4338114Z 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:46:35.4343563Z 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:46:35.4349334Z 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:46:35.4354410Z 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:46:35.4359449Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-04-25T04:46:35.4365407Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-04-25T04:46:35.4368907Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-04-25T04:46:35.4372497Z 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:46:35.4378397Z 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:46:35.4384663Z 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:46:35.4390524Z 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:46:35.4396103Z 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:46:35.4413712Z 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:46:35.4419244Z 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:46:35.4430511Z 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:46:35.4436677Z 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:46:35.4442575Z 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:46:35.4447124Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-04-25T04:46:35.4452905Z 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:46:35.4459688Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-04-25T04:46:35.4464379Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-04-25T04:46:35.4467658Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-04-25T04:46:35.4471175Z 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:46:35.4477025Z 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:46:35.4487251Z 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:46:35.4504083Z 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:46:35.4509529Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-04-25T04:46:35.4513465Z 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:46:35.4519718Z 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:46:35.4525316Z 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:46:35.4541501Z 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:46:35.4548360Z 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:46:35.4554252Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-04-25T04:46:35.4556621Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-04-25T04:46:35.4561100Z 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:46:35.4567232Z 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:46:35.4571746Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-04-25T04:46:35.4575461Z 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:46:35.4581147Z 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:46:35.4586582Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-04-25T04:46:35.4601591Z 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:46:35.4607265Z 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:46:35.4612973Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-04-25T04:46:35.4626991Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-04-25T04:46:35.4631150Z 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:46:35.4637215Z 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:46:35.4642721Z 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:46:35.4658602Z 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:46:35.4663119Z 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:46:35.4668766Z 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:46:35.4674564Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-04-25T04:46:35.4678141Z 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:46:35.4683834Z 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:46:35.4689658Z 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:46:35.4705614Z 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:46:35.4711471Z 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:46:35.4717371Z 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:46:35.4723747Z 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:46:35.4729540Z 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:46:35.4739123Z 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:46:35.4744367Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-04-25T04:46:35.4759815Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-04-25T04:46:35.4765735Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-04-25T04:46:35.4769797Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-04-25T04:46:35.4772772Z 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:46:35.4779114Z 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:46:35.4785168Z 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:46:35.4791203Z 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:46:35.4807848Z 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:46:35.4812419Z 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:46:35.4818597Z 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:46:35.4824849Z 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:46:35.4830741Z 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:46:35.4836604Z 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:46:35.4842167Z 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:46:35.4852585Z 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:46:35.4858568Z 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:46:35.4864178Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.4871422Z 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:46:35.4887167Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.4893257Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-04-25T04:46:35.4896740Z 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:46:35.4903564Z 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:46:35.4909615Z 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:46:35.4915214Z 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:46:35.4921081Z 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:46:35.4936860Z 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:46:35.4942548Z 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:46:35.4948274Z 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:46:35.4954148Z 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:46:35.4960728Z 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:46:35.4966457Z 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:46:35.4973483Z 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:46:35.4980040Z 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:46:35.4986143Z 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:46:35.4992059Z 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:46:35.4998334Z 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:46:35.5004854Z 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:46:35.5011530Z 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:46:35.5019068Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-04-25T04:46:35.5022665Z 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:46:35.5029981Z 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:46:35.5036230Z 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:46:35.5052377Z 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:46:35.5058727Z 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:46:35.5063405Z 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:46:35.5069082Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5076006Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-04-25T04:46:35.5079650Z 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:46:35.5085345Z 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:46:35.5090639Z 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:46:35.5096175Z 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:46:35.5112721Z 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:46:35.5118446Z 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:46:35.5124473Z 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:46:35.5131241Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-04-25T04:46:35.5134832Z 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:46:35.5140868Z 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:46:35.5146010Z 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:46:35.5152206Z 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:46:35.5158976Z 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:46:35.5164931Z 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:46:35.5169658Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5175759Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5181540Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5187074Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5193739Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-04-25T04:46:35.5197407Z 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:46:35.5203002Z 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:46:35.5208847Z 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:46:35.5225339Z 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:46:35.5231272Z 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:46:35.5237775Z 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:46:35.5248452Z 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:46:35.5255263Z 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:46:35.5261757Z 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:46:35.5267033Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5273400Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5278846Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5284637Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5307960Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5333358Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5334325Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5335310Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5338119Z 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:46:35.5343805Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-04-25T04:46:35.5349659Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-04-25T04:46:35.5355988Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-04-25T04:46:35.5359700Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5365951Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5371724Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5378265Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5395339Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5402932Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5408857Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5414723Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5421485Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5427607Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5434336Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5440277Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-04-25T04:46:35.5444828Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-04-25T04:46:35.5451058Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-04-25T04:46:35.5457232Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-04-25T04:46:35.5496357Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-04-25T04:46:35.5503534Z creating build\bdist.win-amd64\wheel\torch\backends 2025-04-25T04:46:35.5506979Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-04-25T04:46:35.5510483Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-04-25T04:46:35.5516079Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-04-25T04:46:35.5519522Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-04-25T04:46:35.5525725Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-04-25T04:46:35.5529001Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-04-25T04:46:35.5534914Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-04-25T04:46:35.5540998Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-04-25T04:46:35.5544269Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-04-25T04:46:35.5550217Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-04-25T04:46:35.5553741Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-04-25T04:46:35.5558977Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-04-25T04:46:35.5566966Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-04-25T04:46:35.5572594Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-04-25T04:46:35.5575865Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-04-25T04:46:35.5581485Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-04-25T04:46:35.5584968Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-04-25T04:46:35.5590711Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-04-25T04:46:35.5593960Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-04-25T04:46:35.5599894Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-04-25T04:46:35.5603245Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-04-25T04:46:35.5608784Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-04-25T04:46:35.5612112Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-04-25T04:46:35.5617582Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-04-25T04:46:35.5621028Z 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:46:35.5626715Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-04-25T04:46:35.5630276Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-04-25T04:46:35.5635959Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-04-25T04:46:35.5639227Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-04-25T04:46:35.5645627Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-04-25T04:46:35.5650386Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-04-25T04:46:35.5653723Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-04-25T04:46:35.5659628Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-04-25T04:46:35.5662997Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-04-25T04:46:35.5668685Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-04-25T04:46:35.5673547Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-04-25T04:46:35.5676844Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-04-25T04:46:35.5687076Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-04-25T04:46:35.5693983Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-04-25T04:46:35.5698872Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-04-25T04:46:35.5704668Z creating build\bdist.win-amd64\wheel\torch\bin 2025-04-25T04:46:35.5707975Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5717643Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5767580Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5777153Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooAsyncTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5797025Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5807503Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5838750Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5848904Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5933025Z copying build\lib.win-amd64-cpython-39\torch\bin\test_edge_op_registration.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5942391Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.5992954Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.6020019Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.6083337Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-04-25T04:46:35.6090005Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-04-25T04:46:35.6105592Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-04-25T04:46:35.6110983Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-04-25T04:46:35.6116396Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-04-25T04:46:35.6122564Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-04-25T04:46:35.6125917Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-04-25T04:46:35.6131724Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-04-25T04:46:35.6136337Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-04-25T04:46:35.6139737Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-04-25T04:46:35.6143434Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-04-25T04:46:35.6148906Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-04-25T04:46:35.6154393Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-04-25T04:46:35.6159475Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-04-25T04:46:35.6165219Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-04-25T04:46:35.6168496Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-04-25T04:46:35.6171787Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:46:35.6177344Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:46:35.6182417Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:46:35.6187883Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-04-25T04:46:35.6193051Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6198320Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6203192Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6208335Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6214158Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6230278Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6236230Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6241541Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6247063Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6252729Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6257976Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6263041Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6268731Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6274839Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6280873Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6287215Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6293129Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6298432Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-04-25T04:46:35.6305765Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-04-25T04:46:35.6309501Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-04-25T04:46:35.6313062Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-04-25T04:46:35.6316768Z 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:46:35.6322970Z 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:46:35.6333903Z 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:46:35.6350648Z 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:46:35.6356590Z 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:46:35.6362423Z 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:46:35.6368235Z 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:46:35.6374615Z 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:46:35.6380464Z 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:46:35.6386312Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-04-25T04:46:35.6392519Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-04-25T04:46:35.6396416Z 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:46:35.6402498Z 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:46:35.6408447Z 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:46:35.6423786Z 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:46:35.6429238Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-04-25T04:46:35.6448067Z 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:46:35.6453820Z 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:46:35.6458514Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-04-25T04:46:35.6462224Z 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:46:35.6472281Z 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:46:35.6478085Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-04-25T04:46:35.6481754Z 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:46:35.6488011Z 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:46:35.6494013Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-04-25T04:46:35.6497928Z 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:46:35.6504257Z 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:46:35.6509165Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-04-25T04:46:35.6514580Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.6520468Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-04-25T04:46:35.6523875Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-04-25T04:46:35.6529624Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.6546514Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-04-25T04:46:35.6550098Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6555850Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6562042Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6568236Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6584113Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6589693Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6596001Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6601508Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6607118Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6613255Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6619240Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6624760Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6630364Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6635873Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6642201Z 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:46:35.6647993Z 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:46:35.6654707Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6661326Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6667488Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6673324Z 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:46:35.6679119Z 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:46:35.6684720Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6690378Z 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:46:35.6705899Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6711664Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6717362Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6723279Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6728885Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6734532Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6740282Z 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:46:35.6751237Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6756963Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6772549Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6777696Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-04-25T04:46:35.6783494Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.6789092Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.6794609Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.6801242Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.6809646Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-04-25T04:46:35.6813106Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-04-25T04:46:35.6816446Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-04-25T04:46:35.6819990Z 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:46:35.6826233Z 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:46:35.6831915Z 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:46:35.6837902Z 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:46:35.6843711Z 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:46:35.6848247Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-04-25T04:46:35.6854384Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-04-25T04:46:35.6858187Z 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:46:35.6863841Z 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:46:35.6869211Z 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:46:35.6875044Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-04-25T04:46:35.6878507Z 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:46:35.6885604Z 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:46:35.6894932Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-04-25T04:46:35.6908522Z 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:46:35.6915404Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-04-25T04:46:35.6919347Z 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:46:35.6924989Z 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:46:35.6930278Z 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:46:35.6936068Z 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:46:35.6962830Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-04-25T04:46:35.6976659Z 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:46:35.6982507Z 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:46:35.6988083Z 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:46:35.6993445Z 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:46:35.6999554Z 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:46:35.7031064Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-04-25T04:46:35.7031962Z 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:46:35.7033217Z 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:46:35.7034657Z 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:46:35.7040626Z 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:46:35.7047318Z 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:46:35.7053075Z 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:46:35.7058933Z 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:46:35.7064750Z 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:46:35.7070803Z 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:46:35.7076378Z 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:46:35.7081999Z 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:46:35.7092756Z 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:46:35.7099094Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-04-25T04:46:35.7102493Z 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:46:35.7108298Z 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:46:35.7115345Z 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:46:35.7120244Z 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:46:35.7135812Z 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:46:35.7141882Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-04-25T04:46:35.7145223Z 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:46:35.7150984Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-04-25T04:46:35.7154343Z 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:46:35.7159840Z 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:46:35.7165234Z 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:46:35.7170417Z 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:46:35.7176055Z 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:46:35.7181299Z 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:46:35.7197042Z 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:46:35.7202607Z 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:46:35.7207752Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-04-25T04:46:35.7213745Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-04-25T04:46:35.7217246Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7223478Z 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:46:35.7230370Z 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:46:35.7236332Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7243096Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7258928Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7264885Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7270612Z 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:46:35.7276550Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7283906Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7289852Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-04-25T04:46:35.7293335Z 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:46:35.7299162Z 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:46:35.7305199Z 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:46:35.7321174Z 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:46:35.7327609Z 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:46:35.7334122Z 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:46:35.7340513Z 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:46:35.7346793Z 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:46:35.7352817Z 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:46:35.7358130Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7364410Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7370044Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7377976Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7385055Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7391107Z 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:46:35.7397486Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7403392Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7442793Z 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:46:35.7453115Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7458859Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-04-25T04:46:35.7464512Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.7470656Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-04-25T04:46:35.7474471Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-04-25T04:46:35.7480142Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-04-25T04:46:35.7485861Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.7491655Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-04-25T04:46:35.7495105Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-04-25T04:46:35.7498645Z 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:46:35.7505440Z 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:46:35.7510472Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-04-25T04:46:35.7517295Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-04-25T04:46:35.7520848Z 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:46:35.7527195Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-04-25T04:46:35.7531090Z 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:46:35.7537297Z 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:46:35.7541789Z 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:46:35.7546404Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-04-25T04:46:35.7552286Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-04-25T04:46:35.7555953Z 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:46:35.7561625Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7567337Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7583808Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7590401Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7596029Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7603055Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7609290Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7615468Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7621639Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7627871Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7634430Z 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:46:35.7640572Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7646567Z 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:46:35.7653529Z 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:46:35.7659436Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7664864Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-04-25T04:46:35.7670835Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-04-25T04:46:35.7674398Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7681100Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7687931Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7694593Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7710472Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7715628Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7722671Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7728312Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7733876Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7739321Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-04-25T04:46:35.7744664Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.7750404Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.7756353Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-04-25T04:46:35.7759843Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7766698Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7772687Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7778165Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7794372Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7799804Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7805235Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7810937Z 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:46:35.7816820Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-04-25T04:46:35.7820434Z 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:46:35.7826127Z 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:46:35.7831427Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7837332Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-04-25T04:46:35.7842457Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.7848734Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-04-25T04:46:35.7852322Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-04-25T04:46:35.7855856Z 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:46:35.7861983Z 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:46:35.7867583Z 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:46:35.7873293Z 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:46:35.7888901Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.7894694Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-04-25T04:46:35.7898153Z 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:46:35.7904586Z 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:46:35.7910445Z 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:46:35.7925901Z 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:46:35.7931911Z 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:46:35.7938087Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-04-25T04:46:35.7941141Z 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:46:35.7946639Z 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:46:35.7952187Z 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:46:35.7958318Z 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:46:35.7963842Z 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:46:35.7969749Z 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:46:35.7986771Z 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:46:35.7992559Z 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:46:35.7998021Z 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:46:35.8003590Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8020187Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8027226Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8033665Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8040209Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8046414Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-04-25T04:46:35.8050161Z 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:46:35.8055885Z 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:46:35.8062075Z 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:46:35.8067935Z 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:46:35.8084003Z 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:46:35.8089668Z 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:46:35.8096081Z 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:46:35.8102652Z 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:46:35.8108811Z 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:46:35.8114560Z 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:46:35.8120790Z 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:46:35.8126883Z 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:46:35.8132144Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8142897Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8144206Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8150427Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8156828Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8162307Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8167539Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8172911Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-04-25T04:46:35.8178441Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8184230Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8190953Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-04-25T04:46:35.8204320Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:46:35.8209691Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:46:35.8215474Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-04-25T04:46:35.8218832Z 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:46:35.8224082Z 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:46:35.8229370Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:46:35.8245670Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-04-25T04:46:35.8250958Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8256641Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8262603Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8268194Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8274465Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-04-25T04:46:35.8277798Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:46:35.8283420Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-04-25T04:46:35.8286885Z 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:46:35.8292678Z 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:46:35.8298557Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:46:35.8303911Z 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:46:35.8319653Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-04-25T04:46:35.8323297Z 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:46:35.8329043Z 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:46:35.8335302Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-04-25T04:46:35.8338808Z 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:46:35.8345799Z 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:46:35.8351716Z 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:46:35.8356849Z 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:46:35.8362365Z 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:46:35.8378114Z 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:46:35.8383590Z 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:46:35.8389687Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-04-25T04:46:35.8393302Z 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:46:35.8399033Z 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:46:35.8404696Z 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:46:35.8410223Z 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:46:35.8415862Z 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:46:35.8431662Z 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:46:35.8437040Z 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:46:35.8443116Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:46:35.8449065Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-04-25T04:46:35.8452754Z 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:46:35.8458658Z 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:46:35.8464177Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-04-25T04:46:35.8467518Z 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:46:35.8473464Z 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:46:35.8479633Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-04-25T04:46:35.8494036Z 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:46:35.8499983Z 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:46:35.8525437Z 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:46:35.8527916Z 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:46:35.8529328Z 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:46:35.8533523Z 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:46:35.8538876Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:46:35.8544889Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-04-25T04:46:35.8550798Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-04-25T04:46:35.8554552Z 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:46:35.8561282Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-04-25T04:46:35.8563735Z 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:46:35.8569059Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8575408Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-04-25T04:46:35.8579161Z 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:46:35.8585793Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-04-25T04:46:35.8599246Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-04-25T04:46:35.8604621Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-04-25T04:46:35.8610584Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-04-25T04:46:35.8616360Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-04-25T04:46:35.8619755Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8626170Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8631994Z 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:46:35.8638090Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8654484Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8660189Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8667052Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8672426Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8678862Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8685225Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8690939Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-04-25T04:46:35.8696075Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-04-25T04:46:35.8702643Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-04-25T04:46:35.8706140Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8711868Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8717275Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8722742Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8738309Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8743634Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8749028Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8780442Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8786281Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8792117Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8797897Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8803729Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8809375Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8815135Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8820845Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8826954Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8832906Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8838622Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8844750Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8850503Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8856260Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8862035Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8877442Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8888767Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8894729Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8900430Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8906541Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8912386Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8917905Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8923776Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8929498Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8935461Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8951007Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8956959Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8966553Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8972338Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8978036Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8983595Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8989773Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.8995520Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9001255Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9012371Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9019272Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9024891Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9030662Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9046209Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9051553Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9057330Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-04-25T04:46:35.9063644Z creating build\bdist.win-amd64\wheel\torch\export 2025-04-25T04:46:35.9067124Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9072793Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9078414Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9084172Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9100978Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-04-25T04:46:35.9104540Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-04-25T04:46:35.9110304Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9116946Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9123396Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-04-25T04:46:35.9126740Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-04-25T04:46:35.9132237Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9172564Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9179003Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9184974Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9190779Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9196447Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9202433Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9209268Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9215084Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9221711Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9227224Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-04-25T04:46:35.9234029Z creating build\bdist.win-amd64\wheel\torch\fft 2025-04-25T04:46:35.9237494Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-04-25T04:46:35.9244414Z creating build\bdist.win-amd64\wheel\torch\func 2025-04-25T04:46:35.9247771Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-04-25T04:46:35.9253691Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:35.9260811Z creating build\bdist.win-amd64\wheel\torch\futures 2025-04-25T04:46:35.9264606Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-04-25T04:46:35.9270634Z creating build\bdist.win-amd64\wheel\torch\fx 2025-04-25T04:46:35.9273902Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9279500Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9285234Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-04-25T04:46:35.9288863Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9295311Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9300949Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9311765Z 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:46:35.9318517Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9324261Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9330329Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-04-25T04:46:35.9334025Z 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:46:35.9340263Z 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:46:35.9347109Z 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:46:35.9364053Z 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:46:35.9369590Z 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:46:35.9375731Z 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:46:35.9381342Z 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:46:35.9386984Z 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:46:35.9391688Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9397698Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9403924Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9409648Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9416846Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9423305Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9429155Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9434834Z 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:46:35.9440647Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9449690Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9456609Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-04-25T04:46:35.9460258Z 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:46:35.9465939Z 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:46:35.9471386Z 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:46:35.9477217Z 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:46:35.9482829Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-04-25T04:46:35.9496995Z 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:46:35.9502690Z 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:46:35.9508509Z 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:46:35.9514711Z 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:46:35.9520419Z 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:46:35.9535978Z 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:46:35.9541221Z 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:46:35.9546831Z 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:46:35.9552698Z 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:46:35.9558097Z 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:46:35.9563297Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9568859Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9584869Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9590781Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9596258Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9601868Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9607924Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-04-25T04:46:35.9612642Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9619252Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9635628Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9641232Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9653566Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9660105Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:35.9666732Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-04-25T04:46:35.9670515Z 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:46:35.9676290Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-04-25T04:46:35.9679794Z 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:46:35.9685883Z 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:46:35.9690511Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-04-25T04:46:35.9694008Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-04-25T04:46:35.9697397Z 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:46:35.9708965Z 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:46:35.9713546Z 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:46:35.9717937Z 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:46:35.9723431Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9739570Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9745069Z 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:46:35.9751086Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-04-25T04:46:35.9754480Z 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:46:35.9760814Z 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:46:35.9766339Z 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:46:35.9771663Z 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:46:35.9786597Z 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:46:35.9792929Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9798473Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9804034Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9811582Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9821069Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9829146Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9837053Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9844490Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9850691Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9856937Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-04-25T04:46:35.9860520Z 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:46:35.9865964Z 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:46:35.9870598Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:35.9876997Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-04-25T04:46:36.2354549Z 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:46:36.2360553Z 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:46:36.2366433Z 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:46:36.2373010Z 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:46:36.2392170Z 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:46:36.2397484Z 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:46:36.2402532Z 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:46:36.2409186Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-04-25T04:46:36.2414121Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2420923Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2426748Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2432788Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2438968Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2444390Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2450691Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2456510Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2462392Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2474090Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2479904Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-04-25T04:46:36.2489363Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:36.2535885Z creating build\bdist.win-amd64\wheel\torch\include 2025-04-25T04:46:36.2539885Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-04-25T04:46:36.2586473Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-04-25T04:46:36.2587758Z 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:46:36.2588879Z 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:46:36.2590249Z 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:46:36.2591335Z 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:46:36.2592431Z 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:46:36.2594744Z 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:46:36.2600636Z 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:46:36.2606518Z 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:46:36.2612223Z 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:46:36.2617661Z 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:46:36.2624009Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:46:36.2630277Z 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:46:36.2635571Z 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:46:36.2641175Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:46:36.2658541Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-04-25T04:46:36.2662129Z 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:46:36.2668616Z 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:46:36.2674271Z 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:46:36.2679798Z 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:46:36.2698419Z 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:46:36.2704569Z 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:46:36.2710413Z 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:46:36.2716825Z 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:46:36.2722858Z 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:46:36.2728912Z 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:46:36.2734441Z 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:46:36.2740622Z 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:46:36.2746744Z 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:46:36.2753031Z 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:46:36.2758929Z 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:46:36.2764583Z 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:46:36.2771049Z 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:46:36.2776626Z 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:46:36.2782980Z 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:46:36.2788619Z 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:46:36.2794386Z 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:46:36.2799857Z 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:46:36.2806381Z 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:46:36.2811795Z 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:46:36.2817341Z 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:46:36.2823880Z 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:46:36.2841171Z 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:46:36.2846752Z 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:46:36.2852520Z 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:46:36.2858620Z 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:46:36.2864218Z 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:46:36.2874328Z 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:46:36.2880274Z 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:46:36.2886118Z 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:46:36.2892990Z 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:46:36.2899856Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:46:36.2906821Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-04-25T04:46:36.2911240Z 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:46:36.2917522Z 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:46:36.2923386Z 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:46:36.2929320Z 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:46:36.2949920Z 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:46:36.2958287Z 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:46:36.2964347Z 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:46:36.2970811Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-04-25T04:46:36.2978428Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-04-25T04:46:36.2982351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.2988228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.2993491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.2999380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3005652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3022833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3028340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3034373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3081140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3082092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3083040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3084238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3085513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3086896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3088278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3089575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3093660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3100661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3107008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3123780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3129262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.3136740Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-04-25T04:46:36.3140319Z 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:46:36.3146020Z 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:46:36.3151596Z 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:46:36.3157147Z 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:46:36.3173816Z 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:46:36.3179298Z 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:46:36.3185897Z 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:46:36.3191528Z 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:46:36.3196929Z 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:46:36.3203367Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-04-25T04:46:36.3207076Z 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:46:36.3212643Z 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:46:36.3218526Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-04-25T04:46:36.3222201Z 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:46:36.3228310Z 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:46:36.3234725Z 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:46:36.3240390Z 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:46:36.3257364Z 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:46:36.3263181Z 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:46:36.3280743Z 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:46:36.3287054Z 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:46:36.3292525Z 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:46:36.3298652Z 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:46:36.3304694Z 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:46:36.3311012Z 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:46:36.3316847Z 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:46:36.3322346Z 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:46:36.3328668Z 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:46:36.3333906Z 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:46:36.3339793Z 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:46:36.3345715Z 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:46:36.3352000Z 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:46:36.3357647Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-04-25T04:46:36.3361015Z 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:46:36.3366829Z 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:46:36.3373269Z 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:46:36.3379684Z 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:46:36.3396191Z 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:46:36.3402133Z 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:46:36.3412056Z 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:46:36.3417998Z 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:46:36.3465558Z 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:46:36.3471553Z 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:46:36.3476985Z 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:46:36.3482763Z 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:46:36.3488536Z 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:46:36.3494144Z 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:46:36.3499939Z 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:46:36.3506346Z 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:46:36.3512534Z 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:46:36.3519047Z 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:46:36.3524869Z 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:46:36.3542327Z 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:46:36.3548624Z 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:46:36.3554523Z 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:46:36.3560377Z 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:46:36.3566129Z 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:46:36.3573023Z 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:46:36.3579836Z 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:46:36.3585646Z 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:46:36.3592466Z 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:46:36.3598656Z 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:46:36.3615311Z 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:46:36.3621310Z 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:46:36.3626960Z 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:46:36.3632871Z 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:46:36.3638906Z 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:46:36.3644646Z 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:46:36.3651076Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-04-25T04:46:36.3659843Z 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:46:36.3663471Z 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:46:36.3670257Z 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:46:36.3675480Z 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:46:36.3692374Z 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:46:36.3698255Z 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:46:36.3704367Z 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:46:36.3710101Z 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:46:36.3726574Z 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:46:36.3732238Z 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:46:36.3737524Z 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:46:36.3742885Z 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:46:36.3748564Z 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:46:36.3754090Z 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:46:36.3759893Z 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:46:36.3765646Z 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:46:36.3771232Z 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:46:36.3776763Z 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:46:36.3782473Z 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:46:36.3788974Z 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:46:36.3818955Z 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:46:36.3824507Z 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:46:36.3830223Z 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:46:36.3835566Z 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:46:36.3841297Z 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:46:36.3846815Z 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:46:36.3852150Z 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:46:36.3873583Z 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:46:36.3879113Z 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:46:36.3884779Z 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:46:36.3890745Z 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:46:36.3897170Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-04-25T04:46:36.3900876Z 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:46:36.3906939Z 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:46:36.3913059Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-04-25T04:46:36.3916630Z 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:46:36.3922362Z 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:46:36.3928204Z 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:46:36.3934270Z 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:46:36.3951293Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-04-25T04:46:36.3954776Z 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:46:36.3960626Z 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:46:36.3966467Z 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:46:36.3972577Z 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:46:36.3989828Z 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:46:36.3996116Z 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:46:36.4002169Z 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:46:36.4009380Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-04-25T04:46:36.4012602Z 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:46:36.4022435Z 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:46:36.4052574Z 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:46:36.4053747Z 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:46:36.4054915Z 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:46:36.4060553Z 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:46:36.4066838Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-04-25T04:46:36.4070792Z 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:46:36.4077023Z 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:46:36.4081933Z 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:46:36.4088222Z 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:46:36.4104713Z 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:46:36.4110772Z 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:46:36.4117079Z 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:46:36.4124165Z 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:46:36.4129361Z 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:46:36.4135345Z 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:46:36.4141423Z 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:46:36.4146904Z 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:46:36.4153614Z 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:46:36.4159719Z 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:46:36.4166841Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-04-25T04:46:36.4170403Z 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:46:36.4176481Z 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:46:36.4182278Z 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:46:36.4199920Z 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:46:36.4205875Z 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:46:36.4212233Z 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:46:36.4219459Z 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:46:36.4225369Z 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:46:36.4231213Z 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:46:36.4237563Z 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:46:36.4243398Z 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:46:36.4249882Z 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:46:36.4256218Z 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:46:36.4262890Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-04-25T04:46:36.4266890Z 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:46:36.4274241Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-04-25T04:46:36.4277965Z 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:46:36.4283870Z 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:46:36.4290833Z 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:46:36.4297972Z 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:46:36.4315400Z 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:46:36.4321250Z 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:46:36.4327890Z 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:46:36.4334396Z 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:46:36.4341192Z 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:46:36.4347980Z 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:46:36.4355053Z 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:46:36.4361749Z 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:46:36.4367729Z 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:46:36.4373364Z 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:46:36.4379220Z 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:46:36.4385036Z 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:46:36.4391421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4397391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4403180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4409728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4416190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4423192Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-04-25T04:46:36.4426839Z 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:46:36.4432889Z 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:46:36.4438533Z 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:46:36.4444005Z 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:46:36.4450306Z 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:46:36.4466803Z 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:46:36.4472743Z 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:46:36.4478872Z 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:46:36.4484796Z 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:46:36.4490841Z 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:46:36.4497880Z 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:46:36.4504028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-04-25T04:46:36.4509913Z 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:46:36.4516210Z 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:46:36.4522094Z 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:46:36.4527670Z 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:46:36.4533208Z 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:46:36.4539460Z 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:46:36.4545354Z 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:46:36.4550794Z 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:46:36.4557314Z 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:46:36.4573067Z 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:46:36.4584066Z 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:46:36.4586112Z 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:46:36.4591558Z 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:46:36.4597548Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-04-25T04:46:36.4601283Z 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:46:36.4607116Z 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:46:36.4612806Z 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:46:36.4618409Z 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:46:36.4648068Z 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:46:36.4649242Z 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:46:36.4650391Z 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:46:36.4697430Z 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:46:36.4698738Z 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:46:36.4699866Z 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:46:36.4701009Z 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:46:36.4702097Z 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:46:36.4703149Z 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:46:36.4704148Z 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:46:36.4705152Z 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:46:36.4715302Z 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:46:36.4721048Z 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:46:36.4726780Z 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:46:36.4732637Z 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:46:36.4738035Z 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:46:36.4743504Z 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:46:36.4749064Z 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:46:36.4754922Z 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:46:36.4760355Z 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:46:36.4766240Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-04-25T04:46:36.4779997Z 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:46:36.4786266Z 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:46:36.4792739Z 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:46:36.4798448Z 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:46:36.4815935Z 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:46:36.4821651Z 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:46:36.4827310Z 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:46:36.4833815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4849162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4855916Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-04-25T04:46:36.4859317Z 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:46:36.4864571Z 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:46:36.4870708Z 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:46:36.4876002Z 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:46:36.4881195Z 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:46:36.4896323Z 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:46:36.4901959Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-04-25T04:46:36.4905549Z 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:46:36.4911342Z 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:46:36.4916971Z 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:46:36.4932842Z 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:46:36.4938893Z 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:46:36.4944489Z 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:46:36.4950838Z 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:46:36.4956552Z 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:46:36.4962122Z 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:46:36.4967988Z 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:46:36.4973608Z 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:46:36.4979245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4984908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.4995842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5001496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5006818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5012451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5018758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5025434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5030873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5065915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5081900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5087523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5093219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5098861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5104940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5110654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5116353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5122462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5129775Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-04-25T04:46:36.5133342Z 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:46:36.5139210Z 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:46:36.5144725Z 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:46:36.5161093Z 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:46:36.5166786Z 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:46:36.5172872Z 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:46:36.5178732Z 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:46:36.5184675Z 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:46:36.5190553Z 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:46:36.5196393Z 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:46:36.5201793Z 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:46:36.5208507Z 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:46:36.5213379Z 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:46:36.5219047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5234801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5241033Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-04-25T04:46:36.5244538Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-04-25T04:46:36.5248330Z 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:46:36.5254253Z 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:46:36.5259863Z 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:46:36.5275498Z 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:46:36.5281255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5321267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5326754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5332546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5337923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5343495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5349522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5355423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5376204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5382215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5387952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5393825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5399646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5405671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5411626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5418240Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-04-25T04:46:36.5421823Z 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:46:36.5427908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5433924Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-04-25T04:46:36.5447279Z 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:46:36.5452981Z 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:46:36.5459231Z 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:46:36.5465136Z 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:46:36.5481376Z 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:46:36.5487005Z 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:46:36.5492781Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-04-25T04:46:36.5496249Z 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:46:36.5501969Z 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:46:36.5508295Z 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:46:36.5514957Z 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:46:36.5530280Z 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:46:36.5535954Z 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:46:36.5542117Z 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:46:36.5548001Z 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:46:36.5553596Z 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:46:36.5559709Z 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:46:36.5566183Z 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:46:36.5572268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5578217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.5586074Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-04-25T04:46:36.5589799Z 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:46:36.5595796Z 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:46:36.5601539Z 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:46:36.5607643Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-04-25T04:46:36.5621520Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-04-25T04:46:36.5624829Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-04-25T04:46:36.5628690Z 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:46:36.5634535Z 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:46:36.5640538Z 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:46:36.5646164Z 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:46:36.5651846Z 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:46:36.5657587Z 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:46:36.5663398Z 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:46:36.5669168Z 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:46:36.5674790Z 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:46:36.5680515Z 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:46:36.5686173Z 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:46:36.5691670Z 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:46:36.5697003Z 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:46:36.5703087Z 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:46:36.5709457Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-04-25T04:46:36.5712711Z 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:46:36.5718728Z 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:46:36.5725114Z 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:46:36.5731113Z 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:46:36.5746996Z 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:46:36.5752599Z 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:46:36.5758256Z 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:46:36.5764325Z 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:46:36.5769932Z 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:46:36.5776020Z 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:46:36.5781796Z 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:46:36.5787671Z 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:46:36.5793406Z 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:46:36.5799087Z 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:46:36.5805031Z 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:46:36.5810835Z 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:46:36.5816860Z 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:46:36.5822545Z 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:46:36.5828360Z 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:46:36.5834780Z 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:46:36.5850490Z 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:46:36.5856427Z 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:46:36.5862119Z 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:46:36.5867985Z 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:46:36.5873837Z 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:46:36.5879657Z 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:46:36.5890438Z 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:46:36.5893569Z 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:46:36.5898853Z 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:46:36.5905790Z 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:46:36.5912016Z 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:46:36.5928170Z 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:46:36.5934219Z 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:46:36.5940975Z 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:46:36.5947173Z 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:46:36.5952740Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-04-25T04:46:36.5956117Z 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:46:36.5961912Z 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:46:36.5967939Z 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:46:36.5973581Z 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:46:36.5989640Z 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:46:36.5995169Z 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:46:36.6000883Z 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:46:36.6007278Z 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:46:36.6013557Z 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:46:36.6019396Z 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:46:36.6025214Z 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:46:36.6031553Z 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:46:36.6037267Z 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:46:36.6042959Z 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:46:36.6049287Z 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:46:36.6054461Z 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:46:36.6060837Z 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:46:36.6066389Z 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:46:36.6082104Z 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:46:36.6087938Z 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:46:36.6093600Z 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:46:36.6099413Z 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:46:36.6105141Z 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:46:36.6111104Z 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:46:36.6116857Z 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:46:36.6122088Z 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:46:36.6127933Z 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:46:36.6133796Z 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:46:36.6150082Z 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:46:36.6155625Z 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:46:36.6161457Z 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:46:36.6167110Z 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:46:36.6172400Z 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:46:36.6178131Z 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:46:36.6185580Z 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:46:36.6192173Z 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:46:36.6198274Z 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:46:36.6203950Z 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:46:36.6210847Z 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:46:36.6226699Z 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:46:36.6232356Z 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:46:36.6237952Z 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:46:36.6244563Z 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:46:36.6250038Z 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:46:36.6256389Z 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:46:36.6262074Z 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:46:36.6267415Z 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:46:36.6272952Z 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:46:36.6278832Z 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:46:36.6285186Z 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:46:36.6290563Z 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:46:36.6305786Z 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:46:36.6311793Z 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:46:36.6318078Z 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:46:36.6324279Z 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:46:36.6330331Z 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:46:36.6336330Z 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:46:36.6341913Z 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:46:36.6347650Z 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:46:36.6353572Z 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:46:36.6379059Z 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:46:36.6385009Z 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:46:36.6391441Z 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:46:36.6407212Z 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:46:36.6413346Z 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:46:36.6419487Z 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:46:36.6426246Z 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:46:36.6432713Z 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:46:36.6438797Z 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:46:36.6444605Z 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:46:36.6451587Z 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:46:36.6457475Z 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:46:36.6463223Z 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:46:36.6468421Z 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:46:36.6484167Z 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:46:36.6489593Z 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:46:36.6495275Z 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:46:36.6501417Z 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:46:36.6507219Z 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:46:36.6514039Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-04-25T04:46:36.6517936Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-04-25T04:46:36.6521984Z 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:46:36.6528280Z 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:46:36.6533545Z 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:46:36.6538433Z 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:46:36.6543864Z 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:46:36.6549810Z 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:46:36.6567471Z 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:46:36.6572657Z 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:46:36.6578716Z 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:46:36.6584904Z 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:46:36.6590512Z 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:46:36.6596433Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-04-25T04:46:36.6609515Z 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:46:36.6614996Z 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:46:36.6620615Z 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:46:36.6626161Z 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:46:36.6631829Z 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:46:36.6637346Z 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:46:36.6643147Z 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:46:36.6650128Z 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:46:36.6656277Z 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:46:36.6663782Z 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:46:36.6669600Z 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:46:36.6675307Z 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:46:36.6681319Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-04-25T04:46:36.6684769Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-04-25T04:46:36.6688220Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-04-25T04:46:36.6691626Z 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:46:36.6697659Z 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:46:36.6703424Z 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:46:36.6709240Z 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:46:36.6714782Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-04-25T04:46:36.6718285Z 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:46:36.6723670Z 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:46:36.6729128Z 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:46:36.6734457Z 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:46:36.6751166Z 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:46:36.6757277Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-04-25T04:46:36.6760825Z 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:46:36.6766732Z 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:46:36.6772389Z 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:46:36.6788602Z 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:46:36.6794396Z 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:46:36.6800149Z 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:46:36.6805957Z 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:46:36.6811741Z 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:46:36.6817887Z 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:46:36.6823966Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-04-25T04:46:36.6837245Z 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:46:36.6877298Z 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:46:36.6883044Z 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:46:36.6898814Z 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:46:36.6904647Z 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:46:36.6910929Z 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:46:36.6916942Z 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:46:36.6922815Z 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:46:36.6929037Z 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:46:36.6934835Z 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:46:36.6940677Z 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:46:36.6946374Z 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:46:36.6952165Z 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:46:36.6958475Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-04-25T04:46:36.6962244Z 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:46:36.6972628Z 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:46:36.6978237Z 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:46:36.6994131Z 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:46:36.7000316Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-04-25T04:46:36.7004101Z 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:46:36.7009980Z 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:46:36.7015403Z 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:46:36.7021571Z 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:46:36.7037618Z 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:46:36.7043474Z 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:46:36.7048439Z 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:46:36.7054197Z 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:46:36.7060076Z 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:46:36.7073325Z 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:46:36.7074679Z 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:46:36.7100982Z 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:46:36.7119694Z 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:46:36.7125891Z 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:46:36.7130795Z 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:46:36.7137138Z 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:46:36.7142491Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-04-25T04:46:36.7145959Z 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:46:36.7153400Z 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:46:36.7157968Z 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:46:36.7163296Z 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:46:36.7168816Z 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:46:36.7174618Z 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:46:36.7179848Z 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:46:36.7199125Z 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:46:36.7204387Z 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:46:36.7210167Z 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:46:36.7216640Z 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:46:36.7222467Z 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:46:36.7227952Z 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:46:36.7233712Z 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:46:36.7239630Z 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:46:36.7245412Z 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:46:36.7251170Z 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:46:36.7256833Z 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:46:36.7272972Z 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:46:36.7278849Z 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:46:36.7284122Z 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:46:36.7289839Z 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:46:36.7295574Z 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:46:36.7301474Z 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:46:36.7307270Z 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:46:36.7313296Z 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:46:36.7318966Z 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:46:36.7324957Z 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:46:36.7341129Z 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:46:36.7347077Z 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:46:36.7352797Z 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:46:36.7358356Z 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:46:36.7364122Z 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:46:36.7369620Z 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:46:36.7376185Z 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:46:36.7382026Z 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:46:36.7388134Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-04-25T04:46:36.7392058Z 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:46:36.7398065Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-04-25T04:46:36.7403916Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-04-25T04:46:36.7407827Z 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:46:36.7413749Z 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:46:36.7419738Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-04-25T04:46:36.7423846Z 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:46:36.7429947Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-04-25T04:46:36.7433803Z 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:46:36.7441047Z 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:46:36.7447427Z 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:46:36.7463416Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-04-25T04:46:36.7467537Z 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:46:36.7473595Z 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:46:36.7479713Z 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:46:36.7486129Z 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:46:36.7502290Z 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:46:36.7508260Z 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:46:36.7514543Z 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:46:36.7521663Z 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:46:36.7537434Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-04-25T04:46:36.7541669Z 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:46:36.7547642Z 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:46:36.7554222Z 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:46:36.7575867Z 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:46:36.7578157Z 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:46:36.7586314Z 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:46:36.7592874Z 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:46:36.7599124Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-04-25T04:46:36.7603199Z 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:46:36.7610643Z 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:46:36.7616968Z 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:46:36.7623966Z 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:46:36.7630921Z 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:46:36.7636777Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-04-25T04:46:36.7640964Z 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:46:36.7646537Z 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:46:36.7652211Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-04-25T04:46:36.7656096Z 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:46:36.7661917Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-04-25T04:46:36.7665373Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-04-25T04:46:36.7668947Z 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:46:36.7674808Z 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:46:36.7680987Z 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:46:36.7698166Z 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:46:36.7703748Z 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:46:36.7710176Z 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:46:36.7715877Z 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:46:36.7721824Z 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:46:36.7727126Z 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:46:36.7732630Z 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:46:36.7738313Z 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:46:36.7744649Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-04-25T04:46:36.7748216Z 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:46:36.7753529Z 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:46:36.7759114Z 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:46:36.7764976Z 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:46:36.7770546Z 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:46:36.7776592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7783460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7790401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7796074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7802005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7807667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7814384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:36.7973577Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-04-25T04:46:36.7976917Z 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:46:36.7982955Z 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:46:36.7988730Z 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:46:36.7994333Z 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:46:36.8009989Z 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:46:36.8015861Z 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:46:36.8021845Z 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:46:36.8027766Z 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:46:36.8033600Z 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:46:36.8039108Z 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:46:36.8044512Z 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:46:36.8050029Z 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:46:36.8056187Z 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:46:36.8061610Z 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:46:36.8067282Z 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:46:36.8073368Z 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:46:36.8078807Z 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:46:36.8085713Z 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:46:36.8091993Z 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:46:36.8098002Z 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:46:36.8114762Z 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:46:36.8121382Z 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:46:36.8126955Z 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:46:36.8132961Z 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:46:36.8139156Z 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:46:36.8145311Z 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:46:36.8152061Z 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:46:36.8157787Z 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:46:36.8163865Z 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:46:36.8180738Z 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:46:36.8186055Z 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:46:36.8191967Z 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:46:36.8198331Z 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:46:36.8204125Z 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:46:36.8209975Z 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:46:36.8215797Z 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:46:36.8221791Z 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:46:36.8237466Z 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:46:36.8243423Z 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:46:36.8249245Z 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:46:36.8255045Z 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:46:36.8261014Z 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:46:36.8267120Z 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:46:36.8273446Z 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:46:36.8279303Z 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:46:36.8285386Z 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:46:36.8291448Z 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:46:36.8297453Z 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:46:36.8444757Z 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:46:36.8451042Z 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:46:36.8457331Z 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:46:36.8462929Z 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:46:36.8468942Z 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:46:36.8477030Z 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:46:36.8483129Z 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:46:36.8489552Z 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:46:36.8495801Z 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:46:36.8501933Z 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:46:36.8507890Z 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:46:36.8523735Z 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:46:36.8529855Z 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:46:36.8536316Z 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:46:36.8542704Z 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:46:36.8548806Z 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:46:36.8554904Z 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:46:36.8561025Z 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:46:36.8577938Z 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:46:36.8587238Z 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:46:36.8590604Z 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:46:36.8596767Z 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:46:36.8603262Z 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:46:36.8619743Z 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:46:36.8626139Z 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:46:36.8632283Z 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:46:36.8640116Z 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:46:36.8646323Z 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:46:36.8652479Z 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:46:36.8659065Z 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:46:36.8664835Z 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:46:36.8671127Z 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:46:36.8676976Z 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:46:36.8682927Z 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:46:36.8688879Z 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:46:36.8694906Z 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:46:36.8700667Z 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:46:36.8706520Z 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:46:36.8712130Z 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:46:36.8717869Z 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:46:36.8723660Z 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:46:36.8729181Z 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:46:36.8735043Z 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:46:36.8740762Z 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:46:36.8746907Z 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:46:36.8752606Z 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:46:36.8758428Z 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:46:36.8774991Z 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:46:36.8781000Z 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:46:36.8797542Z 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:46:36.8798568Z 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:46:36.8799541Z 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:46:36.8805012Z 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:46:36.8810673Z 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:46:36.8816416Z 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:46:36.8822387Z 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:46:36.8828147Z 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:46:36.8834168Z 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:46:36.8840419Z 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:46:36.8846094Z 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:46:36.8852092Z 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:46:36.8857751Z 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:46:36.8863548Z 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:46:36.8869392Z 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:46:36.8875398Z 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:46:36.8881129Z 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:46:36.8887425Z 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:46:36.8893792Z 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:46:36.8900063Z 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:46:36.8916825Z 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:46:36.8922818Z 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:46:36.8929525Z 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:46:36.8936170Z 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:46:36.8946145Z 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:46:36.8952403Z 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:46:36.8958542Z 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:46:36.8964590Z 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:46:36.8970508Z 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:46:36.8977125Z 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:46:36.8982368Z 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:46:36.8988821Z 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:46:36.8995205Z 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:46:36.9001266Z 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:46:36.9007266Z 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:46:36.9013203Z 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:46:36.9019073Z 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:46:36.9024735Z 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:46:36.9030686Z 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:46:36.9036682Z 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:46:36.9042433Z 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:46:36.9048782Z 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:46:36.9054275Z 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:46:36.9060092Z 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:46:36.9065911Z 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:46:36.9071428Z 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:46:36.9097980Z 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:46:36.9099328Z 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:46:36.9100527Z 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:46:36.9101825Z 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:46:36.9116605Z 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:46:36.9155649Z 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:46:36.9161784Z 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:46:36.9167533Z 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:46:36.9173677Z 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:46:36.9179965Z 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:46:36.9186054Z 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:46:36.9192095Z 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:46:36.9197758Z 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:46:36.9203697Z 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:46:36.9209499Z 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:46:36.9215319Z 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:46:36.9220912Z 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:46:36.9226770Z 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:46:36.9232423Z 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:46:36.9239567Z 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:46:36.9247446Z 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:46:36.9255103Z 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:46:36.9261606Z 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:46:36.9268849Z 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:46:36.9280227Z 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:46:36.9286471Z 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:46:36.9292876Z 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:46:36.9306140Z 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:46:36.9314705Z 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:46:36.9321743Z 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:46:36.9327697Z 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:46:36.9333484Z 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:46:36.9339935Z 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:46:36.9346021Z 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:46:36.9352615Z 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:46:36.9358410Z 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:46:36.9365886Z 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:46:36.9372709Z 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:46:36.9378501Z 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:46:36.9383936Z 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:46:36.9389357Z 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:46:36.9396300Z 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:46:36.9402442Z 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:46:36.9408138Z 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:46:36.9420386Z 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:46:36.9426014Z 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:46:36.9432016Z 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:46:36.9437629Z 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:46:36.9443689Z 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:46:36.9449432Z 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:46:36.9455183Z 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:46:36.9460951Z 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:46:36.9466634Z 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:46:36.9472435Z 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:46:36.9477960Z 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:46:36.9484126Z 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:46:36.9489659Z 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:46:36.9495562Z 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:46:36.9501239Z 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:46:36.9507047Z 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:46:36.9513049Z 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:46:36.9518776Z 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:46:36.9524938Z 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:46:36.9530480Z 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:46:36.9537049Z 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:46:36.9542600Z 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:46:36.9548301Z 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:46:36.9554171Z 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:46:36.9559800Z 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:46:36.9565168Z 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:46:36.9571065Z 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:46:36.9576942Z 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:46:36.9582828Z 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:46:36.9588344Z 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:46:36.9594035Z 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:46:36.9599932Z 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:46:36.9605559Z 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:46:36.9611224Z 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:46:36.9616815Z 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:46:36.9622688Z 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:46:36.9629081Z 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:46:36.9634719Z 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:46:36.9640397Z 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:46:36.9646282Z 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:46:36.9665280Z 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:46:36.9671129Z 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:46:36.9677038Z 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:46:36.9682964Z 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:46:36.9688831Z 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:46:36.9694839Z 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:46:36.9700575Z 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:46:36.9706334Z 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:46:36.9713204Z 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:46:36.9719057Z 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:46:36.9724855Z 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:46:36.9730757Z 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:46:36.9736491Z 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:46:36.9742390Z 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:46:36.9747963Z 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:46:36.9753862Z 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:46:36.9759872Z 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:46:36.9765491Z 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:46:36.9771214Z 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:46:36.9776984Z 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:46:36.9782761Z 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:46:36.9789016Z 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:46:36.9794807Z 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:46:36.9800469Z 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:46:36.9806470Z 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:46:36.9812087Z 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:46:36.9817819Z 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:46:36.9823536Z 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:46:36.9829383Z 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:46:36.9835040Z 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:46:36.9840546Z 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:46:36.9846492Z 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:46:36.9852311Z 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:46:36.9858110Z 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:46:36.9863745Z 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:46:36.9869542Z 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:46:36.9875811Z 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:46:36.9881662Z 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:46:36.9887407Z 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:46:36.9893201Z 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:46:36.9899299Z 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:46:36.9904894Z 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:46:36.9910899Z 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:46:36.9916848Z 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:46:36.9923002Z 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:46:36.9928678Z 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:46:36.9934387Z 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:46:36.9940137Z 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:46:36.9946100Z 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:46:36.9951839Z 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:46:36.9957588Z 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:46:36.9963404Z 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:46:36.9969222Z 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:46:37.0024701Z 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:46:37.0030374Z 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:46:37.0036210Z 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:46:37.0042276Z 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:46:37.0049574Z 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:46:37.0055437Z 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:46:37.0060833Z 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:46:37.0066853Z 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:46:37.0072593Z 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:46:37.0078457Z 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:46:37.0122025Z 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:46:37.0122982Z 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:46:37.0124185Z 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:46:37.0125419Z 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:46:37.0126521Z 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:46:37.0127730Z 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:46:37.0128741Z 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:46:37.0129765Z 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:46:37.0135867Z 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:46:37.0145341Z 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:46:37.0151379Z 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:46:37.0157260Z 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:46:37.0163292Z 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:46:37.0169123Z 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:46:37.0175468Z 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:46:37.0180856Z 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:46:37.0186410Z 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:46:37.0192861Z 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:46:37.0198499Z 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:46:37.0205048Z 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:46:37.0211113Z 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:46:37.0216977Z 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:46:37.0235452Z 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:46:37.0241589Z 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:46:37.0247399Z 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:46:37.0253561Z 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:46:37.0259466Z 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:46:37.0265269Z 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:46:37.0271322Z 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:46:37.0277896Z 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:46:37.0283857Z 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:46:37.0289969Z 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:46:37.0295864Z 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:46:37.0301700Z 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:46:37.0307293Z 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:46:37.0313483Z 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:46:37.0319176Z 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:46:37.0325182Z 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:46:37.0331150Z 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:46:37.0336912Z 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:46:37.0342732Z 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:46:37.0348548Z 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:46:37.0354531Z 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:46:37.0360525Z 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:46:37.0366206Z 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:46:37.0372777Z 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:46:37.0378913Z 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:46:37.0384535Z 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:46:37.0390486Z 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:46:37.0396197Z 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:46:37.0402807Z 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:46:37.0408551Z 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:46:37.0414592Z 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:46:37.0420350Z 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:46:37.0427078Z 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:46:37.0433231Z 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:46:37.0439086Z 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:46:37.0444806Z 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:46:37.0450989Z 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:46:37.0456922Z 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:46:37.0462914Z 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:46:37.0469755Z 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:46:37.0476561Z 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:46:37.0482668Z 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:46:37.0488526Z 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:46:37.0494351Z 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:46:37.0500756Z 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:46:37.0506658Z 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:46:37.0512604Z 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:46:37.0518954Z 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:46:37.0525155Z 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:46:37.0531209Z 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:46:37.0537788Z 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:46:37.0543798Z 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:46:37.0550370Z 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:46:37.0556685Z 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:46:37.0563502Z 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:46:37.0569485Z 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:46:37.0576084Z 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:46:37.0582325Z 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:46:37.0609191Z 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:46:37.0610320Z 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:46:37.0611406Z 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:46:37.0612672Z 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:46:37.0615481Z 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:46:37.0621761Z 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:46:37.0627930Z 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:46:37.0634330Z 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:46:37.0640421Z 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:46:37.0646519Z 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:46:37.0652358Z 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:46:37.0658359Z 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:46:37.0664926Z 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:46:37.0670950Z 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:46:37.0676995Z 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:46:37.0684295Z 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:46:37.0690427Z 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:46:37.0696597Z 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:46:37.0714325Z 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:46:37.0720634Z 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:46:37.0726420Z 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:46:37.0732681Z 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:46:37.0738498Z 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:46:37.0744796Z 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:46:37.0751268Z 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:46:37.0757191Z 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:46:37.0763006Z 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:46:37.0769015Z 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:46:37.0775374Z 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:46:37.0780838Z 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:46:37.0786689Z 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:46:37.0793062Z 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:46:37.0798714Z 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:46:37.0839098Z 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:46:37.0845097Z 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:46:37.0851245Z 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:46:37.0857163Z 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:46:37.0863076Z 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:46:37.0869011Z 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:46:37.0874924Z 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:46:37.0881043Z 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:46:37.0887004Z 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:46:37.0893082Z 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:46:37.0904073Z 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:46:37.0911355Z 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:46:37.0917200Z 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:46:37.0923518Z 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:46:37.0929395Z 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:46:37.0935500Z 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:46:37.0941972Z 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:46:37.0948331Z 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:46:37.0954916Z 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:46:37.0960966Z 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:46:37.0967529Z 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:46:37.0974012Z 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:46:37.0980016Z 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:46:37.0986453Z 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:46:37.0992561Z 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:46:37.0999788Z 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:46:37.1005881Z 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:46:37.1012599Z 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:46:37.1018972Z 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:46:37.1025144Z 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:46:37.1031436Z 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:46:37.1037888Z 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:46:37.1044556Z 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:46:37.1051013Z 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:46:37.1057255Z 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:46:37.1063455Z 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:46:37.1069632Z 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:46:37.1075589Z 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:46:37.1093365Z 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:46:37.1100389Z 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:46:37.1107439Z 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:46:37.1114218Z 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:46:37.1120502Z 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:46:37.1127207Z 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:46:37.1133882Z 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:46:37.1140243Z 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:46:37.1146718Z 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:46:37.1153158Z 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:46:37.1159424Z 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:46:37.1165352Z 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:46:37.1171706Z 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:46:37.1177812Z 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:46:37.1183941Z 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:46:37.1190127Z 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:46:37.1206237Z 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:46:37.1212123Z 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:46:37.1217986Z 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:46:37.1223850Z 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:46:37.1229857Z 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:46:37.1235793Z 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:46:37.1241394Z 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:46:37.1247283Z 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:46:37.1253300Z 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:46:37.1259397Z 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:46:37.1265311Z 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:46:37.1271664Z 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:46:37.1277529Z 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:46:37.1283460Z 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:46:37.1289450Z 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:46:37.1295536Z 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:46:37.1301484Z 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:46:37.1307589Z 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:46:37.1314310Z 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:46:37.1320186Z 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:46:37.1326223Z 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:46:37.1332488Z 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:46:37.1338377Z 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:46:37.1344318Z 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:46:37.1350364Z 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:46:37.1356402Z 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:46:37.1362221Z 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:46:37.1368160Z 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:46:37.1374425Z 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:46:37.1380520Z 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:46:37.1386361Z 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:46:37.1392946Z 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:46:37.1398834Z 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:46:37.1404776Z 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:46:37.1411194Z 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:46:37.1417312Z 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:46:37.1423573Z 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:46:37.1429674Z 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:46:37.1435928Z 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:46:37.1441866Z 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:46:37.1447876Z 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:46:37.1453814Z 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:46:37.1459845Z 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:46:37.1466264Z 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:46:37.1472736Z 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:46:37.1479047Z 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:46:37.1485426Z 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:46:37.1491528Z 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:46:37.1497649Z 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:46:37.1503793Z 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:46:37.1510443Z 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:46:37.1516585Z 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:46:37.1522941Z 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:46:37.1528907Z 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:46:37.1535257Z 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:46:37.1541205Z 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:46:37.1547332Z 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:46:37.1553981Z 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:46:37.1559895Z 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:46:37.1565919Z 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:46:37.1577930Z 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:46:37.1584191Z 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:46:37.1590692Z 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:46:37.1618623Z 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:46:37.1619681Z 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:46:37.1620719Z 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:46:37.1621779Z 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:46:37.1624806Z 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:46:37.1631091Z 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:46:37.1637676Z 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:46:37.1643686Z 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:46:37.1649313Z 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:46:37.1655709Z 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:46:37.1661686Z 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:46:37.1667765Z 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:46:37.1674344Z 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:46:37.1680619Z 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:46:37.1686642Z 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:46:37.1692971Z 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:46:37.1699183Z 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:46:37.1705226Z 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:46:37.1711313Z 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:46:37.1717417Z 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:46:37.1723480Z 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:46:37.1729522Z 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:46:37.1735480Z 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:46:37.1741423Z 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:46:37.1747627Z 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:46:37.1753713Z 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:46:37.1759539Z 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:46:37.1765870Z 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:46:37.1772839Z 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:46:37.1778484Z 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:46:37.1784102Z 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:46:37.1789983Z 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:46:37.1796009Z 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:46:37.1801638Z 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:46:37.1807742Z 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:46:37.1813523Z 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:46:37.1818851Z 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:46:37.1824917Z 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:46:37.1830940Z 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:46:37.1836465Z 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:46:37.1842706Z 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:46:37.1848572Z 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:46:37.1854369Z 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:46:37.1860119Z 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:46:37.1866317Z 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:46:37.1872281Z 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:46:37.1878190Z 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:46:37.1883968Z 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:46:37.1894798Z 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:46:37.1901017Z 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:46:37.1907018Z 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:46:37.1913150Z 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:46:37.1919252Z 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:46:37.1925319Z 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:46:37.1931074Z 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:46:37.1937147Z 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:46:37.1942972Z 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:46:37.1949032Z 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:46:37.1955354Z 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:46:37.1961192Z 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:46:37.1967016Z 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:46:37.1972872Z 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:46:37.1978988Z 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:46:37.1985632Z 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:46:37.1991894Z 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:46:37.1997809Z 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:46:37.2003723Z 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:46:37.2009806Z 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:46:37.2015571Z 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:46:37.2021317Z 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:46:37.2027006Z 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:46:37.2033336Z 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:46:37.2039319Z 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:46:37.2045271Z 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:46:37.2051219Z 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:46:37.2072304Z 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:46:37.2078756Z 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:46:37.2084430Z 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:46:37.2090387Z 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:46:37.2132277Z 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:46:37.2133575Z 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:46:37.2135116Z 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:46:37.2136354Z 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:46:37.2137581Z 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:46:37.2138643Z 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:46:37.2139726Z 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:46:37.2169973Z 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:46:37.2175838Z 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:46:37.2181588Z 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:46:37.2187331Z 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:46:37.2193276Z 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:46:37.2199258Z 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:46:37.2205241Z 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:46:37.2211330Z 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:46:37.2217348Z 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:46:37.2222919Z 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:46:37.2228486Z 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:46:37.2234323Z 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:46:37.2239919Z 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:46:37.2245691Z 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:46:37.2251917Z 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:46:37.2257512Z 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:46:37.2263087Z 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:46:37.2269135Z 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:46:37.2275269Z 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:46:37.2281418Z 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:46:37.2286914Z 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:46:37.2292617Z 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:46:37.2298754Z 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:46:37.2304452Z 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:46:37.2310778Z 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:46:37.2316741Z 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:46:37.2322644Z 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:46:37.2328966Z 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:46:37.2334919Z 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:46:37.2341120Z 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:46:37.2347040Z 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:46:37.2353001Z 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:46:37.2359353Z 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:46:37.2365209Z 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:46:37.2371468Z 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:46:37.2377397Z 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:46:37.2384171Z 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:46:37.2391396Z 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:46:37.2397343Z 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:46:37.2403093Z 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:46:37.2409766Z 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:46:37.2415593Z 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:46:37.2421369Z 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:46:37.2435729Z 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:46:37.2442015Z 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:46:37.2448414Z 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:46:37.2465073Z 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:46:37.2466264Z 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:46:37.2467392Z 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:46:37.2473157Z 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:46:37.2479441Z 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:46:37.2485310Z 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:46:37.2524956Z 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:46:37.2531285Z 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:46:37.2537155Z 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:46:37.2543912Z 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:46:37.2549621Z 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:46:37.2555810Z 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:46:37.2562015Z 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:46:37.2568280Z 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:46:37.2574182Z 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:46:37.2580367Z 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:46:37.2586236Z 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:46:37.2592816Z 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:46:37.2598830Z 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:46:37.2605404Z 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:46:37.2611462Z 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:46:37.2618066Z 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:46:37.2625639Z 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:46:37.2631851Z 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:46:37.2637744Z 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:46:37.2643621Z 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:46:37.2649851Z 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:46:37.2656827Z 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:46:37.2664715Z 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:46:37.2670677Z 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:46:37.2676580Z 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:46:37.2682447Z 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:46:37.2688352Z 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:46:37.2694330Z 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:46:37.2700032Z 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:46:37.2705907Z 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:46:37.2712516Z 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:46:37.2718265Z 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:46:37.2724066Z 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:46:37.2729766Z 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:46:37.2735434Z 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:46:37.2740901Z 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:46:37.2747882Z 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:46:37.2753692Z 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:46:37.2759859Z 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:46:37.2765771Z 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:46:37.2771598Z 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:46:37.2800471Z 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:46:37.2806922Z 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:46:37.2812677Z 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:46:37.2818542Z 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:46:37.2824805Z 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:46:37.2830693Z 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:46:37.2836997Z 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:46:37.2843423Z 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:46:37.2849432Z 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:46:37.2855899Z 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:46:37.2862097Z 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:46:37.2868181Z 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:46:37.2874194Z 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:46:37.2880185Z 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:46:37.2886371Z 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:46:37.2892303Z 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:46:37.2898470Z 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:46:37.2904490Z 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:46:37.2910591Z 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:46:37.2916668Z 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:46:37.2922600Z 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:46:37.2928861Z 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:46:37.2934680Z 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:46:37.2940893Z 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:46:37.2946688Z 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:46:37.2953271Z 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:46:37.2959353Z 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:46:37.2965365Z 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:46:37.2971531Z 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:46:37.2977333Z 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:46:37.2983360Z 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:46:37.2989488Z 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:46:37.2995287Z 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:46:37.3000966Z 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:46:37.3006474Z 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:46:37.3012167Z 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:46:37.3018324Z 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:46:37.3024705Z 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:46:37.3030749Z 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:46:37.3037101Z 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:46:37.3043205Z 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:46:37.3049190Z 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:46:37.3055205Z 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:46:37.3061374Z 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:46:37.3067275Z 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:46:37.3073358Z 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:46:37.3079463Z 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:46:37.3094684Z 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:46:37.3100950Z 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:46:37.3107178Z 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:46:37.3113236Z 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:46:37.3119476Z 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:46:37.3125412Z 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:46:37.3131371Z 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:46:37.3137407Z 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:46:37.3143361Z 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:46:37.3149159Z 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:46:37.3155428Z 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:46:37.3161247Z 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:46:37.3167118Z 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:46:37.3172851Z 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:46:37.3178781Z 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:46:37.3184906Z 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:46:37.3191167Z 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:46:37.3197276Z 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:46:37.3203247Z 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:46:37.3209694Z 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:46:37.3215679Z 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:46:37.3221912Z 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:46:37.3228497Z 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:46:37.3234579Z 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:46:37.3240799Z 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:46:37.3247535Z 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:46:37.3253262Z 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:46:37.3259470Z 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:46:37.3265609Z 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:46:37.3272183Z 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:46:37.3278395Z 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:46:37.3284503Z 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:46:37.3290558Z 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:46:37.3296960Z 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:46:37.3302982Z 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:46:37.3308941Z 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:46:37.3315122Z 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:46:37.3321087Z 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:46:37.3326725Z 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:46:37.3333027Z 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:46:37.3339061Z 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:46:37.3345401Z 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:46:37.3351615Z 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:46:37.3357495Z 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:46:37.3363432Z 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:46:37.3369146Z 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:46:37.3375442Z 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:46:37.3381648Z 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:46:37.3387649Z 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:46:37.3393705Z 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:46:37.3400057Z 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:46:37.3405972Z 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:46:37.3411953Z 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:46:37.3418207Z 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:46:37.3424518Z 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:46:37.3430761Z 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:46:37.3436691Z 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:46:37.3442693Z 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:46:37.3448349Z 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:46:37.3454440Z 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:46:37.3460681Z 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:46:37.3466697Z 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:46:37.3473029Z 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:46:37.3479480Z 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:46:37.3485441Z 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:46:37.3491509Z 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:46:37.3497193Z 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:46:37.3504178Z 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:46:37.3510348Z 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:46:37.3516291Z 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:46:37.3522189Z 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:46:37.3528066Z 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:46:37.3533788Z 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:46:37.3539996Z 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:46:37.3546340Z 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:46:37.3552832Z 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:46:37.3559033Z 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:46:37.3565600Z 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:46:37.3571870Z 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:46:37.3577911Z 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:46:37.3584330Z 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:46:37.3590995Z 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:46:37.3596861Z 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:46:37.3603104Z 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:46:37.3610625Z 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:46:37.3636718Z 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:46:37.3637727Z 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:46:37.3638728Z 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:46:37.3639729Z 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:46:37.3642829Z 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:46:37.3649105Z 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:46:37.3655493Z 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:46:37.3661561Z 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:46:37.3666978Z 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:46:37.3673276Z 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:46:37.3679657Z 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:46:37.3685921Z 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:46:37.3691583Z 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:46:37.3697567Z 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:46:37.3703237Z 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:46:37.3709125Z 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:46:37.3714945Z 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:46:37.3720518Z 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:46:37.3726438Z 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:46:37.3740272Z 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:46:37.3745982Z 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:46:37.3752322Z 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:46:37.3758344Z 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:46:37.3764410Z 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:46:37.3770431Z 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:46:37.3776928Z 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:46:37.3782750Z 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:46:37.3788720Z 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:46:37.3794323Z 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:46:37.3799931Z 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:46:37.3805562Z 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:46:37.3811503Z 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:46:37.3817268Z 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:46:37.3823957Z 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:46:37.3829884Z 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:46:37.3835837Z 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:46:37.3841732Z 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:46:37.3847598Z 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:46:37.3853599Z 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:46:37.3859598Z 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:46:37.3865602Z 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:46:37.3872372Z 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:46:37.3878589Z 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:46:37.3884785Z 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:46:37.3890881Z 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:46:37.3902292Z 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:46:37.3908316Z 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:46:37.3914559Z 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:46:37.3920488Z 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:46:37.3926515Z 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:46:37.3933122Z 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:46:37.3939296Z 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:46:37.3966526Z 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:46:37.3973227Z 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:46:37.3979456Z 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:46:37.3985759Z 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:46:37.3992838Z 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:46:37.3999506Z 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:46:37.4005923Z 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:46:37.4012450Z 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:46:37.4046731Z 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:46:37.4047825Z 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:46:37.4048881Z 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:46:37.4050153Z 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:46:37.4051576Z 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:46:37.4053288Z 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:46:37.4059699Z 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:46:37.4066295Z 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:46:37.4072787Z 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:46:37.4079040Z 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:46:37.4084962Z 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:46:37.4091117Z 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:46:37.4097445Z 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:46:37.4104099Z 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:46:37.4110243Z 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:46:37.4116520Z 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:46:37.4122832Z 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:46:37.4130004Z 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:46:37.4135246Z 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:46:37.4141273Z 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:46:37.4147423Z 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:46:37.4157680Z 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:46:37.4164302Z 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:46:37.4202688Z 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:46:37.4209910Z 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:46:37.4216722Z 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:46:37.4223801Z 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:46:37.4230561Z 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:46:37.4237398Z 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:46:37.4244466Z 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:46:37.4250591Z 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:46:37.4256178Z 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:46:37.4262944Z 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:46:37.4268771Z 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:46:37.4275061Z 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:46:37.4281172Z 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:46:37.4287507Z 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:46:37.4294650Z 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:46:37.4300879Z 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:46:37.4307403Z 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:46:37.4313605Z 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:46:37.4320503Z 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:46:37.4326427Z 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:46:37.4332189Z 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:46:37.4338159Z 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:46:37.4343894Z 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:46:37.4350591Z 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:46:37.4356536Z 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:46:37.4362491Z 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:46:37.4368649Z 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:46:37.4374826Z 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:46:37.4380892Z 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:46:37.4387079Z 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:46:37.4393112Z 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:46:37.4399097Z 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:46:37.4405058Z 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:46:37.4410937Z 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:46:37.4416828Z 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:46:37.4422720Z 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:46:37.4428453Z 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:46:37.4435158Z 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:46:37.4441000Z 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:46:37.4446652Z 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:46:37.4453147Z 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:46:37.4459255Z 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:46:37.4465233Z 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:46:37.4471615Z 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:46:37.4477872Z 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:46:37.4484120Z 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:46:37.4490103Z 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:46:37.4499057Z 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:46:37.4505203Z 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:46:37.4511853Z 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:46:37.4518191Z 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:46:37.4524498Z 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:46:37.4530656Z 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:46:37.4536487Z 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:46:37.4543379Z 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:46:37.4548906Z 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:46:37.4554965Z 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:46:37.4561236Z 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:46:37.4567830Z 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:46:37.4573979Z 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:46:37.4580270Z 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:46:37.4586315Z 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:46:37.4592250Z 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:46:37.4598149Z 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:46:37.4604432Z 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:46:37.4610009Z 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:46:37.4616520Z 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:46:37.4622963Z 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:46:37.4629591Z 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:46:37.4636817Z 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:46:37.4643722Z 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:46:37.4650113Z 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:46:37.4656327Z 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:46:37.4662544Z 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:46:37.4669027Z 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:46:37.4675133Z 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:46:37.4681095Z 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:46:37.4687417Z 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:46:37.4693581Z 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:46:37.4699583Z 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:46:37.4705312Z 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:46:37.4711393Z 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:46:37.4717132Z 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:46:37.4729754Z 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:46:37.4731932Z 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:46:37.4738688Z 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:46:37.4744593Z 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:46:37.4751106Z 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:46:37.4756690Z 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:46:37.4763076Z 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:46:37.4768909Z 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:46:37.4774518Z 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:46:37.4780285Z 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:46:37.4785823Z 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:46:37.4791580Z 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:46:37.4797484Z 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:46:37.4803104Z 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:46:37.4808846Z 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:46:37.4814429Z 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:46:37.4820614Z 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:46:37.4826461Z 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:46:37.4832584Z 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:46:37.4838996Z 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:46:37.4844959Z 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:46:37.4850736Z 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:46:37.4857099Z 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:46:37.4863203Z 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:46:37.4869191Z 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:46:37.4875460Z 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:46:37.4881495Z 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:46:37.4887330Z 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:46:37.4893343Z 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:46:37.4899587Z 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:46:37.4905594Z 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:46:37.4911577Z 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:46:37.4917726Z 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:46:37.4924076Z 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:46:37.4929877Z 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:46:37.4936201Z 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:46:37.4942225Z 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:46:37.4948319Z 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:46:37.4954519Z 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:46:37.4979583Z 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:46:37.4985443Z 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:46:37.4991236Z 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:46:37.4997153Z 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:46:37.5002792Z 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:46:37.5008589Z 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:46:37.5014194Z 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:46:37.5020380Z 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:46:37.5026592Z 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:46:37.5033503Z 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:46:37.5039369Z 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:46:37.5045254Z 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:46:37.5051162Z 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:46:37.5056945Z 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:46:37.5062933Z 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:46:37.5070018Z 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:46:37.5075226Z 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:46:37.5081040Z 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:46:37.5086896Z 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:46:37.5092720Z 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:46:37.5098726Z 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:46:37.5104618Z 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:46:37.5148156Z 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:46:37.5149413Z 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:46:37.5150734Z 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:46:37.5151862Z 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:46:37.5152985Z 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:46:37.5154125Z 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:46:37.5155112Z 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:46:37.5157489Z 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:46:37.5163616Z 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:46:37.5169796Z 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:46:37.5176059Z 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:46:37.5181917Z 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:46:37.5187894Z 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:46:37.5193854Z 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:46:37.5200584Z 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:46:37.5205654Z 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:46:37.5211489Z 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:46:37.5217475Z 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:46:37.5223165Z 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:46:37.5229041Z 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:46:37.5235414Z 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:46:37.5241231Z 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:46:37.5247026Z 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:46:37.5252804Z 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:46:37.5258838Z 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:46:37.5264891Z 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:46:37.5270728Z 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:46:37.5276643Z 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:46:37.5282681Z 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:46:37.5295796Z 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:46:37.5296791Z 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:46:37.5301307Z 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:46:37.5307658Z 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:46:37.5315028Z 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:46:37.5321539Z 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:46:37.5328240Z 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:46:37.5334878Z 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:46:37.5341453Z 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:46:37.5348116Z 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:46:37.5354613Z 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:46:37.5361521Z 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:46:37.5367497Z 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:46:37.5373940Z 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:46:37.5379910Z 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:46:37.5385728Z 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:46:37.5391966Z 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:46:37.5397967Z 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:46:37.5403693Z 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:46:37.5410348Z 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:46:37.5416880Z 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:46:37.5422866Z 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:46:37.5429127Z 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:46:37.5435260Z 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:46:37.5441765Z 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:46:37.5447885Z 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:46:37.5453920Z 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:46:37.5460358Z 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:46:37.5466383Z 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:46:37.5473390Z 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:46:37.5479391Z 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:46:37.5485640Z 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:46:37.5491899Z 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:46:37.5497864Z 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:46:37.5504001Z 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:46:37.5510172Z 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:46:37.5516209Z 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:46:37.5522628Z 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:46:37.5528918Z 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:46:37.5535126Z 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:46:37.5541438Z 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:46:37.5547437Z 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:46:37.5553632Z 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:46:37.5559817Z 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:46:37.5566345Z 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:46:37.5572548Z 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:46:37.5578616Z 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:46:37.5584647Z 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:46:37.5591342Z 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:46:37.5597476Z 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:46:37.5603372Z 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:46:37.5609827Z 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:46:37.5615657Z 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:46:37.5621890Z 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:46:37.5627830Z 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:46:37.5634052Z 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:46:37.5640564Z 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:46:37.5646364Z 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:46:37.5652519Z 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:46:37.5658740Z 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:46:37.5665389Z 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:46:37.5671700Z 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:46:37.5677746Z 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:46:37.5683665Z 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:46:37.5690612Z 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:46:37.5697017Z 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:46:37.5702989Z 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:46:37.5709036Z 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:46:37.5715561Z 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:46:37.5721645Z 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:46:37.5727832Z 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:46:37.5740250Z 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:46:37.5746553Z 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:46:37.5752758Z 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:46:37.5759130Z 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:46:37.5764986Z 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:46:37.5770750Z 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:46:37.5776704Z 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:46:37.5782875Z 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:46:37.5789141Z 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:46:37.5795947Z 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:46:37.5801713Z 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:46:37.5808851Z 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:46:37.5845366Z 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:46:37.5851275Z 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:46:37.5857800Z 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:46:37.5863671Z 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:46:37.5869615Z 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:46:37.5874982Z 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:46:37.5881354Z 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:46:37.5902812Z 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:46:37.5908901Z 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:46:37.5915038Z 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:46:37.5920901Z 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:46:37.5926852Z 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:46:37.5932814Z 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:46:37.5938408Z 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:46:37.5944823Z 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:46:37.5950845Z 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:46:37.5957056Z 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:46:37.5962970Z 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:46:37.5968949Z 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:46:37.5974956Z 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:46:37.5980952Z 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:46:37.5987808Z 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:46:37.5993866Z 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:46:37.5999834Z 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:46:37.6005931Z 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:46:37.6011606Z 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:46:37.6017842Z 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:46:37.6024035Z 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:46:37.6029726Z 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:46:37.6035494Z 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:46:37.6041643Z 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:46:37.6047619Z 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:46:37.6054310Z 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:46:37.6060265Z 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:46:37.6066488Z 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:46:37.6072779Z 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:46:37.6078824Z 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:46:37.6084712Z 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:46:37.6090543Z 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:46:37.6096982Z 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:46:37.6103450Z 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:46:37.6108598Z 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:46:37.6114939Z 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:46:37.6121004Z 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:46:37.6127483Z 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:46:37.6133880Z 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:46:37.6139724Z 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:46:37.6145860Z 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:46:37.6152309Z 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:46:37.6158037Z 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:46:37.6163970Z 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:46:37.6170022Z 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:46:37.6176047Z 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:46:37.6181899Z 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:46:37.6187750Z 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:46:37.6193692Z 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:46:37.6199707Z 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:46:37.6205677Z 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:46:37.6211737Z 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:46:37.6217934Z 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:46:37.6224260Z 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:46:37.6230255Z 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:46:37.6236422Z 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:46:37.6242332Z 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:46:37.6256450Z 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:46:37.6257680Z 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:46:37.6260737Z 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:46:37.6266551Z 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:46:37.6272652Z 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:46:37.6278408Z 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:46:37.6284236Z 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:46:37.6289886Z 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:46:37.6295519Z 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:46:37.6301578Z 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:46:37.6307546Z 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:46:37.6313647Z 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:46:37.6319515Z 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:46:37.6325307Z 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:46:37.6331135Z 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:46:37.6336979Z 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:46:37.6343024Z 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:46:37.6349336Z 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:46:37.6356090Z 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:46:37.6364799Z 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:46:37.6371037Z 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:46:37.6377506Z 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:46:37.6384041Z 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:46:37.6390606Z 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:46:37.6396791Z 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:46:37.6403052Z 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:46:37.6409834Z 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:46:37.6416234Z 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:46:37.6422698Z 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:46:37.6429178Z 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:46:37.6435633Z 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:46:37.6442592Z 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:46:37.6449328Z 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:46:37.6456719Z 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:46:37.6462817Z 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:46:37.6469794Z 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:46:37.6484289Z 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:46:37.6490790Z 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:46:37.6497204Z 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:46:37.6503855Z 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:46:37.6510805Z 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:46:37.6517627Z 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:46:37.6524251Z 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:46:37.6530664Z 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:46:37.6537181Z 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:46:37.6543767Z 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:46:37.6550496Z 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:46:37.6557072Z 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:46:37.6563463Z 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:46:37.6569833Z 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:46:37.6576379Z 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:46:37.6582779Z 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:46:37.6589432Z 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:46:37.6595957Z 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:46:37.6602689Z 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:46:37.6609330Z 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:46:37.6615703Z 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:46:37.6622192Z 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:46:37.6630021Z 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:46:37.6637644Z 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:46:37.6645262Z 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:46:37.6651926Z 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:46:37.6658498Z 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:46:37.6664871Z 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:46:37.6671948Z 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:46:37.6678127Z 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:46:37.6684501Z 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:46:37.6690799Z 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:46:37.6697415Z 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:46:37.6703753Z 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:46:37.6710056Z 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:46:37.6716258Z 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:46:37.6722800Z 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:46:37.6728748Z 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:46:37.6735221Z 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:46:37.6741438Z 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:46:37.6748009Z 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:46:37.6754082Z 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:46:37.6760384Z 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:46:37.6766207Z 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:46:37.6771846Z 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:46:37.6777833Z 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:46:37.6783951Z 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:46:37.6789898Z 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:46:37.6796142Z 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:46:37.6802332Z 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:46:37.6808481Z 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:46:37.6814516Z 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:46:37.6820389Z 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:46:37.6826418Z 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:46:37.6832512Z 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:46:37.6838420Z 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:46:37.6844509Z 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:46:37.6851014Z 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:46:37.6857224Z 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:46:37.6862933Z 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:46:37.6869337Z 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:46:37.6875265Z 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:46:37.6881188Z 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:46:37.6887192Z 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:46:37.6893567Z 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:46:37.6900080Z 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:46:37.6905981Z 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:46:37.6912632Z 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:46:37.6924620Z 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:46:37.6933738Z 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:46:37.6938555Z 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:46:37.6950173Z 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:46:37.6960015Z 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:46:37.6966465Z 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:46:37.6972597Z 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:46:37.6978789Z 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:46:37.6984684Z 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:46:37.6991717Z 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:46:37.6998834Z 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:46:37.7003901Z 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:46:37.7010150Z 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:46:37.7016634Z 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:46:37.7022610Z 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:46:37.7028812Z 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:46:37.7034819Z 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:46:37.7041096Z 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:46:37.7047251Z 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:46:37.7053163Z 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:46:37.7059670Z 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:46:37.7065609Z 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:46:37.7071761Z 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:46:37.7077693Z 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:46:37.7083674Z 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:46:37.7090044Z 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:46:37.7096204Z 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:46:37.7102695Z 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:46:37.7108535Z 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:46:37.7115017Z 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:46:37.7120927Z 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:46:37.7126870Z 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:46:37.7133233Z 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:46:37.7139211Z 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:46:37.7145175Z 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:46:37.7151342Z 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:46:37.7157194Z 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:46:37.7163433Z 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:46:37.7169313Z 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:46:37.7175410Z 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:46:37.7181560Z 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:46:37.7188270Z 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:46:37.7194839Z 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:46:37.7203379Z 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:46:37.7212284Z 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:46:37.7218835Z 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:46:37.7224881Z 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:46:37.7231665Z 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:46:37.7237967Z 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:46:37.7245020Z 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:46:37.7251707Z 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:46:37.7258249Z 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:46:37.7264942Z 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:46:37.7271954Z 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:46:37.7278211Z 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:46:37.7284257Z 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:46:37.7290864Z 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:46:37.7296990Z 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:46:37.7303284Z 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:46:37.7310141Z 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:46:37.7316242Z 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:46:37.7322278Z 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:46:37.7328266Z 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:46:37.7334346Z 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:46:37.7340300Z 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:46:37.7346068Z 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:46:37.7352129Z 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:46:37.7363887Z 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:46:37.7370126Z 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:46:37.7375970Z 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:46:37.7381631Z 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:46:37.7387737Z 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:46:37.7393778Z 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:46:37.7399615Z 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:46:37.7405299Z 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:46:37.7411255Z 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:46:37.7417319Z 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:46:37.7423341Z 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:46:37.7429474Z 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:46:37.7435789Z 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:46:37.7441793Z 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:46:37.7448173Z 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:46:37.7454229Z 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:46:37.7460262Z 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:46:37.7466336Z 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:46:37.7472558Z 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:46:37.7478866Z 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:46:37.7484514Z 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:46:37.7524711Z 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:46:37.7530347Z 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:46:37.7536167Z 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:46:37.7541992Z 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:46:37.7547993Z 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:46:37.7553937Z 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:46:37.7560097Z 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:46:37.7566568Z 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:46:37.7572603Z 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:46:37.7578713Z 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:46:37.7585720Z 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:46:37.7591786Z 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:46:37.7597529Z 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:46:37.7607860Z 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:46:37.7642180Z 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:46:37.7648672Z 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:46:37.7654869Z 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:46:37.7661203Z 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:46:37.7667240Z 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:46:37.7673707Z 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:46:37.7680157Z 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:46:37.7686493Z 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:46:37.7692685Z 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:46:37.7698710Z 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:46:37.7706354Z 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:46:37.7711317Z 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:46:37.7717362Z 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:46:37.7723604Z 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:46:37.7729692Z 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:46:37.7736063Z 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:46:37.7742039Z 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:46:37.7748101Z 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:46:37.7754366Z 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:46:37.7760373Z 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:46:37.7766246Z 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:46:37.7772399Z 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:46:37.7778302Z 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:46:37.7784166Z 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:46:37.7790396Z 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:46:37.7796018Z 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:46:37.7802075Z 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:46:37.7807806Z 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:46:37.7813798Z 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:46:37.7819983Z 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:46:37.7843698Z 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:46:37.7849510Z 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:46:37.7855323Z 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:46:37.7860860Z 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:46:37.7866855Z 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:46:37.7872916Z 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:46:37.7878792Z 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:46:37.7884877Z 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:46:37.7890862Z 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:46:37.7896831Z 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:46:37.7902872Z 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:46:37.7908673Z 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:46:37.7914353Z 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:46:37.7920182Z 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:46:37.7926303Z 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:46:37.7932901Z 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:46:37.7938885Z 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:46:37.7945199Z 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:46:37.7951581Z 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:46:37.7957772Z 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:46:37.7963952Z 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:46:37.7969974Z 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:46:37.7976449Z 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:46:37.7982390Z 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:46:37.7988583Z 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:46:37.7994909Z 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:46:37.8001391Z 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:46:37.8007470Z 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:46:37.8013546Z 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:46:37.8019628Z 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:46:37.8025738Z 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:46:37.8032105Z 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:46:37.8038540Z 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:46:37.8044778Z 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:46:37.8051047Z 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:46:37.8057602Z 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:46:37.8063686Z 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:46:37.8070345Z 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:46:37.8076347Z 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:46:37.8082560Z 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:46:37.8088666Z 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:46:37.8094719Z 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:46:37.8101140Z 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:46:37.8107126Z 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:46:37.8113832Z 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:46:37.8119432Z 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:46:37.8125093Z 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:46:37.8131111Z 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:46:37.8136968Z 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:46:37.8142625Z 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:46:37.8154176Z 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:46:37.8155370Z 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:46:37.8206939Z 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:46:37.8214030Z 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:46:37.8220139Z 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:46:37.8226339Z 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:46:37.8233416Z 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:46:37.8240264Z 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:46:37.8245623Z 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:46:37.8251736Z 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:46:37.8257711Z 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:46:37.8263993Z 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:46:37.8269944Z 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:46:37.8275889Z 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:46:37.8281966Z 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:46:37.8293509Z 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:46:37.8298874Z 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:46:37.8304789Z 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:46:37.8311166Z 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:46:37.8316862Z 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:46:37.8322724Z 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:46:37.8328585Z 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:46:37.8334355Z 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:46:37.8340206Z 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:46:37.8346732Z 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:46:37.8352981Z 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:46:37.8359450Z 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:46:37.8365502Z 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:46:37.8371900Z 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:46:37.8378111Z 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:46:37.8384478Z 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:46:37.8391368Z 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:46:37.8397505Z 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:46:37.8403672Z 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:46:37.8409870Z 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:46:37.8415975Z 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:46:37.8422149Z 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:46:37.8428405Z 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:46:37.8434610Z 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:46:37.8440653Z 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:46:37.8471111Z 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:46:37.8477365Z 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:46:37.8483251Z 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:46:37.8489388Z 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:46:37.8495790Z 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:46:37.8502095Z 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:46:37.8508102Z 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:46:37.8514298Z 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:46:37.8519939Z 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:46:37.8525779Z 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:46:37.8532259Z 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:46:37.8538763Z 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:46:37.8545143Z 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:46:37.8552078Z 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:46:37.8557980Z 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:46:37.8564479Z 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:46:37.8570529Z 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:46:37.8576524Z 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:46:37.8583123Z 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:46:37.8589087Z 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:46:37.8595557Z 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:46:37.8601613Z 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:46:37.8607672Z 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:46:37.8614090Z 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:46:37.8620261Z 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:46:37.8626092Z 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:46:37.8633205Z 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:46:37.8644094Z 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:46:37.8645953Z 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:46:37.8652093Z 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:46:37.8658360Z 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:46:37.8664477Z 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:46:37.8670668Z 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:46:37.8676481Z 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:46:37.8682515Z 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:46:37.8688558Z 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:46:37.8694759Z 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:46:37.8700772Z 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:46:37.8706706Z 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:46:37.8712539Z 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:46:37.8718314Z 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:46:37.8724465Z 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:46:37.8730330Z 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:46:37.8736420Z 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:46:37.8742785Z 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:46:37.8748435Z 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:46:37.8754473Z 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:46:37.8760049Z 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:46:37.8765531Z 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:46:37.8771137Z 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:46:37.8777425Z 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:46:37.8783659Z 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:46:37.8789635Z 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:46:37.8796016Z 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:46:37.8802188Z 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:46:37.8808112Z 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:46:37.8814153Z 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:46:37.8820091Z 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:46:37.8826066Z 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:46:37.8832412Z 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:46:37.8838737Z 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:46:37.8844445Z 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:46:37.8850405Z 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:46:37.8856343Z 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:46:37.8862304Z 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:46:37.8868052Z 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:46:37.8874300Z 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:46:37.8880180Z 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:46:37.8886177Z 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:46:37.8892062Z 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:46:37.8897475Z 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:46:37.8903326Z 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:46:37.8909534Z 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:46:37.8915112Z 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:46:37.8921111Z 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:46:37.8927077Z 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:46:37.8932893Z 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:46:37.8938883Z 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:46:37.8944845Z 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:46:37.8950994Z 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:46:37.8957694Z 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:46:37.8963789Z 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:46:37.8969854Z 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:46:37.8975954Z 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:46:37.8982188Z 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:46:37.8988298Z 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:46:37.8994431Z 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:46:37.9000462Z 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:46:37.9007021Z 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:46:37.9013522Z 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:46:37.9019734Z 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:46:37.9025932Z 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:46:37.9032566Z 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:46:37.9039014Z 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:46:37.9045284Z 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:46:37.9051799Z 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:46:37.9058231Z 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:46:37.9065040Z 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:46:37.9071502Z 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:46:37.9077852Z 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:46:37.9084166Z 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:46:37.9090587Z 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:46:37.9096845Z 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:46:37.9103069Z 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:46:37.9109322Z 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:46:37.9116068Z 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:46:37.9122336Z 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:46:37.9128871Z 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:46:37.9135272Z 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:46:37.9160787Z 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:46:37.9161963Z 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:46:37.9163235Z 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:46:37.9164281Z 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:46:37.9168597Z 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:46:37.9175128Z 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:46:37.9181110Z 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:46:37.9187241Z 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:46:37.9193770Z 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:46:37.9199527Z 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:46:37.9205589Z 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:46:37.9211788Z 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:46:37.9217715Z 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:46:37.9259348Z 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:46:37.9265767Z 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:46:37.9271928Z 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:46:37.9277852Z 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:46:37.9284266Z 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:46:37.9290288Z 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:46:37.9296133Z 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:46:37.9314177Z 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:46:37.9320227Z 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:46:37.9326409Z 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:46:37.9332275Z 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:46:37.9337979Z 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:46:37.9344213Z 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:46:37.9350608Z 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:46:37.9356407Z 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:46:37.9364057Z 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:46:37.9369366Z 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:46:37.9375163Z 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:46:37.9381262Z 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:46:37.9387141Z 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:46:37.9393193Z 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:46:37.9399586Z 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:46:37.9405958Z 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:46:37.9411899Z 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:46:37.9417922Z 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:46:37.9424014Z 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:46:37.9430359Z 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:46:37.9436315Z 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:46:37.9442825Z 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:46:37.9448676Z 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:46:37.9454703Z 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:46:37.9460537Z 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:46:37.9466995Z 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:46:37.9472949Z 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:46:37.9479008Z 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:46:37.9485156Z 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:46:37.9491583Z 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:46:37.9497505Z 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:46:37.9503662Z 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:46:37.9509954Z 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:46:37.9516003Z 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:46:37.9522314Z 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:46:37.9528472Z 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:46:37.9534528Z 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:46:37.9541579Z 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:46:37.9571917Z 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:46:37.9577891Z 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:46:37.9584180Z 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:46:37.9590653Z 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:46:37.9600764Z 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:46:37.9605136Z 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:46:37.9611635Z 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:46:37.9617420Z 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:46:37.9623831Z 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:46:37.9630374Z 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:46:37.9636637Z 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:46:37.9642779Z 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:46:37.9648793Z 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:46:37.9654825Z 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:46:37.9661042Z 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:46:37.9666962Z 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:46:37.9677659Z 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:46:37.9683932Z 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:46:37.9689860Z 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:46:37.9695599Z 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:46:37.9702028Z 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:46:37.9757330Z 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:46:37.9759703Z 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:46:37.9762844Z 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:46:37.9765056Z 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:46:37.9768093Z 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:46:37.9770415Z 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:46:37.9772515Z 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:46:37.9775898Z 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:46:37.9784318Z 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:46:37.9791076Z 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:46:38.1707855Z 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:46:38.1714387Z 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:46:38.1720404Z 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:46:38.1726399Z 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:46:38.1732279Z 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:46:38.1738088Z 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:46:38.1744027Z 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:46:38.1750506Z 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:46:38.1756594Z 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:46:38.1762355Z 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:46:38.1769064Z 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:46:38.1774029Z 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:46:38.1779754Z 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:46:38.1795372Z 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:46:38.1796533Z 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:46:38.1797510Z 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:46:38.1803418Z 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:46:38.1810105Z 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:46:38.1815350Z 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:46:38.1821179Z 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:46:38.1827122Z 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:46:38.1833210Z 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:46:38.1838992Z 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:46:38.1844845Z 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:46:38.1850855Z 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:46:38.1856594Z 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:46:38.1862316Z 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:46:38.1868050Z 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:46:38.1874259Z 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:46:38.1879886Z 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:46:38.1886328Z 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:46:38.1894204Z 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:46:38.1900294Z 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:46:38.1906124Z 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:46:38.1912026Z 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:46:38.1918210Z 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:46:38.1924371Z 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:46:38.1930424Z 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:46:38.1936605Z 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:46:38.1943297Z 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:46:38.1949550Z 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:46:38.1955695Z 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:46:38.1961906Z 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:46:38.1967982Z 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:46:38.1974581Z 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:46:38.1981270Z 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:46:38.1988078Z 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:46:38.1993754Z 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:46:38.2000112Z 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:46:38.2006120Z 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:46:38.2012205Z 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:46:38.2018191Z 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:46:38.2024173Z 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:46:38.2030352Z 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:46:38.2036802Z 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:46:38.2042714Z 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:46:38.2049298Z 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:46:38.2055261Z 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:46:38.2060877Z 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:46:38.2067002Z 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:46:38.2072820Z 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:46:38.2079053Z 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:46:38.2084798Z 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:46:38.2091171Z 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:46:38.2097075Z 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:46:38.2103026Z 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:46:38.2108998Z 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:46:38.2115174Z 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:46:38.2121630Z 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:46:38.2127856Z 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:46:38.2134774Z 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:46:38.2140913Z 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:46:38.2146746Z 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:46:38.2153023Z 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:46:38.2161485Z 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:46:38.2165464Z 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:46:38.2171841Z 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:46:38.2178425Z 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:46:38.2184688Z 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:46:38.2190987Z 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:46:38.2197085Z 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:46:38.2202290Z 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:46:38.2208331Z 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:46:38.2214030Z 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:46:38.2219754Z 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:46:38.2225746Z 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:46:38.2231676Z 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:46:38.2237275Z 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:46:38.2243524Z 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:46:38.2249733Z 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:46:38.2255655Z 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:46:38.2261640Z 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:46:38.2267543Z 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:46:38.2273942Z 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:46:38.2279903Z 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:46:38.2285848Z 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:46:38.2292145Z 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:46:38.2298111Z 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:46:38.2304411Z 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:46:38.2310783Z 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:46:38.2316883Z 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:46:38.2322879Z 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:46:38.2328786Z 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:46:38.2334831Z 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:46:38.2340683Z 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:46:38.2346625Z 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:46:38.2353262Z 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:46:38.2359525Z 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:46:38.2365450Z 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:46:38.2371752Z 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:46:38.2378059Z 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:46:38.2383944Z 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:46:38.2390205Z 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:46:38.2396209Z 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:46:38.2403305Z 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:46:38.2409291Z 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:46:38.2415419Z 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:46:38.2421612Z 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:46:38.2427661Z 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:46:38.2434064Z 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:46:38.2440617Z 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:46:38.2447476Z 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:46:38.2453652Z 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:46:38.2459579Z 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:46:38.2465731Z 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:46:38.2472528Z 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:46:38.2478847Z 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:46:38.2485305Z 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:46:38.2491656Z 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:46:38.2497899Z 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:46:38.2504111Z 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:46:38.2510321Z 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:46:38.2516806Z 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:46:38.2523484Z 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:46:38.2529965Z 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:46:38.2536522Z 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:46:38.2542397Z 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:46:38.2548944Z 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:46:38.2555192Z 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:46:38.2561316Z 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:46:38.2567481Z 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:46:38.2573636Z 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:46:38.2579847Z 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:46:38.2586780Z 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:46:38.2593950Z 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:46:38.2600003Z 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:46:38.2606274Z 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:46:38.2612138Z 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:46:38.2618694Z 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:46:38.2624844Z 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:46:38.2630675Z 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:46:38.2636900Z 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:46:38.2643496Z 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:46:38.2649577Z 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:46:38.2656019Z 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:46:38.2662437Z 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:46:38.2668316Z 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:46:38.2674632Z 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:46:38.2680913Z 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:46:38.2686877Z 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:46:38.2693154Z 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:46:38.2699406Z 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:46:38.2705340Z 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:46:38.2711537Z 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:46:38.2717458Z 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:46:38.2723173Z 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:46:38.2729078Z 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:46:38.2735118Z 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:46:38.2740970Z 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:46:38.2746874Z 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:46:38.2753375Z 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:46:38.2759295Z 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:46:38.2765794Z 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:46:38.2771608Z 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:46:38.2777178Z 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:46:38.2783017Z 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:46:38.2788772Z 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:46:38.2794928Z 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:46:38.2800444Z 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:46:38.2806170Z 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:46:38.2812206Z 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:46:38.2848735Z 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:46:38.2854516Z 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:46:38.2860355Z 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:46:38.2866571Z 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:46:38.2872707Z 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:46:38.2878553Z 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:46:38.2884365Z 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:46:38.2890330Z 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:46:38.2896191Z 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:46:38.2901915Z 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:46:38.2907511Z 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:46:38.2913599Z 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:46:38.2920180Z 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:46:38.2925828Z 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:46:38.2932381Z 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:46:38.2938218Z 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:46:38.2944197Z 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:46:38.2950403Z 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:46:38.2956492Z 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:46:38.2962721Z 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:46:38.2969111Z 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:46:38.2974948Z 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:46:38.2980960Z 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:46:38.2986888Z 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:46:38.2993124Z 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:46:38.2999363Z 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:46:38.3005387Z 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:46:38.3011486Z 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:46:38.3017752Z 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:46:38.3023653Z 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:46:38.3029891Z 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:46:38.3035921Z 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:46:38.3042496Z 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:46:38.3048351Z 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:46:38.3055025Z 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:46:38.3060225Z 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:46:38.3066700Z 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:46:38.3072773Z 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:46:38.3078948Z 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:46:38.3084769Z 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:46:38.3090994Z 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:46:38.3096875Z 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:46:38.3103030Z 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:46:38.3108970Z 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:46:38.3115051Z 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:46:38.3121344Z 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:46:38.3132311Z 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:46:38.3138160Z 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:46:38.3144369Z 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:46:38.3150553Z 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:46:38.3156875Z 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:46:38.3162913Z 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:46:38.3169178Z 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:46:38.3175759Z 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:46:38.3181785Z 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:46:38.3187849Z 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:46:38.3194410Z 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:46:38.3201116Z 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:46:38.3207212Z 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:46:38.3212982Z 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:46:38.3218981Z 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:46:38.3225127Z 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:46:38.3231078Z 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:46:38.3237169Z 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:46:38.3277850Z 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:46:38.3283529Z 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:46:38.3289545Z 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:46:38.3295140Z 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:46:38.3300971Z 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:46:38.3306664Z 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:46:38.3312727Z 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:46:38.3318472Z 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:46:38.3324495Z 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:46:38.3330865Z 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:46:38.3336617Z 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:46:38.3342379Z 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:46:38.3348898Z 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:46:38.3354802Z 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:46:38.3360998Z 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:46:38.3366950Z 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:46:38.3372945Z 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:46:38.3379234Z 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:46:38.3385124Z 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:46:38.3391239Z 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:46:38.3397386Z 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:46:38.3403093Z 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:46:38.3409700Z 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:46:38.3416012Z 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:46:38.3421607Z 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:46:38.3427573Z 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:46:38.3433957Z 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:46:38.3439842Z 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:46:38.3445689Z 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:46:38.3452028Z 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:46:38.3458456Z 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:46:38.3464303Z 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:46:38.3470591Z 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:46:38.3477370Z 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:46:38.3482682Z 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:46:38.3488954Z 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:46:38.3495424Z 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:46:38.3501313Z 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:46:38.3507668Z 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:46:38.3513931Z 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:46:38.3520039Z 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:46:38.3526777Z 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:46:38.3532714Z 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:46:38.3541529Z 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:46:38.3547726Z 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:46:38.3554639Z 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:46:38.3560240Z 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:46:38.3566556Z 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:46:38.3572336Z 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:46:38.3577670Z 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:46:38.3584288Z 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:46:38.3591079Z 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:46:38.3597336Z 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:46:38.3603344Z 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:46:38.3610019Z 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:46:38.3633239Z 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:46:38.3639804Z 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:46:38.3645868Z 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:46:38.3651560Z 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:46:38.3657561Z 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:46:38.3663989Z 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:46:38.3671001Z 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:46:38.3677151Z 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:46:38.3683475Z 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:46:38.3689729Z 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:46:38.3696120Z 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:46:38.3702347Z 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:46:38.3708268Z 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:46:38.3714411Z 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:46:38.3720167Z 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:46:38.3726114Z 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:46:38.3733358Z 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:46:38.3738248Z 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:46:38.3744128Z 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:46:38.3750090Z 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:46:38.3757207Z 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:46:38.3762417Z 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:46:38.3767871Z 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:46:38.3773692Z 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:46:38.3780122Z 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:46:38.3786095Z 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:46:38.3792411Z 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:46:38.3798514Z 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:46:38.3804547Z 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:46:38.3810668Z 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:46:38.3816679Z 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:46:38.3823064Z 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:46:38.3829094Z 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:46:38.3836071Z 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:46:38.3842014Z 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:46:38.3847991Z 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:46:38.3853928Z 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:46:38.3859801Z 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:46:38.3865635Z 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:46:38.3871838Z 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:46:38.3878338Z 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:46:38.3883858Z 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:46:38.3896162Z 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:46:38.3898515Z 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:46:38.3903895Z 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:46:38.3909927Z 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:46:38.3915932Z 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:46:38.3922250Z 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:46:38.3927865Z 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:46:38.3935341Z 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:46:38.3941113Z 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:46:38.3946922Z 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:46:38.3953038Z 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:46:38.3958838Z 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:46:38.3964874Z 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:46:38.3971469Z 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:46:38.3977658Z 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:46:38.3992653Z 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:46:38.3999807Z 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:46:38.4006639Z 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:46:38.4012470Z 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:46:38.4018137Z 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:46:38.4024053Z 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:46:38.4029795Z 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:46:38.4036054Z 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:46:38.4043034Z 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:46:38.4049123Z 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:46:38.4055046Z 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:46:38.4060996Z 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:46:38.4066854Z 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:46:38.4073438Z 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:46:38.4079674Z 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:46:38.4086881Z 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:46:38.4093149Z 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:46:38.4100599Z 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:46:38.4112325Z 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:46:38.4118629Z 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:46:38.4125136Z 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:46:38.4131514Z 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:46:38.4137526Z 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:46:38.4143699Z 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:46:38.4156251Z 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:46:38.4161994Z 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:46:38.4168627Z 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:46:38.4174445Z 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:46:38.4181635Z 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:46:38.4188204Z 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:46:38.4194507Z 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:46:38.4200454Z 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:46:38.4206587Z 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:46:38.4212763Z 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:46:38.4220076Z 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:46:38.4226289Z 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:46:38.4232495Z 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:46:38.4238558Z 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:46:38.4245011Z 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:46:38.4251417Z 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:46:38.4257649Z 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:46:38.4263607Z 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:46:38.4270732Z 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:46:38.4277504Z 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:46:38.4284591Z 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:46:38.4292366Z 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:46:38.4299382Z 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:46:38.4306448Z 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:46:38.4313583Z 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:46:38.4320213Z 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:46:38.4327563Z 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:46:38.4334623Z 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:46:38.4340217Z 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:46:38.4346439Z 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:46:38.4353114Z 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:46:38.4359383Z 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:46:38.4365675Z 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:46:38.4371550Z 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:46:38.4377771Z 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:46:38.4384079Z 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:46:38.4390121Z 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:46:38.4396767Z 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:46:38.4402943Z 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:46:38.4409233Z 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:46:38.4415538Z 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:46:38.4421536Z 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:46:38.4427665Z 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:46:38.4435216Z 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:46:38.4441358Z 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:46:38.4447468Z 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:46:38.4454953Z 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:46:38.4460868Z 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:46:38.4468034Z 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:46:38.4474758Z 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:46:38.4484996Z 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:46:38.4491014Z 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:46:38.4497230Z 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:46:38.4504607Z 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:46:38.4511290Z 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:46:38.4517492Z 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:46:38.5202207Z 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:46:38.5208652Z 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:46:38.5216060Z 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:46:38.5222721Z 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:46:38.5229925Z 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:46:38.5241095Z 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:46:38.5247587Z 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:46:38.5255490Z 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:46:38.5261773Z 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:46:38.5267304Z 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:46:38.5274545Z 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:46:38.5281323Z 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:46:38.5289340Z 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:46:38.5294535Z 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:46:38.5301094Z 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:46:38.5307186Z 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:46:38.5314855Z 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:46:38.5321821Z 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:46:38.5327913Z 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:46:38.5334225Z 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:46:38.5340642Z 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:46:38.5347565Z 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:46:38.5353407Z 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:46:38.5359490Z 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:46:38.5366518Z 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:46:38.5373297Z 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:46:38.5379854Z 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:46:38.5385999Z 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:46:38.5392944Z 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:46:38.5399474Z 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:46:38.5406519Z 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:46:38.5413000Z 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:46:38.5419138Z 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:46:38.5425304Z 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:46:38.5431879Z 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:46:38.5438209Z 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:46:38.5444520Z 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:46:38.5451814Z 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:46:38.5482409Z 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:46:38.5488633Z 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:46:38.5495595Z 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:46:38.5501847Z 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:46:38.5508939Z 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:46:38.5515785Z 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:46:38.5527682Z 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:46:38.5534091Z 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:46:38.5540867Z 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:46:38.5547280Z 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:46:38.5553630Z 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:46:38.5560051Z 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:46:38.5566760Z 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:46:38.5572919Z 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:46:38.5579114Z 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:46:38.5586623Z 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:46:38.5592929Z 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:46:38.5599030Z 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:46:38.5605435Z 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:46:38.5612166Z 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:46:38.5618321Z 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:46:38.5625263Z 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:46:38.5631967Z 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:46:38.5638068Z 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:46:38.5644402Z 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:46:38.5651142Z 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:46:38.5657687Z 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:46:38.5663965Z 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:46:38.5670734Z 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:46:38.5677127Z 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:46:38.5684043Z 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:46:38.5690157Z 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:46:38.5696174Z 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:46:38.5702225Z 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:46:38.5708609Z 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:46:38.5715031Z 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:46:38.5721178Z 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:46:38.5729339Z 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:46:38.5734906Z 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:46:38.5741178Z 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:46:38.5747658Z 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:46:38.5753800Z 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:46:38.5760595Z 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:46:38.5766725Z 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:46:38.5773305Z 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:46:38.5779320Z 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:46:38.5785373Z 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:46:38.5791579Z 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:46:38.5798030Z 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:46:38.5804191Z 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:46:38.5826858Z 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:46:38.5827317Z 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:46:38.5830752Z 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:46:38.5838023Z 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:46:38.5844844Z 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:46:38.5851227Z 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:46:38.5858037Z 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:46:38.5864537Z 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:46:38.5870874Z 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:46:38.5877100Z 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:46:38.5883910Z 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:46:38.5890144Z 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:46:38.5896983Z 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:46:38.5903075Z 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:46:38.5909535Z 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:46:38.5915938Z 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:46:38.5922697Z 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:46:38.5929122Z 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:46:38.5935627Z 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:46:38.5941848Z 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:46:38.5948877Z 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:46:38.5955587Z 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:46:38.5961528Z 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:46:38.5967851Z 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:46:38.5975206Z 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:46:38.5981517Z 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:46:38.5987738Z 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:46:38.5994282Z 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:46:38.6001086Z 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:46:38.6008660Z 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:46:38.6014726Z 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:46:38.6021111Z 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:46:38.6027307Z 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:46:38.6033718Z 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:46:38.6040145Z 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:46:38.6046249Z 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:46:38.6053542Z 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:46:38.6062368Z 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:46:38.6068841Z 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:46:38.6075526Z 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:46:38.6081742Z 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:46:38.6088251Z 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:46:38.6094821Z 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:46:38.6102508Z 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:46:38.6108452Z 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:46:38.6114957Z 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:46:38.6121075Z 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:46:38.6127300Z 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:46:38.6133755Z 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:46:38.6142843Z 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:46:38.6153655Z 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:46:38.6161248Z 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:46:38.6167589Z 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:46:38.6175313Z 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:46:38.6180865Z 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:46:38.6187036Z 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:46:38.6193389Z 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:46:38.6202060Z 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:46:38.6206080Z 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:46:38.6212723Z 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:46:38.6218990Z 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:46:38.6226149Z 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:46:38.6265961Z 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:46:38.6271996Z 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:46:38.6278598Z 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:46:38.6293986Z 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:46:38.6300147Z 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:46:38.6306798Z 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:46:38.6369601Z 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:46:38.6375802Z 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:46:38.6382200Z 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:46:38.6388256Z 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:46:38.6394621Z 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:46:38.6400923Z 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:46:38.6407589Z 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:46:38.6414695Z 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:46:38.6420546Z 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:46:38.6426861Z 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:46:38.6433304Z 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:46:38.6439723Z 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:46:38.6445834Z 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:46:38.6452229Z 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:46:38.6458376Z 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:46:38.6464302Z 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:46:38.6470897Z 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:46:38.6477006Z 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:46:38.6483248Z 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:46:38.6489456Z 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:46:38.6500160Z 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:46:38.6501154Z 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:46:38.6507401Z 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:46:38.6513446Z 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:46:38.6519526Z 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:46:38.6525612Z 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:46:38.6531680Z 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:46:38.6539199Z 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:46:38.6545704Z 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:46:38.6551931Z 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:46:38.6558206Z 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:46:38.6564114Z 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:46:38.6571399Z 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:46:38.6577469Z 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:46:38.6583415Z 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:46:38.6589864Z 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:46:38.6596593Z 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:46:38.6603290Z 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:46:38.6609421Z 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:46:38.6615574Z 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:46:38.6621472Z 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:46:38.6628633Z 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:46:38.6635184Z 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:46:38.6641446Z 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:46:38.6647630Z 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:46:38.6653808Z 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:46:38.6659873Z 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:46:38.6666415Z 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:46:38.6672393Z 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:46:38.6703032Z 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:46:38.6709391Z 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:46:38.6715750Z 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:46:38.6722116Z 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:46:38.6728238Z 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:46:38.6734683Z 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:46:38.6740850Z 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:46:38.6746976Z 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:46:38.6753145Z 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:46:38.6759304Z 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:46:38.6765774Z 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:46:38.6771925Z 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:46:38.6778274Z 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:46:38.6784520Z 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:46:38.6790749Z 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:46:38.6797143Z 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:46:38.6803256Z 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:46:38.6809500Z 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:46:38.6815234Z 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:46:38.6821096Z 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:46:38.6826840Z 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:46:38.6833086Z 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:46:38.6839362Z 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:46:38.6845354Z 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:46:38.6851649Z 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:46:38.6857665Z 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:46:38.6863637Z 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:46:38.6869855Z 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:46:38.6876236Z 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:46:38.6882274Z 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:46:38.6888453Z 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:46:38.6894807Z 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:46:38.6900927Z 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:46:38.6907125Z 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:46:38.6913610Z 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:46:38.6925000Z 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:46:38.6931142Z 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:46:38.6937666Z 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:46:38.6944101Z 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:46:38.6950397Z 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:46:38.6963507Z 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:46:38.6970327Z 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:46:38.6976218Z 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:46:38.6982443Z 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:46:38.6989130Z 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:46:38.6995601Z 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:46:38.7002138Z 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:46:38.7009059Z 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:46:38.7015802Z 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:46:38.7022214Z 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:46:38.7028265Z 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:46:38.7067057Z 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:46:38.7074029Z 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:46:38.7080376Z 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:46:38.7086525Z 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:46:38.7093096Z 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:46:38.7099003Z 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:46:38.7105184Z 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:46:38.7111374Z 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:46:38.7117500Z 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:46:38.7123675Z 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:46:38.7130043Z 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:46:38.7136019Z 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:46:38.7142111Z 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:46:38.7148186Z 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:46:38.7154796Z 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:46:38.7160684Z 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:46:38.7167076Z 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:46:38.7173520Z 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:46:38.7179897Z 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:46:38.7186001Z 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:46:38.7192884Z 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:46:38.7198840Z 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:46:38.7204661Z 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:46:38.7210804Z 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:46:38.7216753Z 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:46:38.7222355Z 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:46:38.7228189Z 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:46:38.7234231Z 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:46:38.7240525Z 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:46:38.7246910Z 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:46:38.7252821Z 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:46:38.7259850Z 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:46:38.7265695Z 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:46:38.7272428Z 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:46:38.7278900Z 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:46:38.7285047Z 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:46:38.7291487Z 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:46:38.7298202Z 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:46:38.7304822Z 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:46:38.7312417Z 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:46:38.7319843Z 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:46:38.7326187Z 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:46:38.7332302Z 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:46:38.7338426Z 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:46:38.7344690Z 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:46:38.7351299Z 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:46:38.7357403Z 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:46:38.7363535Z 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:46:38.7369717Z 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:46:38.7375793Z 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:46:38.7381999Z 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:46:38.7388202Z 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:46:38.7394654Z 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:46:38.7400779Z 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:46:38.7406905Z 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:46:38.7412848Z 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:46:38.7418761Z 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:46:38.7424822Z 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:46:38.7430924Z 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:46:38.7437089Z 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:46:38.7443077Z 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:46:38.7449182Z 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:46:38.7455074Z 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:46:38.7461247Z 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:46:38.7467103Z 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:46:38.7473346Z 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:46:38.7479615Z 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:46:38.7485868Z 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:46:38.7492037Z 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:46:38.7497985Z 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:46:38.7504043Z 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:46:38.7510326Z 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:46:38.7516207Z 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:46:38.7521867Z 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:46:38.7528121Z 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:46:38.7534379Z 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:46:38.7540376Z 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:46:38.7546578Z 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:46:38.7552730Z 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:46:38.7559001Z 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:46:38.7564835Z 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:46:38.7570700Z 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:46:38.7576772Z 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:46:38.7583025Z 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:46:38.7589330Z 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:46:38.7595339Z 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:46:38.7601800Z 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:46:38.7607840Z 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:46:38.7613880Z 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:46:38.7620208Z 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:46:38.7626641Z 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:46:38.7633619Z 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:46:38.7640232Z 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:46:38.7647168Z 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:46:38.7653274Z 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:46:38.7659070Z 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:46:38.7665536Z 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:46:38.7671772Z 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:46:38.7678129Z 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:46:38.7684274Z 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:46:38.7691153Z 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:46:38.7697558Z 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:46:38.7703899Z 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:46:38.7723418Z 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:46:38.7724435Z 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:46:38.7725493Z 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:46:38.7731177Z 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:46:38.7765539Z 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:46:38.7771824Z 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:46:38.7779551Z 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:46:38.7785857Z 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:46:38.7792141Z 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:46:38.7798727Z 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:46:38.7805033Z 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:46:38.7811300Z 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:46:38.7817276Z 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:46:38.7823408Z 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:46:38.7830220Z 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:46:38.7836479Z 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:46:38.7842508Z 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:46:38.7848712Z 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:46:38.7854909Z 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:46:38.7861157Z 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:46:38.7867669Z 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:46:38.7873860Z 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:46:38.7879627Z 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:46:38.7886009Z 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:46:38.7892006Z 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:46:38.7898010Z 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:46:38.7904364Z 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:46:38.7910748Z 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:46:38.7917677Z 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:46:38.7923949Z 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:46:38.7930077Z 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:46:38.7936452Z 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:46:38.7942445Z 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:46:38.7948264Z 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:46:38.7954836Z 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:46:38.7960892Z 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:46:38.7966779Z 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:46:38.7972924Z 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:46:38.7978804Z 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:46:38.7984962Z 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:46:38.7990969Z 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:46:38.7997482Z 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:46:38.8003975Z 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:46:38.8010766Z 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:46:38.8017357Z 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:46:38.8023995Z 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:46:38.8030046Z 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:46:38.8036848Z 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:46:38.8043473Z 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:46:38.8049895Z 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:46:38.8056072Z 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:46:38.8062150Z 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:46:38.8068335Z 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:46:38.8074620Z 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:46:38.8081874Z 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:46:38.8087706Z 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:46:38.8093939Z 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:46:38.8099930Z 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:46:38.8105950Z 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:46:38.8111881Z 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:46:38.8117983Z 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:46:38.8123966Z 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:46:38.8129877Z 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:46:38.8136339Z 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:46:38.8142577Z 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:46:38.8149237Z 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:46:38.8155438Z 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:46:38.8162027Z 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:46:38.8168677Z 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:46:38.8175444Z 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:46:38.8181239Z 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:46:38.8203494Z 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:46:38.8204714Z 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:46:38.8205951Z 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:46:38.8208085Z 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:46:38.8215231Z 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:46:38.8221295Z 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:46:38.8227495Z 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:46:38.8233745Z 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:46:38.8240184Z 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:46:38.8246736Z 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:46:38.8252921Z 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:46:38.8259334Z 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:46:38.8266208Z 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:46:38.8272740Z 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:46:38.8278961Z 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:46:38.8285556Z 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:46:38.8297694Z 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:46:38.8304231Z 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:46:38.8310614Z 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:46:38.8317261Z 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:46:38.8323317Z 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:46:38.8329473Z 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:46:38.8335865Z 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:46:38.8342107Z 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:46:38.8348656Z 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:46:38.8355013Z 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:46:38.8361060Z 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:46:38.8367236Z 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:46:38.8373423Z 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:46:38.8380037Z 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:46:38.8386375Z 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:46:38.8400788Z 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:46:38.8408591Z 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:46:38.8414868Z 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:46:38.8421166Z 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:46:38.8427453Z 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:46:38.8433804Z 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:46:38.8439939Z 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:46:38.8446206Z 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:46:38.8452400Z 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:46:38.8458607Z 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:46:38.8464986Z 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:46:38.8472636Z 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:46:38.8478576Z 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:46:38.8484924Z 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:46:38.8491192Z 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:46:38.8497586Z 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:46:38.8503705Z 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:46:38.8510033Z 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:46:38.8516977Z 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:46:38.8523263Z 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:46:38.8529301Z 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:46:38.8536042Z 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:46:38.8542561Z 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:46:38.8548417Z 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:46:38.8554708Z 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:46:38.8560850Z 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:46:38.8567163Z 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:46:38.8573346Z 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:46:38.8579497Z 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:46:38.8585476Z 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:46:38.8591799Z 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:46:38.8597870Z 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:46:38.8603974Z 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:46:38.8610634Z 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:46:38.8616924Z 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:46:38.8622961Z 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:46:38.8629153Z 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:46:38.8635811Z 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:46:38.8641674Z 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:46:38.8648275Z 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:46:38.8654056Z 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:46:38.8660322Z 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:46:38.8665863Z 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:46:38.8672382Z 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:46:38.8678081Z 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:46:38.8684206Z 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:46:38.8690480Z 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:46:38.8697730Z 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:46:38.8709460Z 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:46:38.8710538Z 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:46:38.8716991Z 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:46:38.8753229Z 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:46:38.8759103Z 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:46:38.8765237Z 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:46:38.8771357Z 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:46:38.8777132Z 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:46:38.8783868Z 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:46:38.8789892Z 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:46:38.8795798Z 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:46:38.8801763Z 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:46:38.8808197Z 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:46:38.8814238Z 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:46:38.8820404Z 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:46:38.8826898Z 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:46:38.8833519Z 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:46:38.8839586Z 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:46:38.8845689Z 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:46:38.8851991Z 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:46:38.8858119Z 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:46:38.8864579Z 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:46:38.8870967Z 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:46:38.8877143Z 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:46:38.8883488Z 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:46:38.8889763Z 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:46:38.8895849Z 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:46:38.8902060Z 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:46:38.8955898Z 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:46:38.8962034Z 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:46:38.8968679Z 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:46:38.8974835Z 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:46:38.8980943Z 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:46:38.8987321Z 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:46:38.8994516Z 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:46:38.9008033Z 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:46:38.9014502Z 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:46:38.9020944Z 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:46:38.9027322Z 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:46:38.9034413Z 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:46:38.9040830Z 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:46:38.9047309Z 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:46:38.9054804Z 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:46:38.9060634Z 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:46:38.9066965Z 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:46:38.9073927Z 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:46:38.9080347Z 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:46:38.9086530Z 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:46:38.9093380Z 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:46:38.9100158Z 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:46:38.9107622Z 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:46:38.9113980Z 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:46:38.9120199Z 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:46:38.9126453Z 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:46:38.9132355Z 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:46:38.9138931Z 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:46:38.9145411Z 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:46:38.9151664Z 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:46:38.9157968Z 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:46:38.9164403Z 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:46:38.9172165Z 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:46:38.9177822Z 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:46:38.9183783Z 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:46:38.9190273Z 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:46:38.9205454Z 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:46:38.9206462Z 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:46:38.9209102Z 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:46:38.9214997Z 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:46:38.9221146Z 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:46:38.9227879Z 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:46:38.9233993Z 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:46:38.9240081Z 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:46:38.9246697Z 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:46:38.9252877Z 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:46:38.9259244Z 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:46:38.9265696Z 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:46:38.9271891Z 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:46:38.9277970Z 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:46:38.9284328Z 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:46:38.9290540Z 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:46:38.9297091Z 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:46:38.9303200Z 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:46:38.9309969Z 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:46:38.9316024Z 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:46:38.9322385Z 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:46:38.9328484Z 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:46:38.9334655Z 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:46:38.9340793Z 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:46:38.9352285Z 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:46:38.9358454Z 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:46:38.9364895Z 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:46:38.9371448Z 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:46:38.9377393Z 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:46:38.9383461Z 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:46:38.9389870Z 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:46:38.9396155Z 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:46:38.9403051Z 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:46:38.9409161Z 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:46:38.9415338Z 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:46:38.9421735Z 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:46:38.9427898Z 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:46:38.9434025Z 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:46:38.9440627Z 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:46:38.9446978Z 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:46:38.9453757Z 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:46:38.9460019Z 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:46:38.9466235Z 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:46:38.9472880Z 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:46:38.9479366Z 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:46:38.9485645Z 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:46:38.9491886Z 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:46:38.9498657Z 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:46:38.9505747Z 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:46:38.9511678Z 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:46:38.9517942Z 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:46:38.9524632Z 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:46:38.9531127Z 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:46:38.9537449Z 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:46:38.9543706Z 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:46:38.9550275Z 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:46:38.9557584Z 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:46:38.9564387Z 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:46:38.9570853Z 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:46:38.9577052Z 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:46:38.9583641Z 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:46:38.9590890Z 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:46:38.9598048Z 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:46:38.9604784Z 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:46:38.9610872Z 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:46:38.9617416Z 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:46:38.9623134Z 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:46:38.9629385Z 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:46:38.9635495Z 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:46:38.9641328Z 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:46:38.9647543Z 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:46:38.9653550Z 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:46:38.9659417Z 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:46:38.9666153Z 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:46:38.9671781Z 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:46:38.9677807Z 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:46:38.9684136Z 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:46:38.9690503Z 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:46:38.9696746Z 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:46:38.9702940Z 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:46:38.9709455Z 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:46:38.9715595Z 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:46:38.9721627Z 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:46:38.9733298Z 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:46:38.9736514Z 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:46:38.9742238Z 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:46:38.9748011Z 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:46:38.9754191Z 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:46:38.9761009Z 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:46:38.9766981Z 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:46:38.9773701Z 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:46:38.9780141Z 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:46:38.9787372Z 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:46:38.9793813Z 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:46:38.9800074Z 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:46:38.9806225Z 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:46:38.9812252Z 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:46:38.9818473Z 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:46:38.9824760Z 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:46:38.9830975Z 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:46:38.9837011Z 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:46:38.9852968Z 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:46:38.9859358Z 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:46:38.9865810Z 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:46:38.9872023Z 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:46:38.9878279Z 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:46:38.9884369Z 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:46:38.9890492Z 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:46:38.9896494Z 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:46:38.9902321Z 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:46:38.9908166Z 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:46:38.9914184Z 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:46:38.9920086Z 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:46:38.9925701Z 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:46:38.9931517Z 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:46:38.9937108Z 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:46:38.9942599Z 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:46:38.9948412Z 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:46:38.9956339Z 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:46:38.9962619Z 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:46:38.9968935Z 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:46:38.9975042Z 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:46:38.9981283Z 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:46:38.9987962Z 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:46:38.9994228Z 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:46:39.0000701Z 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:46:39.0041092Z 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:46:39.0047326Z 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:46:39.0053719Z 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:46:39.0060015Z 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:46:39.0066313Z 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:46:39.0072807Z 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:46:39.0080577Z 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:46:39.0085978Z 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:46:39.0092318Z 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:46:39.0098405Z 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:46:39.0104654Z 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:46:39.0111080Z 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:46:39.0117222Z 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:46:39.0123307Z 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:46:39.0129490Z 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:46:39.0135503Z 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:46:39.0142212Z 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:46:39.0148815Z 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:46:39.0155226Z 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:46:39.0162490Z 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:46:39.0168880Z 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:46:39.0174789Z 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:46:39.0181011Z 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:46:39.0187267Z 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:46:39.0193949Z 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:46:39.0200270Z 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:46:39.0206906Z 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:46:39.0213792Z 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:46:39.0219666Z 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:46:39.0225565Z 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:46:39.0232497Z 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:46:39.0265574Z 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:46:39.0271240Z 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:46:39.0278557Z 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:46:39.0287466Z 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:46:39.0293325Z 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:46:39.0299222Z 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:46:39.0305255Z 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:46:39.0311489Z 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:46:39.0322312Z 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:46:39.0331991Z 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:46:39.0338047Z 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:46:39.0347410Z 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:46:39.0353524Z 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:46:39.0359446Z 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:46:39.0365658Z 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:46:39.0372259Z 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:46:39.0378919Z 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:46:39.0385272Z 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:46:39.0391563Z 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:46:39.0397812Z 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:46:39.0403910Z 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:46:39.0410260Z 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:46:39.0417145Z 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:46:39.0423517Z 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:46:39.0429800Z 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:46:39.0435883Z 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:46:39.0442122Z 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:46:39.0448355Z 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:46:39.0454531Z 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:46:39.0461262Z 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:46:39.0467406Z 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:46:39.0474061Z 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:46:39.0480061Z 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:46:39.0486456Z 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:46:39.0492511Z 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:46:39.0498716Z 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:46:39.0505080Z 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:46:39.0511354Z 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:46:39.0546560Z 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:46:39.0557938Z 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:46:39.0564792Z 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:46:39.0570903Z 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:46:39.0576937Z 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:46:39.0583036Z 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:46:39.0589439Z 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:46:39.0595571Z 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:46:39.0601775Z 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:46:39.0608014Z 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:46:39.0614522Z 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:46:39.0620856Z 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:46:39.0626999Z 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:46:39.0633324Z 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:46:39.0639974Z 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:46:39.0646454Z 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:46:39.0652675Z 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:46:39.0658823Z 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:46:39.0665218Z 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:46:39.0671466Z 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:46:39.0678234Z 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:46:39.0684774Z 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:46:39.0691074Z 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:46:39.0697386Z 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:46:39.0703693Z 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:46:39.0710646Z 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:46:39.0717732Z 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:46:39.0724647Z 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:46:39.0731513Z 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:46:39.0738072Z 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:46:39.0744329Z 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:46:39.0750996Z 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:46:39.0757208Z 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:46:39.0763669Z 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:46:39.0769825Z 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:46:39.0776107Z 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:46:39.0782184Z 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:46:39.0788785Z 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:46:39.0795580Z 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:46:39.0801869Z 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:46:39.0808282Z 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:46:39.0814270Z 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:46:39.0821024Z 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:46:39.0827465Z 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:46:39.0834255Z 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:46:39.0841272Z 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:46:39.0848066Z 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:46:39.0854342Z 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:46:39.0861303Z 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:46:39.0868357Z 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:46:39.0874756Z 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:46:39.0881328Z 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:46:39.0887556Z 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:46:39.0893912Z 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:46:39.0900022Z 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:46:39.0906513Z 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:46:39.0912982Z 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:46:39.0920320Z 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:46:39.0926550Z 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:46:39.0932777Z 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:46:39.0939186Z 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:46:39.0945647Z 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:46:39.0951993Z 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:46:39.0958286Z 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:46:39.0975065Z 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:46:39.0975592Z 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:46:39.0976743Z 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:46:39.0982720Z 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:46:39.0988754Z 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:46:39.0994751Z 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:46:39.1005975Z 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:46:39.1011934Z 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:46:39.1018266Z 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:46:39.1024269Z 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:46:39.1030219Z 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:46:39.1036027Z 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:46:39.1041977Z 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:46:39.1047891Z 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:46:39.1054243Z 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:46:39.1060707Z 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:46:39.1066789Z 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:46:39.1073190Z 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:46:39.1080391Z 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:46:39.1086353Z 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:46:39.1092297Z 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:46:39.1098474Z 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:46:39.1105314Z 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:46:39.1111537Z 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:46:39.1117537Z 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:46:39.1123580Z 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:46:39.1129354Z 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:46:39.1158720Z 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:46:39.1165146Z 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:46:39.1171167Z 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:46:39.1177156Z 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:46:39.1184199Z 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:46:39.1190363Z 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:46:39.1196243Z 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:46:39.1202153Z 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:46:39.1208349Z 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:46:39.1215304Z 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:46:39.1221291Z 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:46:39.1227148Z 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:46:39.1234007Z 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:46:39.1283619Z 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:46:39.1284113Z 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:46:39.1284567Z 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:46:39.1285053Z 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:46:39.1285508Z 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:46:39.1285956Z 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:46:39.1287875Z 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:46:39.1293731Z 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:46:39.1299830Z 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:46:39.1305887Z 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:46:39.1313137Z 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:46:39.1320032Z 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:46:39.1326006Z 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:46:39.1331658Z 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:46:39.1337473Z 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:46:39.1343425Z 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:46:39.1349756Z 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:46:39.1355823Z 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:46:39.1361993Z 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:46:39.1368251Z 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:46:39.1374697Z 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:46:39.1380717Z 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:46:39.1391656Z 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:46:39.1397777Z 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:46:39.1403928Z 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:46:39.1410209Z 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:46:39.1416295Z 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:46:39.1422330Z 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:46:39.1428388Z 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:46:39.1439445Z 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:46:39.1445598Z 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:46:39.1451671Z 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:46:39.1457947Z 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:46:39.1464100Z 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:46:39.1470352Z 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:46:39.1476738Z 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:46:39.1482884Z 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:46:39.1488863Z 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:46:39.1495726Z 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:46:39.1501872Z 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:46:39.1508016Z 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:46:39.1514232Z 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:46:39.1521322Z 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:46:39.1527673Z 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:46:39.1534245Z 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:46:39.1540337Z 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:46:39.1546934Z 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:46:39.1553708Z 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:46:39.1559911Z 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:46:39.1566010Z 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:46:39.1572314Z 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:46:39.1583307Z 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:46:39.1589170Z 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:46:39.1595574Z 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:46:39.1601530Z 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:46:39.1607968Z 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:46:39.1614545Z 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:46:39.1620821Z 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:46:39.1626637Z 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:46:39.1632920Z 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:46:39.1639169Z 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:46:39.1645482Z 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:46:39.1651866Z 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:46:39.1657990Z 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:46:39.1664579Z 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:46:39.1671033Z 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:46:39.1676688Z 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:46:39.1682863Z 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:46:39.1689826Z 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:46:39.1695942Z 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:46:39.1702296Z 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:46:39.1708544Z 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:46:39.1714608Z 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:46:39.1721267Z 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:46:39.1727457Z 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:46:39.1734072Z 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:46:39.1744409Z 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:46:39.1747996Z 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:46:39.1754814Z 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:46:39.1761168Z 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:46:39.1767210Z 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:46:39.1773367Z 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:46:39.1779488Z 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:46:39.1785528Z 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:46:39.1791709Z 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:46:39.1797876Z 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:46:39.1803719Z 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:46:39.1810061Z 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:46:39.1815929Z 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:46:39.1822160Z 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:46:39.1828170Z 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:46:39.1834502Z 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:46:39.1840546Z 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:46:39.1846586Z 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:46:39.1852664Z 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:46:39.1858394Z 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:46:39.1864488Z 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:46:39.1870255Z 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:46:39.1876136Z 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:46:39.1882105Z 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:46:39.1887961Z 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:46:39.1894998Z 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:46:39.1901125Z 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:46:39.1907387Z 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:46:39.1913603Z 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:46:39.1919303Z 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:46:39.1924934Z 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:46:39.1930711Z 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:46:39.1942260Z 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:46:39.1947826Z 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:46:39.1953821Z 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:46:39.1959473Z 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:46:39.1965636Z 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:46:39.1971576Z 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:46:39.1977478Z 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:46:39.1983870Z 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:46:39.1989648Z 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:46:39.1995608Z 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:46:39.2001497Z 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:46:39.2007583Z 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:46:39.2013973Z 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:46:39.2019809Z 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:46:39.2031173Z 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:46:39.2036835Z 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:46:39.2042817Z 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:46:39.2049160Z 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:46:39.2054784Z 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:46:39.2060646Z 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:46:39.2066757Z 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:46:39.2072820Z 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:46:39.2078404Z 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:46:39.2084214Z 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:46:39.2090129Z 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:46:39.2096574Z 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:46:39.2102205Z 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:46:39.2108006Z 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:46:39.2114685Z 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:46:39.2120563Z 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:46:39.2126745Z 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:46:39.2132659Z 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:46:39.2143825Z 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:46:39.2149945Z 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:46:39.2155758Z 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:46:39.2163130Z 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:46:39.2168926Z 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:46:39.2175413Z 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:46:39.2180997Z 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:46:39.2187510Z 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:46:39.2198663Z 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:46:39.2205220Z 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:46:39.2211791Z 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:46:39.2248606Z 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:46:39.2254467Z 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:46:39.2260643Z 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:46:39.2294582Z 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:46:39.2300618Z 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:46:39.2306601Z 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:46:39.2312439Z 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:46:39.2318398Z 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:46:39.2324037Z 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:46:39.2330176Z 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:46:39.2336297Z 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:46:39.2342198Z 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:46:39.2348055Z 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:46:39.2354137Z 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:46:39.2360641Z 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:46:39.2367152Z 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:46:39.2372947Z 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:46:39.2378897Z 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:46:39.2385240Z 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:46:39.2391491Z 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:46:39.2398303Z 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:46:39.2404624Z 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:46:39.2410819Z 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:46:39.2416880Z 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:46:39.2422885Z 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:46:39.2428967Z 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:46:39.2435030Z 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:46:39.2441146Z 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:46:39.2447180Z 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:46:39.2453172Z 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:46:39.2459196Z 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:46:39.2465545Z 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:46:39.2471794Z 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:46:39.2477999Z 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:46:39.2484230Z 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:46:39.2490119Z 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:46:39.2496032Z 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:46:39.2506600Z 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:46:39.2512864Z 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:46:39.2518757Z 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:46:39.2524895Z 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:46:39.2531583Z 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:46:39.2538485Z 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:46:39.2549461Z 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:46:39.2556295Z 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:46:39.2562776Z 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:46:39.2568843Z 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:46:39.2575487Z 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:46:39.2583095Z 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:46:39.2589856Z 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:46:39.2596229Z 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:46:39.2602224Z 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:46:39.2608198Z 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:46:39.2614128Z 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:46:39.2620240Z 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:46:39.2627238Z 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:46:39.2633676Z 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:46:39.2640039Z 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:46:39.2646046Z 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:46:39.2651907Z 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:46:39.2657782Z 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:46:39.2669994Z 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:46:39.2676529Z 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:46:39.2682448Z 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:46:39.2688781Z 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:46:39.2694537Z 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:46:39.2700687Z 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:46:39.2706702Z 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:46:39.2713129Z 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:46:39.2738598Z 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:46:39.2744730Z 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:46:39.2751249Z 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:46:39.2757434Z 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:46:39.2763521Z 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:46:39.2769522Z 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:46:39.2775297Z 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:46:39.2780990Z 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:46:39.2787211Z 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:46:39.2793277Z 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:46:39.2799287Z 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:46:39.2805381Z 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:46:39.2811315Z 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:46:39.2817401Z 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:46:39.2823171Z 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:46:39.2829269Z 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:46:39.2835049Z 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:46:39.2840989Z 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:46:39.2846823Z 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:46:39.2852711Z 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:46:39.2858420Z 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:46:39.2864322Z 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:46:39.2870063Z 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:46:39.2875819Z 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:46:39.2881551Z 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:46:39.2887500Z 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:46:39.2896465Z 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:46:39.2902425Z 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:46:39.2907855Z 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:46:39.2914768Z 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:46:39.2921142Z 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:46:39.2927013Z 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:46:39.2933077Z 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:46:39.2939266Z 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:46:39.2945692Z 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:46:39.2951782Z 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:46:39.2957705Z 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:46:39.2963669Z 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:46:39.2969907Z 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:46:39.2976355Z 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:46:39.2982406Z 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:46:39.2988522Z 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:46:39.2995032Z 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:46:39.3001010Z 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:46:39.3007169Z 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:46:39.3013102Z 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:46:39.3019740Z 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:46:39.3025746Z 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:46:39.3031968Z 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:46:39.3038027Z 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:46:39.3044383Z 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:46:39.3050696Z 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:46:39.3056903Z 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:46:39.3063472Z 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:46:39.3069837Z 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:46:39.3075958Z 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:46:39.3088266Z 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:46:39.3095033Z 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:46:39.3102775Z 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:46:39.3108984Z 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:46:39.3115145Z 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:46:39.3121249Z 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:46:39.3127849Z 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:46:39.3133922Z 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:46:39.3140472Z 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:46:39.3146887Z 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:46:39.3152837Z 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:46:39.3158820Z 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:46:39.3165142Z 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:46:39.3171677Z 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:46:39.3177826Z 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:46:39.3184173Z 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:46:39.3190871Z 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:46:39.3197170Z 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:46:39.3203657Z 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:46:39.3211300Z 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:46:39.3220907Z 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:46:39.3223759Z 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:46:39.3230272Z 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:46:39.3237003Z 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:46:39.3243044Z 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:46:39.3249433Z 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:46:39.3256008Z 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:46:39.3262599Z 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:46:39.3269021Z 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:46:39.3275480Z 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:46:39.3281766Z 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:46:39.3288558Z 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:46:39.3294738Z 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:46:39.3301418Z 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:46:39.3307448Z 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:46:39.3313558Z 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:46:39.3321104Z 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:46:39.3329651Z 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:46:39.3338356Z 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:46:39.3347459Z 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:46:39.3355429Z 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:46:39.3363972Z 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:46:39.3369726Z 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:46:39.3375867Z 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:46:39.3381713Z 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:46:39.3387912Z 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:46:39.3394654Z 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:46:39.3400525Z 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:46:39.3406887Z 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:46:39.3413049Z 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:46:39.3419156Z 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:46:39.3425351Z 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:46:39.3431367Z 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:46:39.3437257Z 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:46:39.3443634Z 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:46:39.3449592Z 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:46:39.3460072Z 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:46:39.3466245Z 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:46:39.3472750Z 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:46:39.3478855Z 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:46:39.3484708Z 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:46:39.3490703Z 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:46:39.3496967Z 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:46:39.3502982Z 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:46:39.3509158Z 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:46:39.3514981Z 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:46:39.3521336Z 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:46:39.3527369Z 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:46:39.3533314Z 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:46:39.3539543Z 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:46:39.3545484Z 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:46:39.3551564Z 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:46:39.3557572Z 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:46:39.3563625Z 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:46:39.3569668Z 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:46:39.3575772Z 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:46:39.3582308Z 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:46:39.3588513Z 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:46:39.3594555Z 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:46:39.3600623Z 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:46:39.3606481Z 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:46:39.3612480Z 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:46:39.3618711Z 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:46:39.3624787Z 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:46:39.3630602Z 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:46:39.3637006Z 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:46:39.3642946Z 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:46:39.3649646Z 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:46:39.3655794Z 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:46:39.3661855Z 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:46:39.3667996Z 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:46:39.3674249Z 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:46:39.3679987Z 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:46:39.3686088Z 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:46:39.3691927Z 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:46:39.3698286Z 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:46:39.3703973Z 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:46:39.3709808Z 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:46:39.3716087Z 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:46:39.3722641Z 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:46:39.3729114Z 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:46:39.3735717Z 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:46:39.3742147Z 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:46:39.3748799Z 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:46:39.3755743Z 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:46:39.3762040Z 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:46:39.3768983Z 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:46:39.3775356Z 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:46:39.3780069Z 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:46:39.3787684Z 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:46:39.3792621Z 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:46:39.3798920Z 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:46:39.3805194Z 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:46:39.3811105Z 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:46:39.3816662Z 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:46:39.3822628Z 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:46:39.3828954Z 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:46:39.3835610Z 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:46:39.3841573Z 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:46:39.3849516Z 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:46:39.3856234Z 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:46:39.3862369Z 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:46:39.3868693Z 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:46:39.3874787Z 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:46:39.3881327Z 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:46:39.3887287Z 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:46:39.3893373Z 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:46:39.3899646Z 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:46:39.3914502Z 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:46:39.3920533Z 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:46:39.3927581Z 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:46:39.5391777Z 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:46:39.5398088Z 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:46:39.5404646Z 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:46:39.5411341Z 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:46:39.5417808Z 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:46:39.5423976Z 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:46:39.5430207Z 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:46:39.5436417Z 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:46:39.5442576Z 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:46:39.5448893Z 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:46:39.5455077Z 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:46:39.5461472Z 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:46:39.5468286Z 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:46:39.5474662Z 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:46:39.5481163Z 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:46:39.5487789Z 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:46:39.5494373Z 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:46:39.5501131Z 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:46:39.5507454Z 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:46:39.5514360Z 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:46:39.5520502Z 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:46:39.5528081Z 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:46:39.5534152Z 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:46:39.5540433Z 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:46:39.5546699Z 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:46:39.5552945Z 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:46:39.5559070Z 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:46:39.5564839Z 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:46:39.5571045Z 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:46:39.5577353Z 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:46:39.5583226Z 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:46:39.5617990Z 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:46:39.5624530Z 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:46:39.5630967Z 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:46:39.5637118Z 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:46:39.5643922Z 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:46:39.5650367Z 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:46:39.5656226Z 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:46:39.5662843Z 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:46:39.5668971Z 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:46:39.5675367Z 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:46:39.5681614Z 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:46:39.5687749Z 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:46:39.5694104Z 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:46:39.5700352Z 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:46:39.5706768Z 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:46:39.5713025Z 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:46:39.5718966Z 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:46:39.5724892Z 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:46:39.5730917Z 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:46:39.5737363Z 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:46:39.5743908Z 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:46:39.5750310Z 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:46:39.5756510Z 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:46:39.5762557Z 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:46:39.5768822Z 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:46:39.5774826Z 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:46:39.5780923Z 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:46:39.5786950Z 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:46:39.5793911Z 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:46:39.5799311Z 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:46:39.5805684Z 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:46:39.5812021Z 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:46:39.5818023Z 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:46:39.5825154Z 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:46:39.5830882Z 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:46:39.5837041Z 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:46:39.5843133Z 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:46:39.5849177Z 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:46:39.5855978Z 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:46:39.5861809Z 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:46:39.5868452Z 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:46:39.5874936Z 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:46:39.5881412Z 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:46:39.5887690Z 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:46:39.5893894Z 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:46:39.5900095Z 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:46:39.5906519Z 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:46:39.5913198Z 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:46:39.5919304Z 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:46:39.5925584Z 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:46:39.5931661Z 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:46:39.5938030Z 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:46:39.5944462Z 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:46:39.5950691Z 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:46:39.5956851Z 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:46:39.5963285Z 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:46:39.5969554Z 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:46:39.5975866Z 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:46:39.5982010Z 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:46:39.5988445Z 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:46:39.5995126Z 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:46:39.6001029Z 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:46:39.6007301Z 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:46:39.6013440Z 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:46:39.6019920Z 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:46:39.6026198Z 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:46:39.6032474Z 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:46:39.6039156Z 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:46:39.6045490Z 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:46:39.6067586Z 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:46:39.6074186Z 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:46:39.6080712Z 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:46:39.6087095Z 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:46:39.6098480Z 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:46:39.6105053Z 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:46:39.6111515Z 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:46:39.6117750Z 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:46:39.6124451Z 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:46:39.6130976Z 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:46:39.6137319Z 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:46:39.6143518Z 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:46:39.6149999Z 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:46:39.6156888Z 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:46:39.6162476Z 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:46:39.6168660Z 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:46:39.6174490Z 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:46:39.6180776Z 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:46:39.6187025Z 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:46:39.6193345Z 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:46:39.6199616Z 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:46:39.6206468Z 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:46:39.6213406Z 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:46:39.6219611Z 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:46:39.6225536Z 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:46:39.6232033Z 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:46:39.6255327Z 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:46:39.6256457Z 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:46:39.6257633Z 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:46:39.6259099Z 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:46:39.6265322Z 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:46:39.6272205Z 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:46:39.6278404Z 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:46:39.6284668Z 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:46:39.6291200Z 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:46:39.6297664Z 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:46:39.6303775Z 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:46:39.6310387Z 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:46:39.6316475Z 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:46:39.6322494Z 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:46:39.6328464Z 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:46:39.6334575Z 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:46:39.6340818Z 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:46:39.6347151Z 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:46:39.6353072Z 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:46:39.6359112Z 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:46:39.6366161Z 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:46:39.6372147Z 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:46:39.6378656Z 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:46:39.6384752Z 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:46:39.6391338Z 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:46:39.6397181Z 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:46:39.6403144Z 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:46:39.6409135Z 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:46:39.6425875Z 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:46:39.6426500Z 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:46:39.6426968Z 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:46:39.6433465Z 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:46:39.6439543Z 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:46:39.6445539Z 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:46:39.6451503Z 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:46:39.6457505Z 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:46:39.6463438Z 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:46:39.6469369Z 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:46:39.6475538Z 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:46:39.6481543Z 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:46:39.6487256Z 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:46:39.6493476Z 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:46:39.6499471Z 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:46:39.6505764Z 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:46:39.6512485Z 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:46:39.6518388Z 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:46:39.6524609Z 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:46:39.6535178Z 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:46:39.6540966Z 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:46:39.6547776Z 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:46:39.6553789Z 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:46:39.6559958Z 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:46:39.6566275Z 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:46:39.6572501Z 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:46:39.6578647Z 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:46:39.6589461Z 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:46:39.6595499Z 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:46:39.6601500Z 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:46:39.6607748Z 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:46:39.6614037Z 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:46:39.6619802Z 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:46:39.6626620Z 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:46:39.6634875Z 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:46:39.6641387Z 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:46:39.6647358Z 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:46:39.6653362Z 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:46:39.6659553Z 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:46:39.6665324Z 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:46:39.6671630Z 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:46:39.6677976Z 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:46:39.6684243Z 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:46:39.6690602Z 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:46:39.6698120Z 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:46:39.6704454Z 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:46:39.6710219Z 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:46:39.6716367Z 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:46:39.6722822Z 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:46:39.6729469Z 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:46:39.6735533Z 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:46:39.6742113Z 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:46:39.6772307Z 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:46:39.6773352Z 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:46:39.6774503Z 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:46:39.6775644Z 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:46:39.6776872Z 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:46:39.6782489Z 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:46:39.6788874Z 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:46:39.6795007Z 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:46:39.6801049Z 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:46:39.6808412Z 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:46:39.6813159Z 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:46:39.6819515Z 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:46:39.6826170Z 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:46:39.6832391Z 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:46:39.6838372Z 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:46:39.6849522Z 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:46:39.6855973Z 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:46:39.6863304Z 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:46:39.6869311Z 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:46:39.6875527Z 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:46:39.6881611Z 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:46:39.6887756Z 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:46:39.6893867Z 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:46:39.6900028Z 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:46:39.6906034Z 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:46:39.6912434Z 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:46:39.6918228Z 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:46:39.6924221Z 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:46:39.6930424Z 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:46:39.6936479Z 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:46:39.6942303Z 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:46:39.6953650Z 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:46:39.6959622Z 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:46:39.6965458Z 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:46:39.6971452Z 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:46:39.6977420Z 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:46:39.6983463Z 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:46:39.6989440Z 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:46:39.6995920Z 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:46:39.7006976Z 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:46:39.7012970Z 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:46:39.7019296Z 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:46:39.7024722Z 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:46:39.7030896Z 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:46:39.7037089Z 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:46:39.7042722Z 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:46:39.7048765Z 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:46:39.7060673Z 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:46:39.7067032Z 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:46:39.7073869Z 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:46:39.7107537Z 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:46:39.7113763Z 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:46:39.7120089Z 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:46:39.7126500Z 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:46:39.7132589Z 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:46:39.7138896Z 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:46:39.7145120Z 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:46:39.7167691Z 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:46:39.7174009Z 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:46:39.7180651Z 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:46:39.7187325Z 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:46:39.7194259Z 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:46:39.7200038Z 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:46:39.7206431Z 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:46:39.7212417Z 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:46:39.7218681Z 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:46:39.7225121Z 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:46:39.7231432Z 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:46:39.7237772Z 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:46:39.7244951Z 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:46:39.7251470Z 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:46:39.7257999Z 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:46:39.7264280Z 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:46:39.7270585Z 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:46:39.7276646Z 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:46:39.7282823Z 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:46:39.7289015Z 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:46:39.7295107Z 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:46:39.7301223Z 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:46:39.7307272Z 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:46:39.7314254Z 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:46:39.7320656Z 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:46:39.7326967Z 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:46:39.7332805Z 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:46:39.7338816Z 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:46:39.7344957Z 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:46:39.7351082Z 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:46:39.7357086Z 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:46:39.7363026Z 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:46:39.7369546Z 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:46:39.7375573Z 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:46:39.7381820Z 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:46:39.7387445Z 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:46:39.7393808Z 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:46:39.7401088Z 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:46:39.7408046Z 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:46:39.7420099Z 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:46:39.7431727Z 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:46:39.7438095Z 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:46:39.7444397Z 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:46:39.7450787Z 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:46:39.7456741Z 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:46:39.7462731Z 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:46:39.7469367Z 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:46:39.7475643Z 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:46:39.7481786Z 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:46:39.7487860Z 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:46:39.7494004Z 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:46:39.7499973Z 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:46:39.7505810Z 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:46:39.7512280Z 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:46:39.7518343Z 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:46:39.7524995Z 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:46:39.7530884Z 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:46:39.7537068Z 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:46:39.7543548Z 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:46:39.7549201Z 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:46:39.7555038Z 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:46:39.7560996Z 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:46:39.7566935Z 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:46:39.7573053Z 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:46:39.7579177Z 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:46:39.7585354Z 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:46:39.7591357Z 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:46:39.7597463Z 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:46:39.7614986Z 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:46:39.7620724Z 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:46:39.7626742Z 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:46:39.7632820Z 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:46:39.7638804Z 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:46:39.7644766Z 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:46:39.7650815Z 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:46:39.7656583Z 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:46:39.7663148Z 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:46:39.7669103Z 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:46:39.7675139Z 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:46:39.7681137Z 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:46:39.7687781Z 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:46:39.7693924Z 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:46:39.7699988Z 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:46:39.7706541Z 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:46:39.7712934Z 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:46:39.7720037Z 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:46:39.7725917Z 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:46:39.7732199Z 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:46:39.7738462Z 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:46:39.7744859Z 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:46:39.7751365Z 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:46:39.7757027Z 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:46:39.7763648Z 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:46:39.7770379Z 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:46:39.7776812Z 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:46:39.7782807Z 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:46:39.7789097Z 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:46:39.7794496Z 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:46:39.7800393Z 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:46:39.7806651Z 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:46:39.7812281Z 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:46:39.7818351Z 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:46:39.7824203Z 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:46:39.7830151Z 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:46:39.7836172Z 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:46:39.7841855Z 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:46:39.7847505Z 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:46:39.7853199Z 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:46:39.7859397Z 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:46:39.7865531Z 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:46:39.7871702Z 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:46:39.7877760Z 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:46:39.7883700Z 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:46:39.7889859Z 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:46:39.7895852Z 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:46:39.7901998Z 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:46:39.7908528Z 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:46:39.7914415Z 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:46:39.7920280Z 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:46:39.7926198Z 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:46:39.7931731Z 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:46:39.7937539Z 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:46:39.7943488Z 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:46:39.7949120Z 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:46:39.7954730Z 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:46:39.7961071Z 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:46:39.7967263Z 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:46:39.7973088Z 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:46:39.7979032Z 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:46:39.7984675Z 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:46:39.7990501Z 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:46:39.7996400Z 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:46:39.8001979Z 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:46:39.8008241Z 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:46:39.8014376Z 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:46:39.8020352Z 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:46:39.8026407Z 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:46:39.8032383Z 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:46:39.8038344Z 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:46:39.8044258Z 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:46:39.8050350Z 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:46:39.8058032Z 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:46:39.8063878Z 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:46:39.8070032Z 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:46:39.8075659Z 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:46:39.8081709Z 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:46:39.8088213Z 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:46:39.8093894Z 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:46:39.8099971Z 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:46:39.8107153Z 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:46:39.8112570Z 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:46:39.8118730Z 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:46:39.8124449Z 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:46:39.8130849Z 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:46:39.8137173Z 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:46:39.8143352Z 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:46:39.8149794Z 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:46:39.8156379Z 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:46:39.8163763Z 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:46:39.8169935Z 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:46:39.8176128Z 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:46:39.8182184Z 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:46:39.8189095Z 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:46:39.8195608Z 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:46:39.8201749Z 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:46:39.8208179Z 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:46:39.8214206Z 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:46:39.8220305Z 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:46:39.8245714Z 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:46:39.8252980Z 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:46:39.8259832Z 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:46:39.8266776Z 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:46:39.8272797Z 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:46:39.8278827Z 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:46:39.8285347Z 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:46:39.8290942Z 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:46:39.8296919Z 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:46:39.8303064Z 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:46:39.8309678Z 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:46:39.8315686Z 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:46:39.8321745Z 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:46:39.8328628Z 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:46:39.8333866Z 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:46:39.8339777Z 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:46:39.8346318Z 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:46:39.8352576Z 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:46:39.8358872Z 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:46:39.8365048Z 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:46:39.8371119Z 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:46:39.8377504Z 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:46:39.8383764Z 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:46:39.8389863Z 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:46:39.8397358Z 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:46:39.8403803Z 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:46:39.8409921Z 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:46:39.8416277Z 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:46:39.8422212Z 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:46:39.8428512Z 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:46:39.8435502Z 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:46:39.8441608Z 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:46:39.8447710Z 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:46:39.8453964Z 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:46:39.8460588Z 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:46:39.8466906Z 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:46:39.8473071Z 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:46:39.8479163Z 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:46:39.8485369Z 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:46:39.8491619Z 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:46:39.8497665Z 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:46:39.8504156Z 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:46:39.8511620Z 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:46:39.8516873Z 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:46:39.8523568Z 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:46:39.8529267Z 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:46:39.8535045Z 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:46:39.8541427Z 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:46:39.8547714Z 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:46:39.8554657Z 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:46:39.8560950Z 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:46:39.8567263Z 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:46:39.8573439Z 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:46:39.8579979Z 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:46:39.8587566Z 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:46:39.8593882Z 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:46:39.8600014Z 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:46:39.8606220Z 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:46:39.8613428Z 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:46:39.8618746Z 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:46:39.8624809Z 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:46:39.8631213Z 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:46:39.8637537Z 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:46:39.8643466Z 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:46:39.8649454Z 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:46:39.8655525Z 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:46:39.8661549Z 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:46:39.8668037Z 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:46:39.8674321Z 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:46:39.8680451Z 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:46:39.8686502Z 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:46:39.8692808Z 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:46:39.8699865Z 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:46:39.8705318Z 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:46:39.8712447Z 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:46:39.8718647Z 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:46:39.8725711Z 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:46:39.8732270Z 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:46:39.8738542Z 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:46:39.8744642Z 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:46:39.8751235Z 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:46:39.8786109Z 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:46:39.8792529Z 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:46:39.8799737Z 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:46:39.8804957Z 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:46:39.8811135Z 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:46:39.8817381Z 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:46:39.8823899Z 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:46:39.8830202Z 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:46:39.8836257Z 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:46:39.8842746Z 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:46:39.8853661Z 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:46:39.8859780Z 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:46:39.8865655Z 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:46:39.8872444Z 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:46:39.8878421Z 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:46:39.8884311Z 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:46:39.8890302Z 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:46:39.8896441Z 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:46:39.8902896Z 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:46:39.8909463Z 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:46:39.8915733Z 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:46:39.8922176Z 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:46:39.8928144Z 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:46:39.8934829Z 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:46:39.8941262Z 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:46:39.8947781Z 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:46:39.8954228Z 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:46:39.8960359Z 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:46:39.8967905Z 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:46:39.8974370Z 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:46:39.8980793Z 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:46:39.8987044Z 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:46:39.8993295Z 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:46:39.8999334Z 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:46:39.9005487Z 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:46:39.9011775Z 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:46:39.9017781Z 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:46:39.9024066Z 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:46:39.9030497Z 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:46:39.9037047Z 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:46:39.9043521Z 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:46:39.9049892Z 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:46:39.9056604Z 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:46:39.9063865Z 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:46:39.9070151Z 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:46:39.9076544Z 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:46:39.9082885Z 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:46:39.9089635Z 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:46:39.9096080Z 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:46:39.9103225Z 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:46:39.9109503Z 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:46:39.9115760Z 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:46:39.9122513Z 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:46:39.9129146Z 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:46:39.9139246Z 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:46:39.9145442Z 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:46:39.9152270Z 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:46:39.9158518Z 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:46:39.9168981Z 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:46:39.9175360Z 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:46:39.9181501Z 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:46:39.9187734Z 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:46:39.9193925Z 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:46:39.9200029Z 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:46:39.9231614Z 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:46:39.9236958Z 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:46:39.9242929Z 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:46:39.9249478Z 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:46:39.9255517Z 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:46:39.9262263Z 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:46:39.9268245Z 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:46:39.9274377Z 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:46:39.9280663Z 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:46:39.9287098Z 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:46:39.9293219Z 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:46:39.9299311Z 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:46:39.9305270Z 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:46:39.9311586Z 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:46:39.9317769Z 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:46:39.9323979Z 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:46:39.9330018Z 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:46:39.9336354Z 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:46:39.9342233Z 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:46:39.9351960Z 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:46:39.9354964Z 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:46:39.9361792Z 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:46:39.9368522Z 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:46:39.9375022Z 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:46:39.9381355Z 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:46:39.9388973Z 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:46:39.9395230Z 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:46:39.9401529Z 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:46:39.9443062Z 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:46:39.9449135Z 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:46:39.9456213Z 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:46:39.9462140Z 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:46:39.9468110Z 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:46:39.9474989Z 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:46:39.9481474Z 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:46:39.9487606Z 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:46:39.9493813Z 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:46:39.9500153Z 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:46:39.9506804Z 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:46:39.9513048Z 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:46:39.9519094Z 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:46:39.9526039Z 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:46:39.9531872Z 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:46:39.9538371Z 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:46:39.9544363Z 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:46:39.9550761Z 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:46:39.9556936Z 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:46:39.9567912Z 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:46:39.9578982Z 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:46:39.9585376Z 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:46:39.9591553Z 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:46:39.9598179Z 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:46:39.9604254Z 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:46:39.9610559Z 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:46:39.9617041Z 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:46:39.9623638Z 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:46:39.9629704Z 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:46:39.9636448Z 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:46:39.9642541Z 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:46:39.9649173Z 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:46:39.9655067Z 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:46:39.9661090Z 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:46:39.9667419Z 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:46:39.9673708Z 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:46:39.9680455Z 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:46:39.9686457Z 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:46:39.9697185Z 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:46:39.9703817Z 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:46:39.9710926Z 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:46:39.9718167Z 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:46:39.9724335Z 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:46:39.9730412Z 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:46:39.9736939Z 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:46:39.9743111Z 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:46:39.9749842Z 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:46:39.9756734Z 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:46:39.9763394Z 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:46:39.9814005Z 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:46:39.9815288Z 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:46:39.9816510Z 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:46:39.9817715Z 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:46:39.9819772Z 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:46:39.9820971Z 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:46:39.9822116Z 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:46:39.9823503Z 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:46:39.9826928Z 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:46:39.9833629Z 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:46:39.9839957Z 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:46:39.9846027Z 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:46:39.9852703Z 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:46:39.9858846Z 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:46:39.9865118Z 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:46:39.9871377Z 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:46:39.9877775Z 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:46:39.9883736Z 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:46:39.9890018Z 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:46:39.9895921Z 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:46:39.9902679Z 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:46:39.9908879Z 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:46:39.9914997Z 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:46:39.9920866Z 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:46:39.9927246Z 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:46:39.9933313Z 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:46:39.9939320Z 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:46:39.9945356Z 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:46:39.9951429Z 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:46:39.9957828Z 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:46:39.9964252Z 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:46:39.9970196Z 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:46:39.9976582Z 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:46:39.9982562Z 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:46:39.9988900Z 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:46:39.9994958Z 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:46:40.0001620Z 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:46:40.0007815Z 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:46:40.0013894Z 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:46:40.0019847Z 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:46:40.0025655Z 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:46:40.0031915Z 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:46:40.0037879Z 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:46:40.0043594Z 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:46:40.0049686Z 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:46:40.0055946Z 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:46:40.0061774Z 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:46:40.0067515Z 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:46:40.0074019Z 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:46:40.0080059Z 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:46:40.0085878Z 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:46:40.0091797Z 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:46:40.0098060Z 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:46:40.0104132Z 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:46:40.0109934Z 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:46:40.0116254Z 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:46:40.0122503Z 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:46:40.0128272Z 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:46:40.0134079Z 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:46:40.0140326Z 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:46:40.0146173Z 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:46:40.0152875Z 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:46:40.0159144Z 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:46:40.0164865Z 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:46:40.0171481Z 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:46:40.0177513Z 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:46:40.0183589Z 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:46:40.0189724Z 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:46:40.0196035Z 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:46:40.0201935Z 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:46:40.0208412Z 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:46:40.0214380Z 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:46:40.0220575Z 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:46:40.0235531Z 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:46:40.0241828Z 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:46:40.0248055Z 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:46:40.0254276Z 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:46:40.0260925Z 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:46:40.0267168Z 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:46:40.0274476Z 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:46:40.0280941Z 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:46:40.0287852Z 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:46:40.0294134Z 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:46:40.0321880Z 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:46:40.0322611Z 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:46:40.0323158Z 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:46:40.0323716Z 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:46:40.0326171Z 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:46:40.0333043Z 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:46:40.0339082Z 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:46:40.0345144Z 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:46:40.0351748Z 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:46:40.0357794Z 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:46:40.0364056Z 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:46:40.0370891Z 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:46:40.0377257Z 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:46:40.0412847Z 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:46:40.0418930Z 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:46:40.0425525Z 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:46:40.0432275Z 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:46:40.0438945Z 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:46:40.0444938Z 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:46:40.0451497Z 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:46:40.0459785Z 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:46:40.0465530Z 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:46:40.0472234Z 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:46:40.0479228Z 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:46:40.0486078Z 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:46:40.0492248Z 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:46:40.0498816Z 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:46:40.0506020Z 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:46:40.0512497Z 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:46:40.0518808Z 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:46:40.0525109Z 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:46:40.0531724Z 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:46:40.0538082Z 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:46:40.0580511Z 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:46:40.0586877Z 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:46:40.0593884Z 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:46:40.0600392Z 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:46:40.0607217Z 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:46:40.0614646Z 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:46:40.0620791Z 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:46:40.0627170Z 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:46:40.0633834Z 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:46:40.0640402Z 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:46:40.0648363Z 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:46:40.0655515Z 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:46:40.0661981Z 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:46:40.0669023Z 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:46:40.0675474Z 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:46:40.0682025Z 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:46:40.0689475Z 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:46:40.0695929Z 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:46:40.0702309Z 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:46:40.0708649Z 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:46:40.0715633Z 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:46:40.0722278Z 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:46:40.0729024Z 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:46:40.0735332Z 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:46:40.0741999Z 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:46:40.0748586Z 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:46:40.0754970Z 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:46:40.0761502Z 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:46:40.0769352Z 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:46:40.0775546Z 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:46:40.0781782Z 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:46:40.0788581Z 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:46:40.0795410Z 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:46:40.0801746Z 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:46:40.0808677Z 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:46:40.0815303Z 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:46:40.0821877Z 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:46:40.0827647Z 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:46:40.0833998Z 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:46:40.0840255Z 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:46:40.0846876Z 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:46:40.0921489Z 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:46:40.0927579Z 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:46:40.1006382Z 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:46:40.1013219Z 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:46:40.1019399Z 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:46:40.1025785Z 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:46:40.1032790Z 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:46:40.1039132Z 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:46:40.1045491Z 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:46:40.1053723Z 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:46:40.1059977Z 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:46:40.1066818Z 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:46:40.1078353Z 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:46:40.1084934Z 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:46:40.1091446Z 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:46:40.1099315Z 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:46:40.1106181Z 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:46:40.1138223Z 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:46:40.1144516Z 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:46:40.1152310Z 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:46:40.1158106Z 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:46:40.1164769Z 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:46:40.1186252Z 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:46:40.1194012Z 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:46:40.1201232Z 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:46:40.1207712Z 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:46:40.1214923Z 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:46:40.1223094Z 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:46:40.1229687Z 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:46:40.1236447Z 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:46:40.1243395Z 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:46:40.1250024Z 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:46:40.1256616Z 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:46:40.1263425Z 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:46:40.1270123Z 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:46:40.1277655Z 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:46:40.1284989Z 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:46:40.1291350Z 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:46:40.1298304Z 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:46:40.1304211Z 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:46:40.1311051Z 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:46:40.1317543Z 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:46:40.1323660Z 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:46:40.1329838Z 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:46:40.1336365Z 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:46:40.1342482Z 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:46:40.1348788Z 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:46:40.1355476Z 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:46:40.1361688Z 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:46:40.1367554Z 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:46:40.1373809Z 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:46:40.1380377Z 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:46:40.1386313Z 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:46:40.1392563Z 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:46:40.1398750Z 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:46:40.1405200Z 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:46:40.1411189Z 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:46:40.1417056Z 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:46:40.1423137Z 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:46:40.1429544Z 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:46:40.1435555Z 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:46:40.1442046Z 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:46:40.1448154Z 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:46:40.1454845Z 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:46:40.1461046Z 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:46:40.1467450Z 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:46:40.1474044Z 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:46:40.1480355Z 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:46:40.1486628Z 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:46:40.1492842Z 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:46:40.1499131Z 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:46:40.1506039Z 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:46:40.1512452Z 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:46:40.1518733Z 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:46:40.1524806Z 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:46:40.1531237Z 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:46:40.1537788Z 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:46:40.1544204Z 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:46:40.1550572Z 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:46:40.1558052Z 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:46:40.1564636Z 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:46:40.1571249Z 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:46:40.1578237Z 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:46:40.1584102Z 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:46:40.1591113Z 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:46:40.1597649Z 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:46:40.1604058Z 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:46:40.1610506Z 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:46:40.1617589Z 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:46:40.1624144Z 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:46:40.1630990Z 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:46:40.1637667Z 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:46:40.1645526Z 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:46:40.1651455Z 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:46:40.1657695Z 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:46:40.1664421Z 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:46:40.1671078Z 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:46:40.1678305Z 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:46:40.1685122Z 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:46:40.1691964Z 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:46:40.1698301Z 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:46:40.1704623Z 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:46:40.1711739Z 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:46:40.1718236Z 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:46:40.1724979Z 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:46:40.1731497Z 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:46:40.1791395Z 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:46:40.1793042Z 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:46:40.1794470Z 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:46:40.1795866Z 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:46:40.1799643Z 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:46:40.1806271Z 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:46:40.1813485Z 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:46:40.1820183Z 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:46:40.1826564Z 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:46:40.1833328Z 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:46:40.1839424Z 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:46:40.1845597Z 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:46:40.1851833Z 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:46:40.1858295Z 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:46:40.1864860Z 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:46:40.1871044Z 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:46:40.1877535Z 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:46:40.1884420Z 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:46:40.1890408Z 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:46:40.1896893Z 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:46:40.1907919Z 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:46:40.1914425Z 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:46:40.1921344Z 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:46:40.1927685Z 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:46:40.1934015Z 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:46:40.1940959Z 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:46:40.1947276Z 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:46:40.1953648Z 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:46:40.1959946Z 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:46:40.1966273Z 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:46:40.1972603Z 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:46:40.1978935Z 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:46:40.1985115Z 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:46:40.1991559Z 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:46:40.1998154Z 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:46:40.2004626Z 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:46:40.2010784Z 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:46:40.2016985Z 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:46:40.2023576Z 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:46:40.2030503Z 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:46:40.2037270Z 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:46:40.2043659Z 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:46:40.2049871Z 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:46:40.2056360Z 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:46:40.2062562Z 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:46:40.2069359Z 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:46:40.2075462Z 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:46:40.2081488Z 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:46:40.2087710Z 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:46:40.2093583Z 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:46:40.2100018Z 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:46:40.2106266Z 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:46:40.2112471Z 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:46:40.2118504Z 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:46:40.2124618Z 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:46:40.2130591Z 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:46:40.2137629Z 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:46:40.2144361Z 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:46:40.2150723Z 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:46:40.2157553Z 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:46:40.2163999Z 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:46:40.2170126Z 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:46:40.2176309Z 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:46:40.2182594Z 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:46:40.2188990Z 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:46:40.2195292Z 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:46:40.2201352Z 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:46:40.2207403Z 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:46:40.2213250Z 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:46:40.2219334Z 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:46:40.2225385Z 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:46:40.2231598Z 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:46:40.2237612Z 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:46:40.2243676Z 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:46:40.2249447Z 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:46:40.2255568Z 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:46:40.2261837Z 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:46:40.2268198Z 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:46:40.2274719Z 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:46:40.2281096Z 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:46:40.2287898Z 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:46:40.2294296Z 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:46:40.2301243Z 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:46:40.2307717Z 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:46:40.2314198Z 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:46:40.2320701Z 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:46:40.2326944Z 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:46:40.2332998Z 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:46:40.2339041Z 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:46:40.2345168Z 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:46:40.2351585Z 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:46:40.2357629Z 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:46:40.2365062Z 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:46:40.2370183Z 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:46:40.2376233Z 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:46:40.2382152Z 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:46:40.2387942Z 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:46:40.2393859Z 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:46:40.2399857Z 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:46:40.2405901Z 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:46:40.2411711Z 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:46:40.2417854Z 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:46:40.2423941Z 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:46:40.2430139Z 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:46:40.2436092Z 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:46:40.2442794Z 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:46:40.2449181Z 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:46:40.2455359Z 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:46:40.2462528Z 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:46:40.2505115Z 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:46:40.2511392Z 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:46:40.2517119Z 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:46:40.2523127Z 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:46:40.2529339Z 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:46:40.2535505Z 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:46:40.2541325Z 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:46:40.2547405Z 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:46:40.2553706Z 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:46:40.2559767Z 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:46:40.2565838Z 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:46:40.2571608Z 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:46:40.2577747Z 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:46:40.2583787Z 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:46:40.2590077Z 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:46:40.2596628Z 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:46:40.2603051Z 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:46:40.2609089Z 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:46:40.2615353Z 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:46:40.2621285Z 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:46:40.2627407Z 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:46:40.2634116Z 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:46:40.2641271Z 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:46:40.2646686Z 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:46:40.2652760Z 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:46:40.2659195Z 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:46:40.2665327Z 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:46:40.2671464Z 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:46:40.2677592Z 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:46:40.2683658Z 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:46:40.2689800Z 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:46:40.2695873Z 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:46:40.2701861Z 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:46:40.2707778Z 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:46:40.2714461Z 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:46:40.2720570Z 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:46:40.2726583Z 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:46:40.2732640Z 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:46:40.2738731Z 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:46:40.2744866Z 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:46:40.2751000Z 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:46:40.2757019Z 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:46:40.2763080Z 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:46:40.2769110Z 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:46:40.2776083Z 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:46:40.2782470Z 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:46:40.2788687Z 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:46:40.2794994Z 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:46:40.2801163Z 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:46:40.2807280Z 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:46:40.2813628Z 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:46:40.2819487Z 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:46:40.2826045Z 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:46:40.2832710Z 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:46:40.2838819Z 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:46:40.2844917Z 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:46:40.2851005Z 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:46:40.2857068Z 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:46:40.2863474Z 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:46:40.2869678Z 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:46:40.2876094Z 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:46:40.2887595Z 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:46:40.2893281Z 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:46:40.2899160Z 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:46:40.2904896Z 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:46:40.2911139Z 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:46:40.2917626Z 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:46:40.2923770Z 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:46:40.2930230Z 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:46:40.2936303Z 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:46:40.2942615Z 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:46:40.2948735Z 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:46:40.2954642Z 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:46:40.2960768Z 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:46:40.2966098Z 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:46:40.2971599Z 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:46:40.2977796Z 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:46:40.2983731Z 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:46:40.2989707Z 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:46:40.2995643Z 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:46:40.3001424Z 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:46:40.3007914Z 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:46:40.3013842Z 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:46:40.3019965Z 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:46:40.3025742Z 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:46:40.3031726Z 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:46:40.3038079Z 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:46:40.3044009Z 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:46:40.3050076Z 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:46:40.3056447Z 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:46:40.3062444Z 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:46:40.3068456Z 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:46:40.3075900Z 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:46:40.3082675Z 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:46:40.3088589Z 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:46:40.3094677Z 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:46:40.3101172Z 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:46:40.3106835Z 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:46:40.3113187Z 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:46:40.3119373Z 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:46:40.3125697Z 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:46:40.3131674Z 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:46:40.3137872Z 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:46:40.3143780Z 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:46:40.3149739Z 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:46:40.3155812Z 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:46:40.3161812Z 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:46:40.3167961Z 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:46:40.3173830Z 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:46:40.3180272Z 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:46:40.3186713Z 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:46:40.3194191Z 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:46:40.3200070Z 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:46:40.3206535Z 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:46:40.3212571Z 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:46:40.3218597Z 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:46:40.3224745Z 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:46:40.3231324Z 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:46:40.3237231Z 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:46:40.3243646Z 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:46:40.3249963Z 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:46:40.3292214Z 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:46:40.3293519Z 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:46:40.3298411Z 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:46:40.3304628Z 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:46:40.3310814Z 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:46:40.3317168Z 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:46:40.3323616Z 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:46:40.3329935Z 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:46:40.3336633Z 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:46:40.3342563Z 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:46:40.3348534Z 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:46:40.3367195Z 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:46:40.3373185Z 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:46:40.3379465Z 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:46:40.3385406Z 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:46:40.3391538Z 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:46:40.3397414Z 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:46:40.5261619Z 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:46:40.5266924Z 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:46:40.5273280Z 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:46:40.5278451Z 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:46:40.5284587Z 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:46:40.5290820Z 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:46:40.5297052Z 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:46:40.5317209Z 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:46:40.5318224Z 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:46:40.5319233Z 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:46:40.5324779Z 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:46:40.5331733Z 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:46:40.5338154Z 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:46:40.5344068Z 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:46:40.5351087Z 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:46:40.5356958Z 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:46:40.5363091Z 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:46:40.5369864Z 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:46:40.5377287Z 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:46:40.5383426Z 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:46:40.5389804Z 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:46:40.5396025Z 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:46:40.5402480Z 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:46:40.5408461Z 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:46:40.5414622Z 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:46:40.5421210Z 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:46:40.5427199Z 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:46:40.5434812Z 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:46:40.5440931Z 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:46:40.5447180Z 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:46:40.5452981Z 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:46:40.5458637Z 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:46:40.5464919Z 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:46:40.5471129Z 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:46:40.5477239Z 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:46:40.5483135Z 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:46:40.5488865Z 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:46:40.5494795Z 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:46:40.5500634Z 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:46:40.5506548Z 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:46:40.5512631Z 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:46:40.5518905Z 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:46:40.5524881Z 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:46:40.5530952Z 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:46:40.5537336Z 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:46:40.5543258Z 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:46:40.5549661Z 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:46:40.5555562Z 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:46:40.5561401Z 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:46:40.5567732Z 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:46:40.5573932Z 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:46:40.5579973Z 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:46:40.5585681Z 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:46:40.5592716Z 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:46:40.5598405Z 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:46:40.5604744Z 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:46:40.5611580Z 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:46:40.5617931Z 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:46:40.5624054Z 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:46:40.5631192Z 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:46:40.5637615Z 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:46:40.5644396Z 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:46:40.5650381Z 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:46:40.5656456Z 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:46:40.5662805Z 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:46:40.5668972Z 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:46:40.5675386Z 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:46:40.5681695Z 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:46:40.5688112Z 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:46:40.5694865Z 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:46:40.5702788Z 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:46:40.5709369Z 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:46:40.5715505Z 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:46:40.5721849Z 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:46:40.5728634Z 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:46:40.5734628Z 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:46:40.5741239Z 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:46:40.5747156Z 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:46:40.5753491Z 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:46:40.5760961Z 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:46:40.5766972Z 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:46:40.5773233Z 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:46:40.5779522Z 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:46:40.5785627Z 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:46:40.5808720Z 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:46:40.5810051Z 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:46:40.5811263Z 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:46:40.5813275Z 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:46:40.5821072Z 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:46:40.5826497Z 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:46:40.5833622Z 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:46:40.5838978Z 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:46:40.5845329Z 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:46:40.5851424Z 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:46:40.5857143Z 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:46:40.5863245Z 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:46:40.5869850Z 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:46:40.5875921Z 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:46:40.5881932Z 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:46:40.5888659Z 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:46:40.5895244Z 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:46:40.5900936Z 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:46:40.5906877Z 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:46:40.5913354Z 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:46:40.5919250Z 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:46:40.5925073Z 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:46:40.5931382Z 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:46:40.5937598Z 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:46:40.5944041Z 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:46:40.5950721Z 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:46:40.5964432Z 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:46:40.5970044Z 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:46:40.5976183Z 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:46:40.5981678Z 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:46:40.5988246Z 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:46:40.5994642Z 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:46:40.6000599Z 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:46:40.6041172Z 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:46:40.6047351Z 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:46:40.6053822Z 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:46:40.6059858Z 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:46:40.6065915Z 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:46:40.6072046Z 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:46:40.6077728Z 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:46:40.6084262Z 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:46:40.6090226Z 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:46:40.6096322Z 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:46:40.6102788Z 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:46:40.6109105Z 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:46:40.6115125Z 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:46:40.6121447Z 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:46:40.6127566Z 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:46:40.6133527Z 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:46:40.6139490Z 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:46:40.6145765Z 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:46:40.6152318Z 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:46:40.6157966Z 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:46:40.6164174Z 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:46:40.6169854Z 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:46:40.6176162Z 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:46:40.6182468Z 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:46:40.6188827Z 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:46:40.6195342Z 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:46:40.6201298Z 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:46:40.6207163Z 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:46:40.6213400Z 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:46:40.6219015Z 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:46:40.6224676Z 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:46:40.6231088Z 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:46:40.6237425Z 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:46:40.6244864Z 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:46:40.6252310Z 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:46:40.6258852Z 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:46:40.6264785Z 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:46:40.6271880Z 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:46:40.6278696Z 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:46:40.6285365Z 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:46:40.6291695Z 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:46:40.6298726Z 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:46:40.6305149Z 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:46:40.6312228Z 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:46:40.6318866Z 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:46:40.6325617Z 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:46:40.6331904Z 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:46:40.6337891Z 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:46:40.6344138Z 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:46:40.6349896Z 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:46:40.6356704Z 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:46:40.6363222Z 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:46:40.6370230Z 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:46:40.6375609Z 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:46:40.6382116Z 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:46:40.6388135Z 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:46:40.6394789Z 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:46:40.6423678Z 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:46:40.6429845Z 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:46:40.6436058Z 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:46:40.6442455Z 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:46:40.6448625Z 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:46:40.6454818Z 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:46:40.6461154Z 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:46:40.6467069Z 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:46:40.6473673Z 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:46:40.6479714Z 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:46:40.6485676Z 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:46:40.6491625Z 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:46:40.6497784Z 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:46:40.6504095Z 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:46:40.6510288Z 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:46:40.6516646Z 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:46:40.6523016Z 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:46:40.6529155Z 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:46:40.6535381Z 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:46:40.6541484Z 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:46:40.6547653Z 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:46:40.6553684Z 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:46:40.6560601Z 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:46:40.6566668Z 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:46:40.6573096Z 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:46:40.6579359Z 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:46:40.6585463Z 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:46:40.6598256Z 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:46:40.6599411Z 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:46:40.6605117Z 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:46:40.6611123Z 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:46:40.6617536Z 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:46:40.6624144Z 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:46:40.6631938Z 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:46:40.6638306Z 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:46:40.6645153Z 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:46:40.6650480Z 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:46:40.6657120Z 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:46:40.6663620Z 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:46:40.6669562Z 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:46:40.6676243Z 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:46:40.6682295Z 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:46:40.6689779Z 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:46:40.6696136Z 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:46:40.6702631Z 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:46:40.6710255Z 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:46:40.6716534Z 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:46:40.6722297Z 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:46:40.6729079Z 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:46:40.6735484Z 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:46:40.6741574Z 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:46:40.6747943Z 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:46:40.6754437Z 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:46:40.6760750Z 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:46:40.6767359Z 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:46:40.6774099Z 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:46:40.6781167Z 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:46:40.6787314Z 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:46:40.6793688Z 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:46:40.6821879Z 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:46:40.6823104Z 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:46:40.6824312Z 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:46:40.6825474Z 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:46:40.6829432Z 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:46:40.6836132Z 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:46:40.6842964Z 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:46:40.6849009Z 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:46:40.6855516Z 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:46:40.6861753Z 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:46:40.6868052Z 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:46:40.6874562Z 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:46:40.6885297Z 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:46:40.6896025Z 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:46:40.6902999Z 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:46:40.6909233Z 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:46:40.6915762Z 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:46:40.6922010Z 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:46:40.6928861Z 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:46:40.6935186Z 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:46:40.6941374Z 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:46:40.6947918Z 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:46:40.6955276Z 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:46:40.6960841Z 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:46:40.6966942Z 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:46:40.6973244Z 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:46:40.6979609Z 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:46:40.6985884Z 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:46:40.6992128Z 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:46:40.6998246Z 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:46:40.7005177Z 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:46:40.7011957Z 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:46:40.7018979Z 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:46:40.7025391Z 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:46:40.7031850Z 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:46:40.7038804Z 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:46:40.7045130Z 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:46:40.7051417Z 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:46:40.7058126Z 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:46:40.7064728Z 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:46:40.7074624Z 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:46:40.7080655Z 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:46:40.7087429Z 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:46:40.7093922Z 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:46:40.7100300Z 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:46:40.7106699Z 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:46:40.7113645Z 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:46:40.7121042Z 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:46:40.7126960Z 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:46:40.7133897Z 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:46:40.7145164Z 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:46:40.7150999Z 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:46:40.7157661Z 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:46:40.7164528Z 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:46:40.7170933Z 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:46:40.7178334Z 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:46:40.7185873Z 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:46:40.7191990Z 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:46:40.7198640Z 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:46:40.7205262Z 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:46:40.7211511Z 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:46:40.7217839Z 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:46:40.7224352Z 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:46:40.7231914Z 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:46:40.7238608Z 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:46:40.7245099Z 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:46:40.7251834Z 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:46:40.7258039Z 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:46:40.7264529Z 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:46:40.7271223Z 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:46:40.7277886Z 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:46:40.7284298Z 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:46:40.7290945Z 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:46:40.7298022Z 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:46:40.7304272Z 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:46:40.7311817Z 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:46:40.7318454Z 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:46:40.7325317Z 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:46:40.7331836Z 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:46:40.7339062Z 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:46:40.7345633Z 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:46:40.7352780Z 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:46:40.7359405Z 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:46:40.7366045Z 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:46:40.7373108Z 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:46:40.7379599Z 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:46:40.7386200Z 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:46:40.7392874Z 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:46:40.7399245Z 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:46:40.7406313Z 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:46:40.7412455Z 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:46:40.7419698Z 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:46:40.7426415Z 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:46:40.7432883Z 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:46:40.7438754Z 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:46:40.7483135Z 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:46:40.7489339Z 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:46:40.7495878Z 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:46:40.7502578Z 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:46:40.7508712Z 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:46:40.7515719Z 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:46:40.7522772Z 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:46:40.7535971Z 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:46:40.7542459Z 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:46:40.7549056Z 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:46:40.7555840Z 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:46:40.7562467Z 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:46:40.7568736Z 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:46:40.7575688Z 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:46:40.7582159Z 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:46:40.7588734Z 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:46:40.7595143Z 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:46:40.7601694Z 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:46:40.7608044Z 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:46:40.7614686Z 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:46:40.7621698Z 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:46:40.7627613Z 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:46:40.7633692Z 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:46:40.7639680Z 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:46:40.7646063Z 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:46:40.7652229Z 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:46:40.7658450Z 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:46:40.7664327Z 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:46:40.7670998Z 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:46:40.7677292Z 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:46:40.7683575Z 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:46:40.7690182Z 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:46:40.7696374Z 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:46:40.7702722Z 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:46:40.7708775Z 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:46:40.7714907Z 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:46:40.7721317Z 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:46:40.7727342Z 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:46:40.7733688Z 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:46:40.7741140Z 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:46:40.7746918Z 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:46:40.7753368Z 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:46:40.7759401Z 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:46:40.7766221Z 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:46:40.7772295Z 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:46:40.7839649Z 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:46:40.7840719Z 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:46:40.7841764Z 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:46:40.7842890Z 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:46:40.7843876Z 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:46:40.7844931Z 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:46:40.7847850Z 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:46:40.7853989Z 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:46:40.7860006Z 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:46:40.7866175Z 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:46:40.7872738Z 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:46:40.7878795Z 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:46:40.7884562Z 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:46:40.7890192Z 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:46:40.7895904Z 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:46:40.7902206Z 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:46:40.7909099Z 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:46:40.7915583Z 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:46:40.7921835Z 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:46:40.7928336Z 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:46:40.7934601Z 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:46:40.7940886Z 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:46:40.7947084Z 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:46:40.7953624Z 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:46:40.7959721Z 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:46:40.7966021Z 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:46:40.7972095Z 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:46:40.7978043Z 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:46:40.7984034Z 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:46:40.7990351Z 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:46:40.7996829Z 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:46:40.8003273Z 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:46:40.8009360Z 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:46:40.8016983Z 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:46:40.8022863Z 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:46:40.8029417Z 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:46:40.8035573Z 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:46:40.8042040Z 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:46:40.8047710Z 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:46:40.8054095Z 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:46:40.8059949Z 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:46:40.8066447Z 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:46:40.8072817Z 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:46:40.8078659Z 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:46:40.8084918Z 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:46:40.8092091Z 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:46:40.8097519Z 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:46:40.8103652Z 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:46:40.8109826Z 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:46:40.8115716Z 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:46:40.8121675Z 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:46:40.8127772Z 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:46:40.8134185Z 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:46:40.8140215Z 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:46:40.8146303Z 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:46:40.8152511Z 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:46:40.8158843Z 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:46:40.8164819Z 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:46:40.8170907Z 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:46:40.8177329Z 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:46:40.8183972Z 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:46:40.8189897Z 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:46:40.8195844Z 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:46:40.8202277Z 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:46:40.8208467Z 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:46:40.8214533Z 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:46:40.8220556Z 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:46:40.8226774Z 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:46:40.8233462Z 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:46:40.8239713Z 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:46:40.8245692Z 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:46:40.8251885Z 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:46:40.8257761Z 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:46:40.8264112Z 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:46:40.8270464Z 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:46:40.8276644Z 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:46:40.8282603Z 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:46:40.8288267Z 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:46:40.8294261Z 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:46:40.8300598Z 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:46:40.8307063Z 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:46:40.8313999Z 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:46:40.8322935Z 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:46:40.8331073Z 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:46:40.8338981Z 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:46:40.8346920Z 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:46:40.8354844Z 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:46:40.8362945Z 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:46:40.8370096Z 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:46:40.8377087Z 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:46:40.8383740Z 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:46:40.8389447Z 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:46:40.8395283Z 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:46:40.8401240Z 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:46:40.8407147Z 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:46:40.8413663Z 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:46:40.8419808Z 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:46:40.8426330Z 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:46:40.8432747Z 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:46:40.8438871Z 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:46:40.8445211Z 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:46:40.8451368Z 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:46:40.8457790Z 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:46:40.8464114Z 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:46:40.8470722Z 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:46:40.8476799Z 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:46:40.8483128Z 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:46:40.8489591Z 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:46:40.8496059Z 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:46:40.8502404Z 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:46:40.8508741Z 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:46:40.8515066Z 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:46:40.8521502Z 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:46:40.8527868Z 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:46:40.8534150Z 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:46:40.8540503Z 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:46:40.8546668Z 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:46:40.8552882Z 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:46:40.8559283Z 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:46:40.8565393Z 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:46:40.8571528Z 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:46:40.8577629Z 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:46:40.8583800Z 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:46:40.8590099Z 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:46:40.8596332Z 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:46:40.8602458Z 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:46:40.8608996Z 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:46:40.8615062Z 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:46:40.8620997Z 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:46:40.8629592Z 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:46:40.8636523Z 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:46:40.8642330Z 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:46:40.8648303Z 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:46:40.8654540Z 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:46:40.8660591Z 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:46:40.8666443Z 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:46:40.8756636Z 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:46:40.8762643Z 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:46:40.8769069Z 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:46:40.8774560Z 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:46:40.8780292Z 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:46:40.8786769Z 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:46:40.8793248Z 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:46:40.8799335Z 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:46:40.8805494Z 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:46:40.8811855Z 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:46:40.8818155Z 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:46:40.8826576Z 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:46:40.8830847Z 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:46:40.8837675Z 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:46:40.8844363Z 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:46:40.8851274Z 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:46:40.8858016Z 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:46:40.8864523Z 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:46:40.8871203Z 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:46:40.8877656Z 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:46:40.8884081Z 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:46:40.8890000Z 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:46:40.8896341Z 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:46:40.8902664Z 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:46:40.8909078Z 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:46:40.8915117Z 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:46:40.8920763Z 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:46:40.8926783Z 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:46:40.8933115Z 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:46:40.8939388Z 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:46:40.8945411Z 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:46:40.8951662Z 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:46:40.8957640Z 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:46:40.8964391Z 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:46:40.8970351Z 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:46:40.8976220Z 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:46:40.8982179Z 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:46:40.8988454Z 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:46:40.8994627Z 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:46:40.9000536Z 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:46:40.9006639Z 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:46:40.9012893Z 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:46:40.9018813Z 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:46:40.9024668Z 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:46:40.9030899Z 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:46:40.9036805Z 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:46:40.9042993Z 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:46:40.9049248Z 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:46:40.9055190Z 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:46:41.0396395Z 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:46:41.0402269Z 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:46:41.0408452Z 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:46:41.0415063Z 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:46:41.0421486Z 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:46:41.0427609Z 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:46:41.0433896Z 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:46:41.0440036Z 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:46:41.0446518Z 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:46:41.0452948Z 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:46:41.0459460Z 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:46:41.0465526Z 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:46:41.0471901Z 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:46:41.0477964Z 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:46:41.0484269Z 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:46:41.0490237Z 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:46:41.0496176Z 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:46:41.0502186Z 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:46:41.0508642Z 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:46:41.0515675Z 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:46:41.0521026Z 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:46:41.0526798Z 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:46:41.0533098Z 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:46:41.0539233Z 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:46:41.0544970Z 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:46:41.0551494Z 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:46:41.0557816Z 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:46:41.0563756Z 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:46:41.0569559Z 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:46:41.0575671Z 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:46:41.0582113Z 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:46:41.0588254Z 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:46:41.0594145Z 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:46:41.0600120Z 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:46:41.0606377Z 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:46:41.0612208Z 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:46:41.0618083Z 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:46:41.0623989Z 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:46:41.0630748Z 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:46:41.0636836Z 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:46:41.0643158Z 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:46:41.0648864Z 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:46:41.0655118Z 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:46:41.0661014Z 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:46:41.0667036Z 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:46:41.0673209Z 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:46:41.0679403Z 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:46:41.0685339Z 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:46:41.0691447Z 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:46:41.0697536Z 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:46:41.0703653Z 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:46:41.0709901Z 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:46:41.0716552Z 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:46:41.0722763Z 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:46:41.0729787Z 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:46:41.0735729Z 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:46:41.0741956Z 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:46:41.0748667Z 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:46:41.0755101Z 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:46:41.0761353Z 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:46:41.0767474Z 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:46:41.0773886Z 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:46:41.0780030Z 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:46:41.0786303Z 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:46:41.0793209Z 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:46:41.0799784Z 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:46:41.0805769Z 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:46:41.0811897Z 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:46:41.0818057Z 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:46:41.0824388Z 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:46:41.0858898Z 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:46:41.0868955Z 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:46:41.0875294Z 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:46:41.0881379Z 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:46:41.0888122Z 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:46:41.0894028Z 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:46:41.0900106Z 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:46:41.0906337Z 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:46:41.0913143Z 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:46:41.0919918Z 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:46:41.0925391Z 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:46:41.0932158Z 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:46:41.0938121Z 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:46:41.0944113Z 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:46:41.0950933Z 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:46:41.0957463Z 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:46:41.0963383Z 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:46:41.0969088Z 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:46:41.0975113Z 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:46:41.0981646Z 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:46:41.0987763Z 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:46:41.0994066Z 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:46:41.0999884Z 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:46:41.1005895Z 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:46:41.1012546Z 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:46:41.1018640Z 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:46:41.1025230Z 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:46:41.1031186Z 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:46:41.1037460Z 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:46:41.1043695Z 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:46:41.1050255Z 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:46:41.1056261Z 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:46:41.1063435Z 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:46:41.1069999Z 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:46:41.1076216Z 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:46:41.1082463Z 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:46:41.1088569Z 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:46:41.1095222Z 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:46:41.1101953Z 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:46:41.1108397Z 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:46:41.1114862Z 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:46:41.1120827Z 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:46:41.1127089Z 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:46:41.1133433Z 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:46:41.1139731Z 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:46:41.1146033Z 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:46:41.1152622Z 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:46:41.1158862Z 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:46:41.1165351Z 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:46:41.1172009Z 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:46:41.1178667Z 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:46:41.1185696Z 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:46:41.1191632Z 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:46:41.1197849Z 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:46:41.1204536Z 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:46:41.1211188Z 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:46:41.1217437Z 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:46:41.1224147Z 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:46:41.1230497Z 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:46:41.1237989Z 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:46:41.1243840Z 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:46:41.1259307Z 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:46:41.1265317Z 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:46:41.1271992Z 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:46:41.1278227Z 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:46:41.1284504Z 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:46:41.1290835Z 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:46:41.1297199Z 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:46:41.1303657Z 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:46:41.1310019Z 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:46:41.1316140Z 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:46:41.1321976Z 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:46:41.1363413Z 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:46:41.1364687Z 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:46:41.1365926Z 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:46:41.1367158Z 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:46:41.1368436Z 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:46:41.1369454Z 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:46:41.1371510Z 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:46:41.1377692Z 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:46:41.1383741Z 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:46:41.1440292Z 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:46:41.1446506Z 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:46:41.1452762Z 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:46:41.1458887Z 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:46:41.1464792Z 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:46:41.1471134Z 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:46:41.1477533Z 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:46:41.1483968Z 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:46:41.1492887Z 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:46:41.1499133Z 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:46:41.1505680Z 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:46:41.1513040Z 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:46:41.1519707Z 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:46:41.1526553Z 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:46:41.1534196Z 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:46:41.1540800Z 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:46:41.1547828Z 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:46:41.1554568Z 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:46:41.1561320Z 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:46:41.1567984Z 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:46:41.1574951Z 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:46:41.1581524Z 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:46:41.1588345Z 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:46:41.1595163Z 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:46:41.1601762Z 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:46:41.1608424Z 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:46:41.1614930Z 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:46:41.1622041Z 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:46:41.1629191Z 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:46:41.1636406Z 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:46:41.1644130Z 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:46:41.1662055Z 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:46:41.1663320Z 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:46:41.1664931Z 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:46:41.1672404Z 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:46:41.1679051Z 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:46:41.1685565Z 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:46:41.1692442Z 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:46:41.1700026Z 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:46:41.1706745Z 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:46:41.1713936Z 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:46:41.1720649Z 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:46:41.1727635Z 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:46:41.1734593Z 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:46:41.1741284Z 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:46:41.1750224Z 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:46:41.1757344Z 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:46:41.1764095Z 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:46:41.1770760Z 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:46:41.1777490Z 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:46:41.1783976Z 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:46:41.1790976Z 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:46:41.1798166Z 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:46:41.1804668Z 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:46:41.1811063Z 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:46:41.1817841Z 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:46:41.1824956Z 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:46:41.1831935Z 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:46:41.1838692Z 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:46:41.1848147Z 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:46:41.1856943Z 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:46:41.1910873Z 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:46:41.1919413Z 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:46:41.1930084Z 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:46:41.1937635Z 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:46:41.1946410Z 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:46:41.1953290Z 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:46:41.1961630Z 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:46:41.1968296Z 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:46:41.1975180Z 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:46:41.1981730Z 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:46:41.1988387Z 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:46:41.1996755Z 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:46:41.2003451Z 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:46:41.2010781Z 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:46:41.2016754Z 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:46:41.2023886Z 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:46:41.2030970Z 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:46:41.2038051Z 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:46:41.2044647Z 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:46:41.2052731Z 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:46:41.2059247Z 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:46:41.2065250Z 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:46:41.2071697Z 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:46:41.2079095Z 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:46:41.2084625Z 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:46:41.2090359Z 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:46:41.2096367Z 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:46:41.2102547Z 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:46:41.2108413Z 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:46:41.2114234Z 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:46:41.2120376Z 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:46:41.2126590Z 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:46:41.2132600Z 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:46:41.2138693Z 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:46:41.2144934Z 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:46:41.2151180Z 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:46:41.2157488Z 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:46:41.2163717Z 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:46:41.2169851Z 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:46:41.2176552Z 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:46:41.2182846Z 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:46:41.2189383Z 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:46:41.2196112Z 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:46:41.2202602Z 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:46:41.2208906Z 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:46:41.2215494Z 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:46:41.2221675Z 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:46:41.2227716Z 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:46:41.2233851Z 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:46:41.2240437Z 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:46:41.2246970Z 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:46:41.2253442Z 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:46:41.2259670Z 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:46:41.2266263Z 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:46:41.2272816Z 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:46:41.2279532Z 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:46:41.2286165Z 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:46:41.2292732Z 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:46:41.2299067Z 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:46:41.2304998Z 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:46:41.2311297Z 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:46:41.2317498Z 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:46:41.2323787Z 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:46:41.2329995Z 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:46:41.2336403Z 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:46:41.2384414Z 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:46:41.2394373Z 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:46:41.2403076Z 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:46:41.2410393Z 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:46:41.2419399Z 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:46:41.2426027Z 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:46:41.2435009Z 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:46:41.2442049Z 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:46:41.2448856Z 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:46:41.2455332Z 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:46:41.2464044Z 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:46:41.2471008Z 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:46:41.2477777Z 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:46:41.2484399Z 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:46:41.2491446Z 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:46:41.2499751Z 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:46:41.2507146Z 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:46:41.2514227Z 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:46:41.2523572Z 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:46:41.2530452Z 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:46:41.2537232Z 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:46:41.2544166Z 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:46:41.2551209Z 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:46:41.2557955Z 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:46:41.2565199Z 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:46:41.2572298Z 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:46:41.2579084Z 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:46:41.2585720Z 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:46:41.2592837Z 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:46:41.2599807Z 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:46:41.2606598Z 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:46:41.2613273Z 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:46:41.2621654Z 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:46:41.2631906Z 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:46:41.2640510Z 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:46:41.2650474Z 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:46:41.2658985Z 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:46:41.2668424Z 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:46:41.2676994Z 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:46:41.2686439Z 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:46:41.2694748Z 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:46:41.2704785Z 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:46:41.2713295Z 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:46:41.2723228Z 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:46:41.2731923Z 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:46:41.2741936Z 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:46:41.2751987Z 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:46:41.2761215Z 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:46:41.2771115Z 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:46:41.2779813Z 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:46:41.2817845Z 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:46:41.2824246Z 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:46:41.2831021Z 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:46:41.2837638Z 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:46:41.2844664Z 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:46:41.2851772Z 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:46:41.2858529Z 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:46:41.2865452Z 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:46:41.2872317Z 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:46:41.2879176Z 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:46:41.2885954Z 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:46:41.2892551Z 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:46:41.2899119Z 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:46:41.2905817Z 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:46:41.2912595Z 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:46:41.2919189Z 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:46:41.2925645Z 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:46:41.2932195Z 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:46:41.2938530Z 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:46:41.2944556Z 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:46:41.2950636Z 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:46:41.2956772Z 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:46:41.2962839Z 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:46:41.2968954Z 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:46:41.2974927Z 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:46:41.2980737Z 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:46:41.2986781Z 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:46:41.2992906Z 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:46:41.2998941Z 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:46:41.3004830Z 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:46:41.3010548Z 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:46:41.3016633Z 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:46:41.3022628Z 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:46:41.3028760Z 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:46:41.3034869Z 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:46:41.3041072Z 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:46:41.3047144Z 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:46:41.3053181Z 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:46:41.3059196Z 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:46:41.3065367Z 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:46:41.3071706Z 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:46:41.3077826Z 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:46:41.3084018Z 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:46:41.3089987Z 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:46:41.3096406Z 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:46:41.3102518Z 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:46:41.3108781Z 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:46:41.3114836Z 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:46:41.3120801Z 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:46:41.3126723Z 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:46:41.3132817Z 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:46:41.3139055Z 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:46:41.3145577Z 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:46:41.3151931Z 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:46:41.3157972Z 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:46:41.3163933Z 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:46:41.3170011Z 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:46:41.3175988Z 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:46:41.3182230Z 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:46:41.3188519Z 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:46:41.3194743Z 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:46:41.3200867Z 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:46:41.3206924Z 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:46:41.3213095Z 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:46:41.3219679Z 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:46:41.3226112Z 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:46:41.3232257Z 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:46:41.3238250Z 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:46:41.3244417Z 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:46:41.3250743Z 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:46:41.3256723Z 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:46:41.3263287Z 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:46:41.3270615Z 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:46:41.3277225Z 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:46:41.3283439Z 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:46:41.3289689Z 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:46:41.3295803Z 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:46:41.3302153Z 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:46:41.3308899Z 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:46:41.3316621Z 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:46:41.3322344Z 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:46:41.3331490Z 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:46:41.3337830Z 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:46:41.3344225Z 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:46:41.3381957Z 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:46:41.3383067Z 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:46:41.3384127Z 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:46:41.3385128Z 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:46:41.3386351Z 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:46:41.3387674Z 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:46:41.3392199Z 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:46:41.3398532Z 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:46:41.3404759Z 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:46:41.3411801Z 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:46:41.3418158Z 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:46:41.3424496Z 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:46:41.3430603Z 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:46:41.3436759Z 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:46:41.3443374Z 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:46:41.3449495Z 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:46:41.3455575Z 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:46:41.3461714Z 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:46:41.3468135Z 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:46:41.3474736Z 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:46:41.3480845Z 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:46:41.3487200Z 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:46:41.3493426Z 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:46:41.3499718Z 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:46:41.3507047Z 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:46:41.3513721Z 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:46:41.3519825Z 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:46:41.3526266Z 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:46:41.3532529Z 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:46:41.3539438Z 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:46:41.3545688Z 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:46:41.3552095Z 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:46:41.3558076Z 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:46:41.3564170Z 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:46:41.3604843Z 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:46:41.3611190Z 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:46:41.3617219Z 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:46:41.3623638Z 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:46:41.3630140Z 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:46:41.3636327Z 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:46:41.3642665Z 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:46:41.3648812Z 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:46:41.3654949Z 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:46:41.3661673Z 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:46:41.3668425Z 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:46:41.3674643Z 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:46:41.3680858Z 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:46:41.3687814Z 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:46:41.3694284Z 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:46:41.3700628Z 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:46:41.3707309Z 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:46:41.3713664Z 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:46:41.3720436Z 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:46:41.3726749Z 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:46:41.3733575Z 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:46:41.3739717Z 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:46:41.3746171Z 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:46:41.3752557Z 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:46:41.3758798Z 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:46:41.3765367Z 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:46:41.3771663Z 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:46:41.3777667Z 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:46:41.3784299Z 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:46:41.3790900Z 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:46:41.3797302Z 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:46:41.3803470Z 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:46:41.3809728Z 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:46:41.3815942Z 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:46:41.3822432Z 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:46:41.3828975Z 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:46:41.3835318Z 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:46:41.3841533Z 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:46:41.3848009Z 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:46:41.3854955Z 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:46:41.3861448Z 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:46:41.3913100Z 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:46:41.3914245Z 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:46:41.3915302Z 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:46:41.3916333Z 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:46:41.3917379Z 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:46:41.3918643Z 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:46:41.3919870Z 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:46:41.3920962Z 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:46:41.3923377Z 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:46:41.3929707Z 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:46:41.3936115Z 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:46:41.3942251Z 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:46:41.3949237Z 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:46:41.3954576Z 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:46:41.3960677Z 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:46:41.3967388Z 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:46:41.3973986Z 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:46:41.3980140Z 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:46:41.3986310Z 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:46:41.3992857Z 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:46:41.3999021Z 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:46:41.4005407Z 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:46:41.4011705Z 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:46:41.4017748Z 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:46:41.4023776Z 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:46:41.4030398Z 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:46:41.4036484Z 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:46:41.4042775Z 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:46:41.4049038Z 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:46:41.4055501Z 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:46:41.4061881Z 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:46:41.4068175Z 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:46:41.4074273Z 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:46:41.4080595Z 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:46:41.4087040Z 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:46:41.4093156Z 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:46:41.4099552Z 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:46:41.4105708Z 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:46:41.4112165Z 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:46:41.4118627Z 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:46:41.4124619Z 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:46:41.4130660Z 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:46:41.4136755Z 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:46:41.4142969Z 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:46:41.4149437Z 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:46:41.4156177Z 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:46:41.4162176Z 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:46:41.4168135Z 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:46:41.4175219Z 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:46:41.4233654Z 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:46:41.4239892Z 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:46:41.4245894Z 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:46:41.4252027Z 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:46:41.4258510Z 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:46:41.4264907Z 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:46:41.4271568Z 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:46:41.4277265Z 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:46:41.4283609Z 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:46:41.4289805Z 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:46:41.4296407Z 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:46:41.4302554Z 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:46:41.4308904Z 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:46:41.4315115Z 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:46:41.4321223Z 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:46:41.4327842Z 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:46:41.4333782Z 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:46:41.4340587Z 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:46:41.4346760Z 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:46:41.4352948Z 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:46:41.4359723Z 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:46:41.4366684Z 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:46:41.4373395Z 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:46:41.4380353Z 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:46:41.4386848Z 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:46:41.4393932Z 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:46:41.4400655Z 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:46:41.4407315Z 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:46:41.4414854Z 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:46:41.4421264Z 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:46:41.4456709Z 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:46:41.4463298Z 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:46:41.4469389Z 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:46:41.4475767Z 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:46:41.4481938Z 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:46:41.4488225Z 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:46:41.4495292Z 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:46:41.4501030Z 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:46:41.4507121Z 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:46:41.4513603Z 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:46:41.4519959Z 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:46:41.4526020Z 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:46:41.4532424Z 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:46:41.4538509Z 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:46:41.4544622Z 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:46:41.4551905Z 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:46:41.4557981Z 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:46:41.4564366Z 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:46:41.4602028Z 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:46:41.4608230Z 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:46:41.4614774Z 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:46:41.4620870Z 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:46:41.4627631Z 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:46:41.4633269Z 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:46:41.4639186Z 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:46:41.4645061Z 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:46:41.4651431Z 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:46:41.4657766Z 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:46:41.4663912Z 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:46:41.4670629Z 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:46:41.4677241Z 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:46:41.4683472Z 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:46:41.4689915Z 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:46:41.4696383Z 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:46:41.4702558Z 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:46:41.4709234Z 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:46:41.4715621Z 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:46:41.4721870Z 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:46:41.4727980Z 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:46:41.4734163Z 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:46:41.4740873Z 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:46:41.4747100Z 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:46:41.4753512Z 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:46:41.4759854Z 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:46:41.4766070Z 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:46:41.4772497Z 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:46:41.4779374Z 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:46:41.4785660Z 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:46:41.4791978Z 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:46:41.4798894Z 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:46:41.4805372Z 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:46:41.4811818Z 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:46:41.4818651Z 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:46:41.4825311Z 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:46:41.4831821Z 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:46:41.4838683Z 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:46:41.4845177Z 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:46:41.4852145Z 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:46:41.4858798Z 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:46:41.4888045Z 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:46:41.4896773Z 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:46:41.4907585Z 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:46:41.4914890Z 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:46:41.4923611Z 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:46:41.4930428Z 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:46:41.4939141Z 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:46:41.4946019Z 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:46:41.4953490Z 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:46:41.4960489Z 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:46:41.4968529Z 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:46:41.4975273Z 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:46:41.4982061Z 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:46:41.4989334Z 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:46:41.4996106Z 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:46:41.5002767Z 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:46:41.5009623Z 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:46:41.5017126Z 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:46:41.5024031Z 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:46:41.5031374Z 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:46:41.5038101Z 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:46:41.5044866Z 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:46:41.5051542Z 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:46:41.5058481Z 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:46:41.5065859Z 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:46:41.5073999Z 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:46:41.5080974Z 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:46:41.5088203Z 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:46:41.5094830Z 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:46:41.5101550Z 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:46:41.5108739Z 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:46:41.5115399Z 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:46:41.5122200Z 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:46:41.5129174Z 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:46:41.5135932Z 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:46:41.5142871Z 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:46:41.5149900Z 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:46:41.5157102Z 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:46:41.5163966Z 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:46:41.5172799Z 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:46:41.5179566Z 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:46:41.5186560Z 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:46:41.5193065Z 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:46:41.5199730Z 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:46:41.5206648Z 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:46:41.5213303Z 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:46:41.5219759Z 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:46:41.5226902Z 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:46:41.5233973Z 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:46:41.5240710Z 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:46:41.5247581Z 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:46:41.5254232Z 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:46:41.5260561Z 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:46:41.5267180Z 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:46:41.5278665Z 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:46:41.5330803Z 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:46:41.5341425Z 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:46:41.5352563Z 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:46:41.5360052Z 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:46:41.5367228Z 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:46:41.5373953Z 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:46:41.5380771Z 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:46:41.5388267Z 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:46:41.5395387Z 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:46:41.5402215Z 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:46:41.5408815Z 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:46:41.5415413Z 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:46:41.5422099Z 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:46:41.5429139Z 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:46:41.5435906Z 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:46:41.5443316Z 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:46:41.5449976Z 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:46:41.5456527Z 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:46:41.5463154Z 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:46:41.5470475Z 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:46:41.5477373Z 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:46:41.5483862Z 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:46:41.5490348Z 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:46:41.5497279Z 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:46:41.5504017Z 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:46:41.5511057Z 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:46:41.5519501Z 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:46:41.5535245Z 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:46:41.5542453Z 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:46:41.5548177Z 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:46:41.5554660Z 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:46:41.5561311Z 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:46:41.5567890Z 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:46:41.5574528Z 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:46:41.5580726Z 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:46:41.5615266Z 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:46:41.5621750Z 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:46:41.5629308Z 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:46:41.5635657Z 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:46:41.5641729Z 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:46:41.5647821Z 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:46:41.5654046Z 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:46:41.5660586Z 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:46:41.5666897Z 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:46:41.5673284Z 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:46:41.5679138Z 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:46:41.5685435Z 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:46:41.5692077Z 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:46:41.5698095Z 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:46:41.5704543Z 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:46:41.5711712Z 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:46:41.5717552Z 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:46:41.5723417Z 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:46:41.5729358Z 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:46:41.5735618Z 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:46:41.5741439Z 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:46:41.5747663Z 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:46:41.5754312Z 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:46:41.5760848Z 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:46:41.5766822Z 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:46:41.5773357Z 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:46:41.5779512Z 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:46:41.5785614Z 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:46:41.5791759Z 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:46:41.5797595Z 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:46:41.5804261Z 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:46:41.5811643Z 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:46:41.5818003Z 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:46:41.5823720Z 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:46:41.5830241Z 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:46:41.5836710Z 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:46:41.5843206Z 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:46:41.5850168Z 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:46:41.5856598Z 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:46:41.5863356Z 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:46:41.5869431Z 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:46:41.5875154Z 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:46:41.5881465Z 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:46:41.5887587Z 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:46:41.5894397Z 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:46:41.5900457Z 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:46:41.5906362Z 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:46:41.5912871Z 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:46:41.5919593Z 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:46:41.5925889Z 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:46:41.5931996Z 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:46:41.5938359Z 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:46:41.5944757Z 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:46:41.5951185Z 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:46:41.5957423Z 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:46:41.5963896Z 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:46:41.5970971Z 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:46:41.5977437Z 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:46:41.5983765Z 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:46:41.5990419Z 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:46:41.5996935Z 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:46:41.6003407Z 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:46:41.6010167Z 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:46:41.6016763Z 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:46:41.6023272Z 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:46:41.6030022Z 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:46:41.6035895Z 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:46:41.6041873Z 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:46:41.6048014Z 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:46:41.6054378Z 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:46:41.6060643Z 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:46:41.6066739Z 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:46:41.6072997Z 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:46:41.6079556Z 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:46:41.6085585Z 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:46:41.6091926Z 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:46:41.6098189Z 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:46:41.6105325Z 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:46:41.6111335Z 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:46:41.6117572Z 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:46:41.6123630Z 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:46:41.6129973Z 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:46:41.6136230Z 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:46:41.6142856Z 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:46:41.6149071Z 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:46:41.6155931Z 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:46:41.6162098Z 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:46:41.6168192Z 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:46:41.6174209Z 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:46:41.6180238Z 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:46:41.6186732Z 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:46:41.6193692Z 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:46:41.6199750Z 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:46:41.6206167Z 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:46:41.6212341Z 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:46:41.6219078Z 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:46:41.6225601Z 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:46:41.6232333Z 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:46:41.6238672Z 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:46:41.6244708Z 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:46:41.6251132Z 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:46:41.6257540Z 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:46:41.6274879Z 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:46:41.6275523Z 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:46:41.6277869Z 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:46:41.6285034Z 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:46:41.6291475Z 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:46:41.6297825Z 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:46:41.6304305Z 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:46:41.6310709Z 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:46:41.6317271Z 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:46:41.6324452Z 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:46:41.6330805Z 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:46:41.6338826Z 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:46:41.6344451Z 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:46:41.6350924Z 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:46:41.6357681Z 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:46:41.6364094Z 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:46:41.6370577Z 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:46:41.6378316Z 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:46:41.6384205Z 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:46:41.6391146Z 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:46:41.6397727Z 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:46:41.6404844Z 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:46:41.6411214Z 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:46:41.6447620Z 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:46:41.6453912Z 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:46:41.6460195Z 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:46:41.6466797Z 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:46:41.6472984Z 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:46:41.6479269Z 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:46:41.6485833Z 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:46:41.6492056Z 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:46:41.6498684Z 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:46:41.6504884Z 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:46:41.6511339Z 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:46:41.6517898Z 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:46:41.6524280Z 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:46:41.6530615Z 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:46:41.6536516Z 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:46:41.6543357Z 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:46:41.6550415Z 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:46:41.6556691Z 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:46:41.6563075Z 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:46:41.6569685Z 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:46:41.6576287Z 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:46:41.6583482Z 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:46:41.6594501Z 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:46:41.6601001Z 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:46:41.6607262Z 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:46:41.6613797Z 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:46:41.6620187Z 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:46:41.6626750Z 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:46:41.6634817Z 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:46:41.6641687Z 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:46:41.6648506Z 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:46:41.6654592Z 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:46:41.6660842Z 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:46:41.6667464Z 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:46:41.6673879Z 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:46:41.6680789Z 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:46:41.6687118Z 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:46:41.6693730Z 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:46:41.6700367Z 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:46:41.6706757Z 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:46:41.6713217Z 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:46:41.6719687Z 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:46:41.6764625Z 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:46:41.6771067Z 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:46:41.6776975Z 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:46:41.6783201Z 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:46:41.6790062Z 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:46:41.6796637Z 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:46:41.6803765Z 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:46:41.6810002Z 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:46:41.6815999Z 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:46:41.6822384Z 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:46:41.6829109Z 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:46:41.6836001Z 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:46:41.6842558Z 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:46:41.6848893Z 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:46:41.6856893Z 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:46:41.6862495Z 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:46:41.6868796Z 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:46:41.6875321Z 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:46:41.6882173Z 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:46:41.6889353Z 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:46:41.6895519Z 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:46:41.6902122Z 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:46:41.6908467Z 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:46:41.6915087Z 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:46:41.6922153Z 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:46:41.6928177Z 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:46:41.6934366Z 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:46:41.6940855Z 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:46:41.6951984Z 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:46:41.6959616Z 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:46:41.6966116Z 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:46:41.6972475Z 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:46:41.6979199Z 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:46:41.6985784Z 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:46:41.6992645Z 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:46:41.6999825Z 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:46:41.7006285Z 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:46:41.7012429Z 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:46:41.7018538Z 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:46:41.7024922Z 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:46:41.7032218Z 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:46:41.7039168Z 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:46:41.7045743Z 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:46:41.7052468Z 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:46:41.7058347Z 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:46:41.7065560Z 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:46:41.7071208Z 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:46:41.7077510Z 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:46:41.7084084Z 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:46:41.7090496Z 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:46:41.7096930Z 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:46:41.7103725Z 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:46:41.7110290Z 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:46:41.7117946Z 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:46:41.7124425Z 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:46:41.7130972Z 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:46:41.7137540Z 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:46:41.7144438Z 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:46:41.7151162Z 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:46:41.7157883Z 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:46:41.7164971Z 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:46:41.7171367Z 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:46:41.7177832Z 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:46:41.7184304Z 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:46:41.7191030Z 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:46:41.7197525Z 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:46:41.7203822Z 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:46:41.7210721Z 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:46:41.7217260Z 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:46:41.7224092Z 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:46:41.7229941Z 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:46:41.7236469Z 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:46:41.7243177Z 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:46:41.7249280Z 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:46:41.7256396Z 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:46:41.7262855Z 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:46:41.7270458Z 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:46:41.7276797Z 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:46:41.7283031Z 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:46:41.7289075Z 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:46:41.7295640Z 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:46:41.7301892Z 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:46:41.7308914Z 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:46:41.7315279Z 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:46:41.7321656Z 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:46:41.7329199Z 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:46:41.7335507Z 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:46:41.7341821Z 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:46:41.7348566Z 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:46:41.7355781Z 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:46:41.7362191Z 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:46:41.7368480Z 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:46:41.7374835Z 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:46:41.7425892Z 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:46:41.7427076Z 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:46:41.7428334Z 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:46:41.7429416Z 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:46:41.7430565Z 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:46:41.7431904Z 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:46:41.7433189Z 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:46:41.7434431Z 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:46:41.7438768Z 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:46:41.7445574Z 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:46:41.7452407Z 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:46:41.7463967Z 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:46:41.7468376Z 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:46:41.7474693Z 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:46:41.7481388Z 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:46:41.7487957Z 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:46:41.7494652Z 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:46:41.7501023Z 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:46:41.7507587Z 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:46:41.7514582Z 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:46:41.7521115Z 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:46:41.7527312Z 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:46:41.7533447Z 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:46:41.7539998Z 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:46:41.7546626Z 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:46:41.7553137Z 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:46:41.7559837Z 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:46:41.7566827Z 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:46:41.7573124Z 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:46:41.7579590Z 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:46:41.7585630Z 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:46:41.7592164Z 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:46:41.7598378Z 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:46:41.7604869Z 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:46:41.7611032Z 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:46:41.7617037Z 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:46:41.7623550Z 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:46:41.7630423Z 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:46:41.7636599Z 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:46:41.7643129Z 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:46:41.7649317Z 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:46:41.7655689Z 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:46:41.7662048Z 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:46:41.7668723Z 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:46:41.7674986Z 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:46:41.7681355Z 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:46:41.7688213Z 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:46:41.7694813Z 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:46:41.7701427Z 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:46:41.7707615Z 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:46:41.7713894Z 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:46:41.7720175Z 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:46:41.7726573Z 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:46:41.7733092Z 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:46:41.7739360Z 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:46:41.7745467Z 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:46:41.7752049Z 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:46:41.7758385Z 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:46:41.7764317Z 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:46:41.7770384Z 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:46:41.7776409Z 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:46:41.7783120Z 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:46:41.7789388Z 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:46:41.7796513Z 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:46:41.7802224Z 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:46:41.7807640Z 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:46:41.7813791Z 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:46:41.7819468Z 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:46:41.7825763Z 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:46:41.7832142Z 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:46:41.7838063Z 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:46:41.7844346Z 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:46:41.7851476Z 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:46:41.7857580Z 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:46:41.7863996Z 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:46:41.7870189Z 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:46:41.7876061Z 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:46:41.7881880Z 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:46:41.7888175Z 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:46:41.7894462Z 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:46:41.7901093Z 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:46:41.7907802Z 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:46:41.7959103Z 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:46:41.7960141Z 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:46:41.7961138Z 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:46:41.7962378Z 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:46:41.7963570Z 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:46:41.7964660Z 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:46:41.7965676Z 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:46:41.7966895Z 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:46:41.7969323Z 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:46:41.7975789Z 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:46:41.7981665Z 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:46:41.7988339Z 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:46:41.8036390Z 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:46:41.8042455Z 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:46:41.8048536Z 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:46:41.8054636Z 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:46:41.8061469Z 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:46:41.8068082Z 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:46:41.8074354Z 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:46:41.8080715Z 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:46:41.8086806Z 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:46:41.8092891Z 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:46:41.8099253Z 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:46:41.8105862Z 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:46:41.8111855Z 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:46:41.8118093Z 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:46:41.8124137Z 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:46:41.8130057Z 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:46:41.8136150Z 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:46:41.8173292Z 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:46:41.8179583Z 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:46:41.8185665Z 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:46:41.8192192Z 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:46:41.8198998Z 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:46:41.8204880Z 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:46:41.8211166Z 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:46:41.8217861Z 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:46:41.8224156Z 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:46:41.8230350Z 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:46:41.8266819Z 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:46:41.8273378Z 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:46:41.8284416Z 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:46:41.8290537Z 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:46:41.8296420Z 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:46:41.8302922Z 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:46:41.8310925Z 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:46:41.8316282Z 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:46:41.8322943Z 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:46:41.8329104Z 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:46:41.8335342Z 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:46:41.8342225Z 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:46:41.8348697Z 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:46:41.8355220Z 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:46:41.8361925Z 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:46:41.8368992Z 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:46:41.8375325Z 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:46:41.8381641Z 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:46:41.8388075Z 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:46:41.8394192Z 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:46:41.8401066Z 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:46:41.8408622Z 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:46:41.8415456Z 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:46:41.8421722Z 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:46:41.8428955Z 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:46:41.8435705Z 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:46:41.8442601Z 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:46:41.8448468Z 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:46:41.8454700Z 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:46:41.8461581Z 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:46:41.8468238Z 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:46:41.8474758Z 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:46:41.8480915Z 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:46:41.8487125Z 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:46:41.8493622Z 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:46:41.8499628Z 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:46:41.8506009Z 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:46:41.8512541Z 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:46:41.8519754Z 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:46:41.8525673Z 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:46:41.8531429Z 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:46:41.8537563Z 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:46:41.8544054Z 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:46:41.8550477Z 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:46:41.8556768Z 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:46:41.8563133Z 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:46:41.8569681Z 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:46:41.8575981Z 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:46:41.8588086Z 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:46:41.8594241Z 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:46:41.8600828Z 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:46:41.8607100Z 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:46:41.8613785Z 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:46:41.8620122Z 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:46:41.8626935Z 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:46:41.8633145Z 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:46:41.8639912Z 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:46:41.8646143Z 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:46:41.8652950Z 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:46:41.8659975Z 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:46:41.8666641Z 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:46:41.8673566Z 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:46:41.8680243Z 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:46:41.8686756Z 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:46:41.8693311Z 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:46:41.8699844Z 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:46:41.8706786Z 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:46:41.8713380Z 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:46:41.8720264Z 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:46:41.8726277Z 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:46:41.8732717Z 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:46:41.8739234Z 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:46:41.8745876Z 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:46:41.8752366Z 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:46:41.8758601Z 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:46:41.8765380Z 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:46:41.8771844Z 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:46:41.8778035Z 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:46:41.8784329Z 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:46:41.8790766Z 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:46:41.8797426Z 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:46:41.8804513Z 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:46:41.8811401Z 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:46:41.8818161Z 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:46:41.8824587Z 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:46:41.8831436Z 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:46:41.8838385Z 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:46:41.8845591Z 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:46:41.8852120Z 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:46:41.8858676Z 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:46:41.8866180Z 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:46:41.8872924Z 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:46:41.8880973Z 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:46:41.8887313Z 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:46:41.8928774Z 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:46:41.8930397Z 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:46:41.8932008Z 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:46:41.8933464Z 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:46:41.8934695Z 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:46:41.8935791Z 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:46:41.8939172Z 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:46:41.8945512Z 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:46:41.8952519Z 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:46:41.8958946Z 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:46:41.8965468Z 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:46:41.8971806Z 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:46:41.8978498Z 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:46:41.8984863Z 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:46:41.8991947Z 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:46:41.8998215Z 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:46:41.9004532Z 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:46:41.9010677Z 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:46:41.9017641Z 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:46:41.9023873Z 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:46:41.9030190Z 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:46:41.9036126Z 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:46:41.9042149Z 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:46:41.9048456Z 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:46:41.9054945Z 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:46:41.9061459Z 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:46:41.9067639Z 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:46:41.9074061Z 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:46:41.9080886Z 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:46:41.9087137Z 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:46:41.9093511Z 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:46:41.9100093Z 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:46:41.9105978Z 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:46:41.9112221Z 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:46:41.9118675Z 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:46:41.9125192Z 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:46:41.9131410Z 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:46:41.9137545Z 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:46:41.9143770Z 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:46:41.9150609Z 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:46:41.9156973Z 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:46:41.9162972Z 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:46:41.9216762Z 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:46:41.9223256Z 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:46:41.9229923Z 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:46:41.9235915Z 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:46:41.9243555Z 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:46:41.9250677Z 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:46:41.9256818Z 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:46:41.9263582Z 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:46:41.9269737Z 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:46:41.9275854Z 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:46:41.9283054Z 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:46:41.9288808Z 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:46:41.9295819Z 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:46:41.9301965Z 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:46:41.9308768Z 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:46:41.9315175Z 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:46:41.9322102Z 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:46:41.9328845Z 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:46:41.9335398Z 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:46:41.9342422Z 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:46:41.9348809Z 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:46:41.9355020Z 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:46:41.9361165Z 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:46:41.9367272Z 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:46:41.9373446Z 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:46:41.9380115Z 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:46:41.9386456Z 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:46:41.9392935Z 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:46:41.9399950Z 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:46:41.9406443Z 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:46:41.9413903Z 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:46:41.9420220Z 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:46:41.9426636Z 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:46:41.9433811Z 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:46:41.9439975Z 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:46:41.9446159Z 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:46:41.9452706Z 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:46:41.9459203Z 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:46:41.9465782Z 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:46:41.9472281Z 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:46:41.9478484Z 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:46:41.9485029Z 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:46:41.9491276Z 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:46:41.9497756Z 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:46:41.9504389Z 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:46:41.9511567Z 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:46:41.9518038Z 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:46:41.9524250Z 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:46:41.9530521Z 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:46:41.9537982Z 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:46:41.9544460Z 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:46:41.9550638Z 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:46:41.9557272Z 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:46:41.9564628Z 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:46:41.9570552Z 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:46:41.9577257Z 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:46:41.9583657Z 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:46:41.9590651Z 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:46:41.9597639Z 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:46:41.9603943Z 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:46:41.9610377Z 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:46:41.9617135Z 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:46:41.9624077Z 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:46:41.9630582Z 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:46:41.9637049Z 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:46:41.9643797Z 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:46:41.9650572Z 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:46:41.9657240Z 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:46:41.9664065Z 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:46:41.9670877Z 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:46:41.9677141Z 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:46:41.9684384Z 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:46:41.9690448Z 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:46:41.9696683Z 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:46:41.9703729Z 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:46:41.9710122Z 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:46:41.9716268Z 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:46:41.9722900Z 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:46:41.9729711Z 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:46:41.9736835Z 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:46:41.9744012Z 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:46:41.9750374Z 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:46:41.9756719Z 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:46:41.9763421Z 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:46:41.9770346Z 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:46:41.9777036Z 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:46:41.9783227Z 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:46:41.9790196Z 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:46:41.9796824Z 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:46:41.9810987Z 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:46:41.9818155Z 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:46:41.9824306Z 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:46:41.9831347Z 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:46:41.9838293Z 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:46:41.9844442Z 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:46:41.9851290Z 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:46:41.9859067Z 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:46:41.9864852Z 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:46:41.9871137Z 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:46:41.9877677Z 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:46:41.9884213Z 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:46:41.9890724Z 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:46:41.9897295Z 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:46:41.9904090Z 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:46:41.9910510Z 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:46:41.9917055Z 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:46:41.9923556Z 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:46:41.9930519Z 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:46:41.9936799Z 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:46:41.9943159Z 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:46:41.9949802Z 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:46:41.9955987Z 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:46:41.9962372Z 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:46:41.9968975Z 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:46:41.9975393Z 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:46:41.9988203Z 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:46:41.9994143Z 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:46:42.0000567Z 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:46:42.0006974Z 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:46:42.0013213Z 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:46:42.0050169Z 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:46:42.0056832Z 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:46:42.0063105Z 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:46:42.0069385Z 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:46:42.0075435Z 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:46:42.0081408Z 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:46:42.0087887Z 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:46:42.0094250Z 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:46:42.0100475Z 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:46:42.0106586Z 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:46:42.0113362Z 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:46:42.0120012Z 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:46:42.0126726Z 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:46:42.0133018Z 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:46:42.0139569Z 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:46:42.0146142Z 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:46:42.0152346Z 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:46:42.0158775Z 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:46:42.0165270Z 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:46:42.0171731Z 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:46:42.0177846Z 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:46:42.0184220Z 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:46:42.0190513Z 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:46:42.0196697Z 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:46:42.0203661Z 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:46:42.0209925Z 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:46:42.0216547Z 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:46:42.0223513Z 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:46:42.0230272Z 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:46:42.0236964Z 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:46:42.0244183Z 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:46:42.0251017Z 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:46:42.0257489Z 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:46:42.0286111Z 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:46:42.0293036Z 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:46:42.0299026Z 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:46:42.0305319Z 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:46:42.0311688Z 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:46:42.0317996Z 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:46:42.0324310Z 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:46:42.0330817Z 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:46:42.0338344Z 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:46:42.0346876Z 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:46:42.0353381Z 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:46:42.0359625Z 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:46:42.0366000Z 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:46:42.0372715Z 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:46:42.0379082Z 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:46:42.0385852Z 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:46:42.0393470Z 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:46:42.0399786Z 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:46:42.0430711Z 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:46:42.0431220Z 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:46:42.0431705Z 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:46:42.0432181Z 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:46:42.0436806Z 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:46:42.0443136Z 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:46:42.0449495Z 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:46:42.0455588Z 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:46:42.0461578Z 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:46:42.0468348Z 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:46:42.0475158Z 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:46:42.0481726Z 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:46:42.0492868Z 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:46:42.0511561Z 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:46:42.0512247Z 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:46:42.0513150Z 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:46:42.0519751Z 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:46:42.0526909Z 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:46:42.0533503Z 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:46:42.0540220Z 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:46:42.0546620Z 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:46:42.0553405Z 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:46:42.0559552Z 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:46:42.0565952Z 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:46:42.0573204Z 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:46:42.0579445Z 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:46:42.0585759Z 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:46:42.0592546Z 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:46:42.0599203Z 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:46:42.0605631Z 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:46:42.0612068Z 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:46:42.0618157Z 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:46:42.0624584Z 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:46:42.0631579Z 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:46:42.0637726Z 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:46:42.0643932Z 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:46:42.0650510Z 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:46:42.0657245Z 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:46:42.0664147Z 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:46:42.0670835Z 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:46:42.0677219Z 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:46:42.0683494Z 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:46:42.0690125Z 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:46:42.0696474Z 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:46:42.0703153Z 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:46:42.0709523Z 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:46:42.0716053Z 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:46:42.0722498Z 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:46:42.0729104Z 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:46:42.0735294Z 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:46:42.0741538Z 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:46:42.0747685Z 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:46:42.0754807Z 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:46:42.0761058Z 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:46:42.0767262Z 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:46:42.0773695Z 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:46:42.0780594Z 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:46:42.0786701Z 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:46:42.0792719Z 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:46:42.0798893Z 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:46:42.0805566Z 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:46:42.0811704Z 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:46:42.0818233Z 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:46:42.0824608Z 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:46:42.0831257Z 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:46:42.0838159Z 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:46:42.0844969Z 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:46:42.0852276Z 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:46:42.0858877Z 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:46:42.0865245Z 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:46:42.0871682Z 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:46:42.0877924Z 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:46:42.0884563Z 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:46:42.0891328Z 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:46:42.0897651Z 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:46:42.0904218Z 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:46:42.0911044Z 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:46:42.0918014Z 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:46:42.0924677Z 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:46:42.0931323Z 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:46:42.0937781Z 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:46:42.0944419Z 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:46:42.0951806Z 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:46:42.0958178Z 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:46:42.0964535Z 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:46:42.0971416Z 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:46:42.0977811Z 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:46:42.0984061Z 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:46:42.0990636Z 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:46:42.0997934Z 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:46:42.1003637Z 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:46:42.1010057Z 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:46:42.1016188Z 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:46:42.1022432Z 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:46:42.1029400Z 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:46:42.1035188Z 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:46:42.1041312Z 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:46:42.1047329Z 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:46:42.1053383Z 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:46:42.1059282Z 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:46:42.1065019Z 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:46:42.1071288Z 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:46:42.1077076Z 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:46:42.1083031Z 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:46:42.1089225Z 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:46:42.1095132Z 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:46:42.1101296Z 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:46:42.1107398Z 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:46:42.1113363Z 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:46:42.1119792Z 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:46:42.1125858Z 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:46:42.1131903Z 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:46:42.1138066Z 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:46:42.1144094Z 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:46:42.1150471Z 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:46:42.1156842Z 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:46:42.1163159Z 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:46:42.1169745Z 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:46:42.1175815Z 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:46:42.1182099Z 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:46:42.1189120Z 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:46:42.1195499Z 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:46:42.1201904Z 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:46:42.1208629Z 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:46:42.1214695Z 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:46:42.1221648Z 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:46:42.1227341Z 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:46:42.1234155Z 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:46:42.1240009Z 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:46:42.1246999Z 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:46:42.1253351Z 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:46:42.1259866Z 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:46:42.1266266Z 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:46:42.1272737Z 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:46:42.1278971Z 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:46:42.1290185Z 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:46:42.1296638Z 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:46:42.1303119Z 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:46:42.1309866Z 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:46:42.1316186Z 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:46:42.1322291Z 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:46:42.1328863Z 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:46:42.1335437Z 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:46:42.1346622Z 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:46:42.1353412Z 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:46:42.1359785Z 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:46:42.1366056Z 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:46:42.1372328Z 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:46:42.1379175Z 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:46:42.1385926Z 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:46:42.1455086Z 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:46:42.1461011Z 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:46:42.1467609Z 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:46:42.1474114Z 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:46:42.1480969Z 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:46:42.1487061Z 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:46:42.1492929Z 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:46:42.1499023Z 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:46:42.1505195Z 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:46:42.1512021Z 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:46:42.1518335Z 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:46:42.1524836Z 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:46:42.1531018Z 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:46:42.1537356Z 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:46:42.1543796Z 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:46:42.1550307Z 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:46:42.1556545Z 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:46:42.1562520Z 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:46:42.1570166Z 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:46:42.1575926Z 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:46:42.1582523Z 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:46:42.1588884Z 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:46:42.1595482Z 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:46:42.1601783Z 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:46:42.1607644Z 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:46:42.1614030Z 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:46:42.1620073Z 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:46:42.1626442Z 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:46:42.1632789Z 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:46:42.1639090Z 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:46:42.1645567Z 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:46:42.1652080Z 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:46:42.1658220Z 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:46:42.1665057Z 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:46:42.1671662Z 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:46:42.1677669Z 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:46:42.1683891Z 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:46:42.1689812Z 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:46:42.1695950Z 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:46:42.1702550Z 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:46:42.1709015Z 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:46:42.1715039Z 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:46:42.1721292Z 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:46:42.1728323Z 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:46:42.1734987Z 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:46:42.1741946Z 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:46:42.1748036Z 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:46:42.1754869Z 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:46:42.1761389Z 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:46:42.1767753Z 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:46:42.1774282Z 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:46:42.1780968Z 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:46:42.1787443Z 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:46:42.1794874Z 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:46:42.1800810Z 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:46:42.1839061Z 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:46:42.1875858Z 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:46:42.1883035Z 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:46:42.1889250Z 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:46:42.1895652Z 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:46:42.1902657Z 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:46:42.1909035Z 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:46:42.1915962Z 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:46:42.1922503Z 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:46:42.1929144Z 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:46:42.1935580Z 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:46:42.1941834Z 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:46:42.1948135Z 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:46:42.1954420Z 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:46:42.1960815Z 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:46:42.1966935Z 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:46:42.1973363Z 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:46:42.1979640Z 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:46:42.1986339Z 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:46:42.1992612Z 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:46:42.1999058Z 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:46:42.2005444Z 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:46:42.2011998Z 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:46:42.2018479Z 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:46:42.2025014Z 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:46:42.2031818Z 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:46:42.2038655Z 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:46:42.2044879Z 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:46:42.2051371Z 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:46:42.2057448Z 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:46:42.2063994Z 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:46:42.2070676Z 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:46:42.2077199Z 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:46:42.2083613Z 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:46:42.2090260Z 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:46:42.2097100Z 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:46:42.2103507Z 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:46:42.2110298Z 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:46:42.2116522Z 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:46:42.2122844Z 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:46:42.2129140Z 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:46:42.2135404Z 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:46:42.2142465Z 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:46:42.2149280Z 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:46:42.2155469Z 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:46:42.2161849Z 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:46:42.2168143Z 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:46:42.2174764Z 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:46:42.2180925Z 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:46:42.2187635Z 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:46:42.2193589Z 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:46:42.2200035Z 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:46:42.2206788Z 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:46:42.2213175Z 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:46:42.2219522Z 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:46:42.2225792Z 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:46:42.2232522Z 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:46:42.2239395Z 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:46:42.2246624Z 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:46:42.2253553Z 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:46:42.2259981Z 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:46:42.2266200Z 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:46:42.2272768Z 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:46:42.2279534Z 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:46:42.2287059Z 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:46:42.2293233Z 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:46:42.2299493Z 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:46:42.2306580Z 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:46:42.2312909Z 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:46:42.2320019Z 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:46:42.2327298Z 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:46:42.2334290Z 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:46:42.2340516Z 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:46:42.2346851Z 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:46:42.2353684Z 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:46:42.2360919Z 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:46:42.2367959Z 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:46:42.2374473Z 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:46:42.2381136Z 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:46:42.2387602Z 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:46:42.2394150Z 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:46:42.2400541Z 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:46:42.2406865Z 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:46:42.2413160Z 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:46:42.2419911Z 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:46:42.2426706Z 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:46:42.2433623Z 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:46:42.2440689Z 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:46:42.2448720Z 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:46:42.2458115Z 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:46:42.2465968Z 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:46:42.2473863Z 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:46:42.2481652Z 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:46:42.2489235Z 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:46:42.2496000Z 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:46:42.2502149Z 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:46:42.2508396Z 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:46:42.2514563Z 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:46:42.2521158Z 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:46:42.2527340Z 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:46:42.2533526Z 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:46:42.2545727Z 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:46:42.2549844Z 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:46:42.2555931Z 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:46:42.2562282Z 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:46:42.2568593Z 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:46:42.2575329Z 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:46:42.2581943Z 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:46:42.2588244Z 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:46:42.2594482Z 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:46:42.2600895Z 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:46:42.2607299Z 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:46:42.2613601Z 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:46:42.2619834Z 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:46:42.2626214Z 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:46:42.2632317Z 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:46:42.2638339Z 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:46:42.2644616Z 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:46:42.2650839Z 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:46:42.2656674Z 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:46:42.2662667Z 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:46:42.2668454Z 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:46:42.2673773Z 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:46:42.2680212Z 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:46:42.2686142Z 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:46:42.2693570Z 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:46:42.2699791Z 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:46:42.2705830Z 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:46:42.2712372Z 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:46:42.2718395Z 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:46:42.2724380Z 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:46:42.2730537Z 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:46:42.2736309Z 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:46:42.2742396Z 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:46:42.2748521Z 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:46:42.2755068Z 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:46:42.2761276Z 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:46:42.2767786Z 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:46:42.2773887Z 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:46:42.2779956Z 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:46:42.2786125Z 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:46:42.2792595Z 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:46:42.2798870Z 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:46:42.2805155Z 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:46:42.2811644Z 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:46:42.2817736Z 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:46:42.2823821Z 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:46:42.2829938Z 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:46:42.2836672Z 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:46:42.2843069Z 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:46:42.2849690Z 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:46:42.2856626Z 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:46:42.2862751Z 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:46:42.2869347Z 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:46:42.2875654Z 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:46:42.2882216Z 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:46:42.2888930Z 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:46:42.2895589Z 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:46:42.2901856Z 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:46:42.2908256Z 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:46:42.2914927Z 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:46:42.2921619Z 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:46:42.2928351Z 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:46:42.2935383Z 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:46:42.2942360Z 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:46:42.2949269Z 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:46:42.2956071Z 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:46:42.2962278Z 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:46:42.2968718Z 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:46:42.2975211Z 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:46:42.2981599Z 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:46:42.2987602Z 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:46:42.2994245Z 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:46:42.3000700Z 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:46:42.3006936Z 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:46:42.3013308Z 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:46:42.3027258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3033133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3039166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3044874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3050785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3056175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3061968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3067514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3074092Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-04-25T04:46:42.3077874Z 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:46:42.3083472Z 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:46:42.3089352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3095775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3121413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3135273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3141049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3146741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3152215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3157947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3163480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3169220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3752240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3758059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3764246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3770651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3776537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3783055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3788559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3793560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3800323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3806303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3812485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3819508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3825374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3831417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3837470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3843358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3849563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3855475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3861647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3867497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3886815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3892728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3898288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3903955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3909806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3968221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3969213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-04-25T04:46:42.3969959Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-04-25T04:46:42.3970740Z 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:46:42.3971551Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-04-25T04:46:42.3972345Z 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:46:42.3973587Z 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:46:42.3974641Z 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:46:42.3990242Z 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:46:42.3995782Z 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:46:42.4001761Z 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:46:42.4015179Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-04-25T04:46:42.4020394Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-04-25T04:46:42.4022654Z 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:46:42.4028123Z 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:46:42.4038163Z 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:46:42.4043749Z 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:46:42.4060982Z 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:46:42.4066809Z 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:46:42.4072653Z 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:46:42.4078452Z 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:46:42.4084197Z 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:46:42.4089858Z 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:46:42.4095436Z 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:46:42.4101393Z 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:46:42.4106997Z 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:46:42.4112799Z 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:46:42.4118545Z 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:46:42.4124168Z 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:46:42.4130090Z 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:46:42.4136439Z 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:46:42.4142778Z 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:46:42.4148442Z 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:46:42.4165574Z 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:46:42.4207447Z 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:46:42.4214921Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-04-25T04:46:42.4227177Z 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:46:42.4233309Z 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:46:42.4238812Z 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:46:42.4244954Z 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:46:42.4258415Z 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:46:42.4265509Z 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:46:42.4270108Z 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:46:42.4275818Z 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:46:42.4282330Z 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:46:42.4287387Z 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:46:42.4293217Z 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:46:42.4299075Z 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:46:42.4304823Z 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:46:42.4310690Z 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:46:42.4316509Z 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:46:42.4322349Z 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:46:42.4328020Z 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:46:42.4333712Z 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:46:42.4339356Z 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:46:42.4345162Z 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:46:42.4351166Z 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:46:42.4356525Z 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:46:42.4362181Z 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:46:42.4367586Z 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:46:42.4372921Z 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:46:42.4378505Z 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:46:42.4383792Z 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:46:42.4400653Z 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:46:42.4407063Z 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:46:42.4412891Z 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:46:42.4418602Z 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:46:42.4424474Z 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:46:42.4430261Z 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:46:42.4436554Z 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:46:42.4442607Z 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:46:42.4448544Z 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:46:42.4454305Z 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:46:42.4460630Z 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:46:42.4467095Z 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:46:42.4486925Z 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:46:42.4494530Z 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:46:42.4500844Z 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:46:42.4506722Z 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:46:42.4512590Z 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:46:42.4518854Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-04-25T04:46:42.4522328Z 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:46:42.4528287Z 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:46:42.4534181Z 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:46:42.4540255Z 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:46:42.4557693Z 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:46:42.4564105Z 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:46:42.4569396Z 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:46:42.4574897Z 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:46:42.4580419Z 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:46:42.4586231Z 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:46:42.4592243Z 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:46:42.4597863Z 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:46:42.4653427Z 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:46:42.4659239Z 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:46:42.4665447Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-04-25T04:46:42.4669147Z 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:46:42.4674869Z 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:46:42.4680213Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-04-25T04:46:42.4685894Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-04-25T04:46:42.4689312Z 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:46:42.4695152Z 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:46:42.4700729Z 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:46:42.4706982Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-04-25T04:46:42.4710511Z 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:46:42.4716062Z 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:46:42.4721576Z 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:46:42.4727451Z 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:46:42.4733038Z 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:46:42.4750920Z 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:46:42.4756754Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-04-25T04:46:42.4760234Z 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:46:42.4766202Z 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:46:42.4772081Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-04-25T04:46:42.4775397Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-04-25T04:46:42.4778867Z 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:46:42.4785019Z 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:46:42.4791284Z 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:46:42.4798126Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-04-25T04:46:42.4801603Z 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:46:42.4807307Z 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:46:42.4812798Z 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:46:42.4818365Z 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:46:42.4835705Z 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:46:42.4840960Z 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:46:42.4846715Z 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:46:42.4852515Z 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:46:42.4858341Z 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:46:42.4864180Z 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:46:42.4869913Z 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:46:42.4876129Z 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:46:42.4882069Z 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:46:42.4887846Z 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:46:42.4893914Z 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:46:42.4899557Z 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:46:42.4905828Z 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:46:42.4911910Z 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:46:42.4917841Z 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:46:42.4923848Z 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:46:42.4930053Z 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:46:42.4936011Z 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:46:42.4941945Z 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:46:42.4948181Z 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:46:42.4965334Z 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:46:42.4971046Z 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:46:42.4976646Z 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:46:42.4983313Z 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:46:42.4989536Z 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:46:42.4995401Z 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:46:42.5001002Z 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:46:42.5007358Z 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:46:42.5014451Z 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:46:42.5020264Z 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:46:42.5026185Z 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:46:42.5042833Z 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:46:42.5049112Z 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:46:42.5054829Z 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:46:42.5060580Z 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:46:42.5066412Z 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:46:42.5075916Z 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:46:42.5081776Z 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:46:42.5087709Z 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:46:42.5093731Z 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:46:42.5110898Z 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:46:42.5117165Z 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:46:42.5122799Z 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:46:42.5128412Z 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:46:42.5134269Z 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:46:42.5140097Z 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:46:42.5146463Z 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:46:42.5152439Z 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:46:42.5158257Z 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:46:42.5164098Z 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:46:42.5176283Z 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:46:42.5181923Z 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:46:42.5187557Z 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:46:42.5210740Z 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:46:42.5217577Z 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:46:42.5224377Z 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:46:42.5231159Z 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:46:42.5238779Z 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:46:42.5245243Z 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:46:42.5251049Z 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:46:42.5257088Z 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:46:42.5262881Z 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:46:42.5273533Z 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:46:42.5279736Z 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:46:42.5284894Z 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:46:42.5311691Z 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:46:42.5318402Z 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:46:42.5323945Z 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:46:42.5329823Z 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:46:42.5335361Z 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:46:42.5340751Z 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:46:42.5346141Z 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:46:42.5351801Z 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:46:42.5357115Z 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:46:42.5362468Z 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:46:42.5367893Z 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:46:42.5373553Z 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:46:42.5389670Z 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:46:42.5395517Z 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:46:42.5401304Z 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:46:42.5406925Z 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:46:42.5413501Z 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:46:42.5419931Z 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:46:42.5425555Z 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:46:42.5431525Z 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:46:42.5437282Z 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:46:42.5442730Z 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:46:42.5448984Z 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:46:42.5465496Z 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:46:42.5471840Z 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:46:42.5478471Z 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:46:42.5484265Z 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:46:42.5490483Z 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:46:42.5495684Z 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:46:42.5501369Z 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:46:42.5506945Z 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:46:42.5512825Z 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:46:42.5533050Z 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:46:42.5534317Z 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:46:42.5535444Z 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:46:42.5538183Z 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:46:42.5544282Z 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:46:42.5550703Z 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:46:42.5556371Z 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:46:42.5562459Z 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:46:42.5568882Z 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:46:42.5574986Z 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:46:42.5581067Z 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:46:42.5587795Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-04-25T04:46:42.5604146Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-04-25T04:46:42.5607600Z 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:46:42.5613958Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-04-25T04:46:42.5617372Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-04-25T04:46:42.5620858Z 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:46:42.5626927Z 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:46:42.5632215Z 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:46:42.5637937Z 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:46:42.5653676Z 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:46:42.5659571Z 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:46:42.5665241Z 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:46:42.5671553Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-04-25T04:46:42.5675284Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-04-25T04:46:42.5679042Z 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:46:42.5684856Z 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:46:42.5690479Z 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:46:42.5696443Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-04-25T04:46:42.5700083Z 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:46:42.5706052Z 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:46:42.5712047Z 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:46:42.5718524Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-04-25T04:46:42.5721823Z 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:46:42.5728923Z 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:46:42.5734995Z 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:46:42.5742163Z 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:46:42.5760044Z 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:46:42.5765855Z 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:46:42.5771421Z 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:46:42.5777444Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-04-25T04:46:42.5780975Z 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:46:42.5786636Z 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:46:42.5792591Z 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:46:42.5798807Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-04-25T04:46:42.5812984Z 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:46:42.5819178Z 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:46:42.5825370Z 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:46:42.5841378Z 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:46:42.5847404Z 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:46:42.5853123Z 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:46:42.5859107Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5865659Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5871877Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5878148Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5897891Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5903713Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5909403Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5915083Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5920956Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5926834Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5931905Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5937451Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5943473Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5949787Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5955401Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5961635Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.5968232Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-04-25T04:46:42.5971991Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.5977800Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6040986Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6046508Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6057643Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6063803Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6069813Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6075315Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6080938Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6086641Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6092220Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6097898Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6103620Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6109736Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6115569Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6122113Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6127843Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6133638Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6139285Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6155839Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6161589Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6167443Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6172861Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6178451Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-04-25T04:46:42.6184537Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-04-25T04:46:42.6188028Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6193671Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6200972Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6207577Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6213524Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6219433Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6224667Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6242209Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6249656Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6255284Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6260827Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6266758Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6272836Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6278779Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-04-25T04:46:42.6284825Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-04-25T04:46:42.6288192Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-04-25T04:46:42.6293540Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-04-25T04:46:42.6299518Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-04-25T04:46:42.6305353Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.6310895Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.6316725Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-04-25T04:46:42.6320748Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-04-25T04:46:42.6324119Z 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:46:42.6329728Z 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:46:42.6335342Z 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:46:42.6341885Z 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:46:42.6347800Z 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:46:42.6364066Z 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:46:42.6370222Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-04-25T04:46:42.6374181Z 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:46:42.6380198Z 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:46:42.6386351Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-04-25T04:46:42.6389956Z 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:46:42.6396465Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-04-25T04:46:42.6400052Z 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:46:42.6405849Z 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:46:42.6411413Z 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:46:42.6427810Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-04-25T04:46:42.6432024Z 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:46:42.6437253Z 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:46:42.6442968Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-04-25T04:46:42.6446744Z 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:46:42.6452589Z 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:46:42.6458537Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-04-25T04:46:42.6507333Z 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:46:42.6508212Z 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:46:42.6508792Z 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:46:42.6509048Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-04-25T04:46:42.6509662Z 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:46:42.6510222Z 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:46:42.6510783Z 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:46:42.6511043Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-04-25T04:46:42.6511778Z 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:46:42.6517640Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-04-25T04:46:42.6521210Z 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:46:42.6528508Z 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:46:42.6535836Z 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:46:42.6547364Z 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:46:42.6553826Z 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:46:42.6559881Z 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:46:42.6565466Z 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:46:42.6571099Z 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:46:42.6578244Z 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:46:42.6583992Z 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:46:42.6590324Z 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:46:42.6596023Z 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:46:42.6602039Z 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:46:42.6607968Z 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:46:42.6624505Z 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:46:42.6630569Z 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:46:42.6636592Z 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:46:42.6642375Z 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:46:42.6648496Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-04-25T04:46:42.6652081Z 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:46:42.6658816Z 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:46:42.6664421Z 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:46:42.6670063Z 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:46:42.6675599Z 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:46:42.6692475Z 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:46:42.6699746Z 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:46:42.6705540Z 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:46:42.6711576Z 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:46:42.6717652Z 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:46:42.6723861Z 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:46:42.6729749Z 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:46:42.6736125Z 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:46:42.6743151Z 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:46:42.6753598Z 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:46:42.6770704Z 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:46:42.6776984Z 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:46:42.6783661Z 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:46:42.6790232Z 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:46:42.6795951Z 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:46:42.6801941Z 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:46:42.6808311Z 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:46:42.6813938Z 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:46:42.6820525Z 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:46:42.6826689Z 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:46:42.6834344Z 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:46:42.6840215Z 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:46:42.6857252Z 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:46:42.6863935Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-04-25T04:46:42.6867513Z 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:46:42.6874150Z 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:46:42.6880807Z 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:46:42.6886781Z 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:46:42.6892554Z 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:46:42.6897547Z 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:46:42.6914297Z 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:46:42.6919967Z 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:46:42.6925699Z 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:46:42.6931862Z 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:46:42.6937593Z 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:46:42.6943407Z 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:46:42.6949458Z 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:46:42.6955514Z 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:46:42.6966624Z 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:46:42.6976981Z 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:46:42.6979122Z 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:46:42.6985480Z 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:46:42.6991419Z 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:46:42.6997952Z 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:46:42.7003772Z 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:46:42.7010848Z 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:46:42.7017320Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-04-25T04:46:42.7020997Z 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:46:42.7027019Z 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:46:42.7033070Z 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:46:42.7049509Z 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:46:42.7055332Z 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:46:42.7061724Z 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:46:42.7067329Z 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:46:42.7139283Z 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:46:42.7144853Z 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:46:42.7151274Z 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:46:42.7158522Z 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:46:42.7175999Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-04-25T04:46:42.7179520Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7185322Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7191133Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7207041Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7212691Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7218384Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7229715Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7235276Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7241122Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7246973Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7252797Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7258661Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7263827Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7269553Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7275441Z 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:46:42.7281200Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-04-25T04:46:42.7287085Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.7304128Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-1.8 2025-04-25T04:46:42.7308137Z 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:46:42.7314052Z 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:46:42.7319720Z 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:46:42.7335814Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-04-25T04:46:42.7339565Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-04-25T04:46:42.7343017Z 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:46:42.7351292Z 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:46:42.7362893Z 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:46:42.7368962Z 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:46:42.7375099Z 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:46:42.7391537Z 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:46:42.7397396Z 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:46:42.7403330Z 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:46:42.7410315Z 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:46:42.7417986Z 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:46:42.7423889Z 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:46:42.7429576Z 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:46:42.7435900Z 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:46:42.7441719Z 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:46:42.7447837Z 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:46:42.7471000Z 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:46:42.7472099Z 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:46:42.7473127Z 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:46:42.7474322Z 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:46:42.7479963Z 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:46:42.7485973Z 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:46:42.7506594Z 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:46:42.7512668Z 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:46:42.7519519Z 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:46:42.7526555Z 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:46:42.7532677Z 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:46:42.7538847Z 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:46:42.7544335Z 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:46:42.7550077Z 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:46:42.7556109Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.7562797Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.7569973Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-04-25T04:46:42.7573292Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7579384Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7585225Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7591791Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7597082Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7602630Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7618896Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-04-25T04:46:42.7621906Z 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:46:42.7628407Z 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:46:42.7635072Z 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:46:42.7640740Z 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:46:42.7646361Z 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:46:42.7661713Z 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:46:42.7667674Z 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:46:42.7673882Z 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:46:42.7679498Z 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:46:42.7686584Z 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:46:42.7692457Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-04-25T04:46:42.7696208Z 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:46:42.7701468Z 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:46:42.7707584Z 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:46:42.7713718Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7718978Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7724639Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7730058Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7735749Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7741484Z 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:46:42.7747030Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7752957Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7759678Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7765298Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7770760Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7778015Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7785099Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-04-25T04:46:42.7788612Z 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:46:42.7794729Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7800345Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7806745Z 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:46:42.7812320Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-04-25T04:46:42.7817967Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:42.7826996Z creating build\bdist.win-amd64\wheel\torch\include\THC 2025-04-25T04:46:42.7865030Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCAtomics.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-04-25T04:46:42.7870651Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCDeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-04-25T04:46:42.7876171Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-04-25T04:46:42.7879952Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-04-25T04:46:42.7884511Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-04-25T04:46:42.7887910Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-04-25T04:46:42.7891430Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-04-25T04:46:42.7894827Z 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:46:42.7900142Z 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:46:42.7905683Z 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:46:42.7911179Z 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:46:42.7917138Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-04-25T04:46:42.7920656Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-04-25T04:46:42.7924390Z 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:46:42.7930979Z 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:46:42.7936408Z 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:46:42.7942182Z 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:46:42.7948044Z 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:46:42.7954036Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-04-25T04:46:42.7962660Z 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:46:42.7968322Z 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:46:42.7975401Z 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:46:42.7980892Z 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:46:42.7986875Z 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:46:42.7993447Z 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:46:42.7999177Z 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:46:42.8015830Z 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:46:42.8021576Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-04-25T04:46:42.8025297Z 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:46:42.8035723Z 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:46:42.8041576Z 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:46:42.8047241Z 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:46:42.8052991Z 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:46:42.8059255Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-04-25T04:46:42.8063123Z 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:46:42.8069049Z 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:46:42.8074379Z 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:46:42.8079917Z 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:46:42.8085425Z 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:46:42.8104275Z 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:46:42.8109968Z 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:46:42.8115528Z 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:46:42.8121192Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-04-25T04:46:42.8124800Z 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:46:42.8130486Z 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:46:42.8136242Z 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:46:42.8141733Z 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:46:42.8147155Z 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:46:42.8156733Z 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:46:42.8162234Z 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:46:42.8167735Z 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:46:42.8173187Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-04-25T04:46:42.8176704Z 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:46:42.8182406Z 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:46:42.8187898Z 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:46:42.8203199Z 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:46:42.8208816Z 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:46:42.8214484Z 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:46:42.8219948Z 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:46:42.8225399Z 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:46:42.8231089Z 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:46:42.8237450Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-04-25T04:46:42.8240422Z 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:46:42.8246414Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-04-25T04:46:42.8250111Z 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:46:42.8256419Z 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:46:42.8262451Z 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:46:42.8268085Z 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:46:42.8283363Z 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:46:42.8288931Z 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:46:42.8295136Z 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:46:42.8300784Z 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:46:42.8306406Z 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:46:42.8312023Z 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:46:42.8318219Z 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:46:42.8323800Z 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:46:42.8329582Z 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:46:42.8339157Z 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:46:42.8344946Z 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:46:42.8350760Z 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:46:42.8356646Z 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:46:42.8362000Z 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:46:42.8378368Z 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:46:42.8384961Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-04-25T04:46:42.8388721Z 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:46:42.8395047Z 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:46:42.8400552Z 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:46:42.8406410Z 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:46:42.8412357Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-04-25T04:46:42.8426003Z 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:46:42.8431975Z 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:46:42.8437614Z 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:46:42.8443305Z 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:46:42.8459199Z 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:46:42.8464884Z 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:46:42.8474612Z 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:46:42.8480420Z 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:46:42.8486412Z 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:46:42.8492455Z 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:46:42.8498164Z 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:46:42.8504230Z 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:46:42.8509838Z 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:46:42.8515454Z 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:46:42.8521117Z 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:46:42.8526767Z 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:46:42.8532354Z 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:46:42.8538266Z 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:46:42.8544478Z 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:46:42.8550377Z 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:46:42.8556099Z 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:46:42.8561708Z 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:46:42.8567877Z 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:46:42.8588217Z 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:46:42.8589704Z 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:46:42.8591209Z 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:46:42.8610019Z 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:46:42.8611448Z 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:46:42.8612973Z 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:46:42.8614400Z 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:46:42.8619425Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-04-25T04:46:42.8623243Z 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:46:42.8630039Z 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:46:42.8636232Z 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:46:42.8641975Z 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:46:42.8647791Z 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:46:42.8663411Z 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:46:42.8669516Z 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:46:42.8675335Z 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:46:42.8681305Z 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:46:42.8687128Z 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:46:42.8692747Z 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:46:42.8699057Z 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:46:42.8704898Z 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:46:42.8710787Z 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:46:42.8716600Z 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:46:42.8722756Z 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:46:42.8729573Z 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:46:42.8735848Z 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:46:42.8746291Z 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:46:42.8752279Z 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:46:42.8758103Z 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:46:42.8764539Z 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:46:42.8770755Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-04-25T04:46:42.8774602Z 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:46:42.8780697Z 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:46:42.8786657Z 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:46:42.8792934Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-04-25T04:46:42.8796983Z 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:46:42.8802911Z 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:46:42.8809090Z 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:46:42.8823305Z 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:46:42.8829696Z 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:46:42.8835335Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-04-25T04:46:42.8838841Z 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:46:42.8844693Z 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:46:42.8850219Z 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:46:42.8855789Z 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:46:42.8861360Z 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:46:42.8867616Z 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:46:42.8883552Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-04-25T04:46:42.8887363Z 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:46:42.8893811Z 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:46:42.8899335Z 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:46:42.8914385Z 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:46:42.8920088Z 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:46:42.8925622Z 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:46:42.8931056Z 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:46:42.8937610Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-04-25T04:46:42.8941579Z 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:46:42.8947004Z 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:46:42.8953130Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-04-25T04:46:42.8957385Z 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:46:42.8962266Z 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:46:42.8967776Z 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:46:42.9017840Z 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:46:42.9019200Z 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:46:42.9020474Z 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:46:42.9021831Z 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:46:42.9023230Z 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:46:42.9024462Z 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:46:42.9025681Z 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:46:42.9027783Z 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:46:42.9033520Z 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:46:42.9040596Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-04-25T04:46:42.9044357Z 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:46:42.9050180Z 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:46:42.9055979Z 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:46:42.9061582Z 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:46:42.9077569Z 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:46:42.9083917Z 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:46:42.9089421Z 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:46:42.9095070Z 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:46:42.9101002Z 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:46:42.9106863Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-04-25T04:46:42.9110701Z 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:46:42.9116512Z 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:46:42.9122168Z 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:46:42.9127684Z 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:46:42.9143361Z 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:46:42.9149442Z 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:46:42.9154982Z 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:46:42.9161296Z 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:46:42.9167299Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-04-25T04:46:42.9170929Z 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:46:42.9182804Z 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:46:42.9188654Z 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:46:42.9203912Z 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:46:42.9209579Z 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:46:42.9216639Z 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:46:42.9222927Z 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:46:42.9228473Z 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:46:42.9234233Z 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:46:42.9239676Z 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:46:42.9245369Z 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:46:42.9251232Z 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:46:42.9257221Z 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:46:42.9262605Z 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:46:42.9268853Z 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:46:42.9286392Z 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:46:42.9291927Z 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:46:42.9297632Z 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:46:42.9303260Z 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:46:42.9309040Z 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:46:42.9314814Z 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:46:42.9320660Z 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:46:42.9326490Z 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:46:42.9332283Z 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:46:42.9348044Z 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:46:42.9353666Z 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:46:42.9359160Z 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:46:42.9364587Z 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:46:42.9370216Z 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:46:42.9376201Z 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:46:42.9382040Z 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:46:42.9387737Z 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:46:42.9393877Z 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:46:42.9410218Z 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:46:42.9416229Z 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:46:42.9422047Z 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:46:42.9428040Z 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:46:42.9433808Z 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:46:42.9439988Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-04-25T04:46:42.9443699Z 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:46:42.9449900Z 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:46:42.9455502Z 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:46:42.9461195Z 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:46:42.9479524Z 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:46:42.9485117Z 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:46:42.9491416Z 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:46:42.9498447Z 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:46:42.9504652Z 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:46:42.9512191Z 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:46:42.9518906Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-04-25T04:46:42.9522637Z 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:46:42.9528316Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-04-25T04:46:42.9533107Z 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:46:42.9572758Z 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:46:42.9578571Z 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:46:42.9584016Z 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:46:42.9589599Z 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:46:42.9599601Z 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:46:42.9609553Z 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:46:42.9614892Z 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:46:42.9621187Z 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:46:42.9626182Z 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:46:42.9632171Z 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:46:42.9637744Z 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:46:42.9643249Z 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:46:42.9659950Z 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:46:42.9664922Z 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:46:42.9670465Z 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:46:42.9677460Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-04-25T04:46:42.9680579Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-04-25T04:46:42.9684259Z 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:46:42.9690540Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-04-25T04:46:42.9694177Z 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:46:42.9700583Z 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:46:42.9706788Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-04-25T04:46:42.9710425Z 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:46:42.9718491Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-04-25T04:46:42.9722070Z 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:46:42.9728094Z 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:46:42.9733929Z 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:46:42.9749623Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-04-25T04:46:42.9754046Z 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:46:42.9759986Z 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:46:42.9766290Z 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:46:42.9781737Z 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:46:42.9788669Z 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:46:42.9795618Z 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:46:42.9801518Z 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:46:42.9807637Z 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:46:42.9813693Z 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:46:42.9840463Z 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:46:42.9846258Z 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:46:42.9852601Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-04-25T04:46:42.9856399Z 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:46:42.9873604Z 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:46:42.9875052Z 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:46:42.9877938Z 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:46:42.9884121Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-04-25T04:46:42.9888977Z 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:46:42.9894848Z 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:46:42.9900682Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-04-25T04:46:42.9914246Z 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:46:42.9920213Z 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:46:42.9926001Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-04-25T04:46:42.9929825Z 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:46:42.9935947Z 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:46:42.9941831Z 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:46:42.9948176Z 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:46:42.9953559Z 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:46:42.9959450Z 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:46:42.9965214Z 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:46:42.9971903Z 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:46:42.9978167Z 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:46:42.9982848Z 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:46:42.9989076Z 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:46:42.9995614Z 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:46:43.0004978Z 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:46:43.0011900Z 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:46:43.0016357Z 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:46:43.0022176Z 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:46:43.0037716Z 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:46:43.0043534Z 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:46:43.0049514Z 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:46:43.0054789Z 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:46:43.0060680Z 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:46:43.0066864Z 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:46:43.0072715Z 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:46:43.0079316Z 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:46:43.0085683Z 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:46:43.0091654Z 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:46:43.0099208Z 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:46:43.0115361Z 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:46:43.0121912Z 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:46:43.0128190Z 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:46:43.0138545Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-04-25T04:46:43.0142298Z 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:46:43.0147932Z 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:46:43.0153690Z 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:46:43.0168777Z 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:46:43.0174731Z 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:46:43.0180964Z 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:46:43.0187006Z 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:46:43.0193324Z 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:46:43.0199296Z 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:46:43.0214562Z 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:46:43.0220211Z 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:46:43.0226668Z 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:46:43.0232281Z 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:46:43.0237961Z 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:46:43.0244024Z 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:46:43.0249819Z 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:46:43.0255814Z 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:46:43.0261544Z 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:46:43.0267065Z 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:46:43.0273344Z 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:46:43.0288691Z 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:46:43.0295262Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-04-25T04:46:43.0299042Z 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:46:43.0304884Z 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:46:43.0311290Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-04-25T04:46:43.0315052Z 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:46:43.0321710Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-04-25T04:46:43.0325361Z 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:46:43.0331231Z 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:46:43.0336873Z 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:46:43.0353227Z 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:46:43.0359524Z 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:46:43.0365505Z 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:46:43.0371565Z 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:46:43.0381908Z 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:46:43.0388493Z 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:46:43.0394465Z 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:46:43.0404790Z 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:46:43.0410708Z 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:46:43.0416415Z 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:46:43.0422268Z 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:46:43.0428208Z 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:46:43.0438458Z 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:46:43.0445167Z 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:46:43.0451054Z 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:46:43.0456921Z 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:46:43.0472893Z 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:46:43.0479333Z 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:46:43.0486383Z 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:46:43.0492854Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-04-25T04:46:43.0496988Z 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:46:43.0504208Z 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:46:43.0508803Z 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:46:43.0515388Z 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:46:43.0520587Z 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:46:43.0526827Z 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:46:43.0536709Z 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:46:43.0542684Z 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:46:43.0548340Z 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:46:43.0554705Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-04-25T04:46:43.0558197Z 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:46:43.0564030Z 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:46:43.0570807Z 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:46:43.0576173Z 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:46:43.0592279Z 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:46:43.0597667Z 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:46:43.0603078Z 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:46:43.0608448Z 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:46:43.0613646Z 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:46:43.0619138Z 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:46:43.0624782Z 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:46:43.0630796Z 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:46:43.0636483Z 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:46:43.0641821Z 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:46:43.0647142Z 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:46:43.0652321Z 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:46:43.0659333Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-04-25T04:46:43.0662628Z 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:46:43.0673756Z 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:46:43.0679287Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-04-25T04:46:43.0682812Z 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:46:43.0688391Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-04-25T04:46:43.0691859Z 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:46:43.0697397Z 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:46:43.0703577Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-04-25T04:46:43.0707045Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-04-25T04:46:43.0710805Z 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:46:43.0716862Z 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:46:43.0722725Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-04-25T04:46:43.0726271Z 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:46:43.0731941Z 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:46:43.0737158Z 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:46:43.0742338Z 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:46:43.0747490Z 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:46:43.0763018Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-04-25T04:46:43.0766700Z 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:46:43.0772366Z 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:46:43.0777786Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-04-25T04:46:43.0792517Z 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:46:43.0798469Z 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:46:43.0804093Z 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:46:43.0820531Z 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:46:43.0826614Z 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:46:43.0832621Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-04-25T04:46:43.0836714Z 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:46:43.0842543Z 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:46:43.0847940Z 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:46:43.0866751Z 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:46:43.0872767Z 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:46:43.0878471Z 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:46:43.0884784Z 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:46:43.0891155Z 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:46:43.0896970Z 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:46:43.0902931Z 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:46:43.0908786Z 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:46:43.0914827Z 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:46:43.0921180Z 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:46:43.0927236Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-04-25T04:46:43.0931043Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-04-25T04:46:43.0934550Z 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:46:43.0941747Z 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:46:43.0947023Z 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:46:43.0953584Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-04-25T04:46:43.0956544Z 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:46:43.0963189Z 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:46:43.0969541Z 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:46:43.0985714Z 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:46:43.0991819Z 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:46:43.1007333Z 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:46:43.1012904Z 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:46:43.1018550Z 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:46:43.1024374Z 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:46:43.1030447Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-04-25T04:46:43.1034370Z 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:46:43.1039780Z 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:46:43.1045537Z 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:46:43.1050545Z 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:46:43.1102426Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-04-25T04:46:43.1115812Z 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:46:43.1121171Z 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:46:43.1126460Z 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:46:43.1131689Z 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:46:43.1136899Z 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:46:43.1142495Z 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:46:43.1148901Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-04-25T04:46:43.1158588Z 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:46:43.1159308Z 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:46:43.1164732Z 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:46:43.1170475Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-04-25T04:46:43.1173895Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-04-25T04:46:43.1177375Z 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:46:43.1183212Z 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:46:43.1188791Z 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:46:43.1194160Z 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:46:43.1200376Z 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:46:43.1215821Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-04-25T04:46:43.1219525Z 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:46:43.1225231Z 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:46:43.1231023Z 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:46:43.1236616Z 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:46:43.1252350Z 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:46:43.1257920Z 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:46:43.1263481Z 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:46:43.1269121Z 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:46:43.1274584Z 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:46:43.1280496Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-04-25T04:46:43.1284033Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-04-25T04:46:43.1287702Z 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:46:43.1293234Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-04-25T04:46:43.1297058Z 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:46:43.1302626Z 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:46:43.1308314Z 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:46:43.1324678Z 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:46:43.1330656Z 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:46:43.1370155Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-04-25T04:46:43.1374315Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-04-25T04:46:43.1377869Z 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:46:43.1383670Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-04-25T04:46:43.1387529Z 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:46:43.1393772Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-04-25T04:46:43.1397232Z 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:46:43.1402993Z 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:46:43.1409056Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-04-25T04:46:43.1412548Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-04-25T04:46:43.1416415Z 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:46:43.1422445Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-04-25T04:46:43.1425676Z 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:46:43.1432812Z 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:46:43.1439302Z 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:46:43.1445466Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-04-25T04:46:43.1448719Z 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:46:43.1454351Z 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:46:43.1459962Z 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:46:43.1465784Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-04-25T04:46:43.1469745Z 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:46:43.1501918Z 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:46:43.1502511Z 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:46:43.1503075Z 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:46:43.1503759Z 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:46:43.1505655Z 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:46:43.1511728Z 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:46:43.1517579Z 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:46:43.1523438Z 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:46:43.1529258Z 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:46:43.1535099Z 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:46:43.1541052Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-04-25T04:46:43.1544679Z 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:46:43.1550317Z 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:46:43.1555624Z 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:46:43.1561379Z 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:46:43.1577357Z 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:46:43.1582627Z 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:46:43.1589099Z 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:46:43.1594738Z 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:46:43.1600307Z 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:46:43.1605841Z 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:46:43.1611269Z 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:46:43.1616796Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-04-25T04:46:43.1620436Z 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:46:43.1626403Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-04-25T04:46:43.1630073Z 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:46:43.1635459Z 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:46:43.1640621Z 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:46:43.1656551Z 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:46:43.1662358Z 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:46:43.1668034Z 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:46:43.1673875Z 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:46:43.1679705Z 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:46:43.1685291Z 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:46:43.1690667Z 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:46:43.1696185Z 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:46:43.1702463Z 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:46:43.1707994Z 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:46:43.1713625Z 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:46:43.1719300Z 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:46:43.1724736Z 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:46:43.1730717Z 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:46:43.1736213Z 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:46:43.1742408Z 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:46:43.1748632Z 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:46:43.1764135Z 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:46:43.1770079Z 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:46:43.1776237Z 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:46:43.1781857Z 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:46:43.1788752Z 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:46:43.1795016Z 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:46:43.1801829Z 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:46:43.1808258Z 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:46:43.1814630Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-04-25T04:46:43.1818576Z 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:46:43.1824195Z 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:46:43.1831380Z 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:46:43.1837250Z 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:46:43.1853468Z 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:46:43.1858939Z 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:46:43.1865818Z 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:46:43.1871559Z 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:46:43.1877266Z 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:46:43.1883452Z 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:46:43.1889058Z 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:46:43.1894823Z 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:46:43.1900561Z 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:46:43.1906174Z 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:46:43.1912076Z 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:46:43.1928573Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-04-25T04:46:43.1932151Z 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:46:43.1943128Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-04-25T04:46:43.1946544Z 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:46:43.1952315Z 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:46:43.1958111Z 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:46:43.1973860Z 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:46:43.1998000Z 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:46:43.1999200Z 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:46:43.2001903Z 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:46:43.2007959Z 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:46:43.2013891Z 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:46:43.2019563Z 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:46:43.2024960Z 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:46:43.2031144Z 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:46:43.2036756Z 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:46:43.2042283Z 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:46:43.2048061Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-04-25T04:46:43.2051971Z 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:46:43.2057647Z 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:46:43.2063510Z 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:46:43.2079359Z 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:46:43.2085870Z 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:46:43.2091831Z 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:46:43.2097233Z 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:46:43.2103123Z 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:46:43.2109082Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-04-25T04:46:43.2112620Z 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:46:43.2118281Z 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:46:43.2123940Z 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:46:43.2129489Z 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:46:43.2135311Z 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:46:43.2140918Z 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:46:43.2146791Z 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:46:43.2152521Z 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:46:43.2158197Z 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:46:43.2163805Z 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:46:43.2169672Z 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:46:43.2185628Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-04-25T04:46:43.2189287Z 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:46:43.2195133Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-04-25T04:46:43.2198593Z 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:46:43.2204154Z 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:46:43.2209817Z 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:46:43.2215344Z 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:46:43.2221452Z 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:46:43.2227480Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-04-25T04:46:43.2231496Z 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:46:43.2237147Z 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:46:43.2242657Z 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:46:43.2248426Z 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:46:43.2264655Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-04-25T04:46:43.2268302Z 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:46:43.2273916Z 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:46:43.2279602Z 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:46:43.2284866Z 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:46:43.2300559Z 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:46:43.2306078Z 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:46:43.2312229Z 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:46:43.2318379Z 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:46:43.2323915Z 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:46:43.2329582Z 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:46:43.2335595Z 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:46:43.2341442Z 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:46:43.2346816Z 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:46:43.2352713Z 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:46:43.2359156Z 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:46:43.2365235Z 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:46:43.2371376Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-04-25T04:46:43.2375213Z 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:46:43.2380927Z 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:46:43.2387104Z 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:46:43.2402466Z 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:46:43.2408250Z 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:46:43.2413997Z 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:46:43.2420177Z 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:46:43.2426087Z 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:46:43.2432193Z 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:46:43.2441981Z 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:46:43.2448089Z 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:46:43.2453998Z 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:46:43.2470343Z 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:46:43.2476617Z 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:46:43.2506376Z 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:46:43.2507670Z 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:46:43.2509024Z 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:46:43.2510430Z 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:46:43.2511761Z 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:46:43.2514417Z 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:46:43.2520436Z 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:46:43.2537137Z 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:46:43.2543464Z 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:46:43.2549589Z 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:46:43.2555059Z 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:46:43.2561303Z 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:46:43.2566889Z 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:46:43.2572772Z 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:46:43.2578514Z 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:46:43.2584944Z 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:46:43.2599921Z 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:46:43.2640453Z 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:46:43.2646432Z 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:46:43.2651861Z 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:46:43.2657933Z 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:46:43.2663473Z 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:46:43.2669461Z 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:46:43.2675417Z 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:46:43.2681426Z 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:46:43.2687677Z 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:46:43.2693316Z 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:46:43.2718417Z 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:46:43.2724967Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-04-25T04:46:43.2728893Z 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:46:43.2734442Z 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:46:43.2740385Z 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:46:43.2746176Z 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:46:43.2760986Z 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:46:43.2766483Z 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:46:43.2772010Z 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:46:43.2777569Z 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:46:43.2783410Z 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:46:43.2789002Z 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:46:43.2794738Z 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:46:43.2800630Z 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:46:43.2806186Z 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:46:43.2811971Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-04-25T04:46:43.2815871Z 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:46:43.2821191Z 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:46:43.2826886Z 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:46:43.2843222Z 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:46:43.2848735Z 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:46:43.2854017Z 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:46:43.2859748Z 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:46:43.2865519Z 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:46:43.2871217Z 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:46:43.2876656Z 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:46:43.2892021Z 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:46:43.2897618Z 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:46:43.2903298Z 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:46:43.2909704Z 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:46:43.2914812Z 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:46:43.2920547Z 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:46:43.2926227Z 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:46:43.2932215Z 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:46:43.2937881Z 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:46:43.2953772Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-04-25T04:46:43.2957495Z 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:46:43.2963096Z 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:46:43.2968550Z 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:46:43.2974329Z 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:46:43.2989833Z 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:46:43.2996277Z 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:46:43.3002343Z 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:46:43.3009367Z 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:46:43.3015410Z 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:46:43.3021173Z 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:46:43.3026884Z 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:46:43.3033923Z 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:46:43.3040182Z 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:46:43.3046375Z 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:46:43.3052285Z 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:46:43.3058880Z 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:46:43.3064851Z 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:46:43.3080474Z 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:46:43.3086212Z 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:46:43.3092165Z 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:46:43.3131504Z 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:46:43.3136792Z 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:46:43.3142944Z 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:46:43.3149707Z 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:46:43.3155620Z 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:46:43.3161529Z 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:46:43.3168085Z 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:46:43.3174470Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-04-25T04:46:43.3178254Z 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:46:43.3183856Z 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:46:43.3189987Z 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:46:43.3200185Z 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:46:43.3206649Z 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:46:43.3212557Z 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:46:43.3218674Z 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:46:43.3225006Z 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:46:43.3231044Z 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:46:43.3237791Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-04-25T04:46:43.3241280Z 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:46:43.3246757Z 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:46:43.3252560Z 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:46:43.3258377Z 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:46:43.3265172Z 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:46:43.3280688Z 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:46:43.3286850Z 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:46:43.3292697Z 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:46:43.3298695Z 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:46:43.3304886Z 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:46:43.3311042Z 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:46:43.3317154Z 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:46:43.3323240Z 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:46:43.3329076Z 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:46:43.3335222Z 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:46:43.3341359Z 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:46:43.3348053Z 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:46:43.3354494Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-04-25T04:46:43.3358913Z 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:46:43.3365953Z 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:46:43.3371505Z 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:46:43.3377250Z 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:46:43.3393395Z 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:46:43.3399372Z 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:46:43.3405073Z 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:46:43.3410933Z 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:46:43.3417460Z 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:46:43.3423713Z 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:46:43.3429566Z 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:46:43.3435739Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-04-25T04:46:43.3439757Z 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:46:43.3445745Z 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:46:43.3452341Z 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:46:43.3458319Z 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:46:43.3474917Z 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:46:43.3480561Z 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:46:43.3486411Z 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:46:43.3509569Z 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:46:43.3510752Z 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:46:43.3511966Z 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:46:43.3513354Z 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:46:43.3517435Z 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:46:43.3534642Z 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:46:43.3539683Z 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:46:43.3546359Z 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:46:43.3552581Z 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:46:43.3558171Z 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:46:43.3564082Z 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:46:43.3569862Z 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:46:43.3576371Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-04-25T04:46:43.3579978Z 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:46:43.3585537Z 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:46:43.3592943Z 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:46:43.3597619Z 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:46:43.3603283Z 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:46:43.3608840Z 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:46:43.3624967Z 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:46:43.3631089Z 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:46:43.3636963Z 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:46:43.3643456Z 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:46:43.3648907Z 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:46:43.3663970Z 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:46:43.3669901Z 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:46:43.3675604Z 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:46:43.3681304Z 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:46:43.3687517Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-04-25T04:46:43.3691508Z 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:46:43.3697281Z 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:46:43.3703429Z 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:46:43.3719384Z 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:46:43.3725401Z 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:46:43.3730671Z 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:46:43.3736479Z 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:46:43.3742055Z 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:46:43.3747458Z 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:46:43.3753545Z 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:46:43.3800654Z 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:46:43.3807355Z 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:46:43.3814394Z 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:46:43.3820163Z 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:46:43.3825902Z 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:46:43.3832239Z 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:46:43.3838078Z 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:46:43.3844059Z 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:46:43.3850142Z 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:46:43.3856003Z 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:46:43.3871723Z 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:46:43.3878459Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-04-25T04:46:43.3882493Z 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:46:43.3888368Z 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:46:43.3894235Z 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:46:43.3900103Z 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:46:43.3915526Z 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:46:43.3921958Z 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:46:43.3927891Z 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:46:43.3933634Z 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:46:43.3939535Z 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:46:43.3945309Z 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:46:43.3951350Z 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:46:43.3957135Z 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:46:43.3963015Z 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:46:43.3968907Z 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:46:43.3975036Z 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:46:43.3980858Z 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:46:43.3986956Z 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:46:43.3993583Z 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:46:43.4000064Z 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:46:43.4006415Z 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:46:43.4012417Z 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:46:43.4028385Z 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:46:43.4034609Z 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:46:43.4041017Z 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:46:43.4046764Z 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:46:43.4052844Z 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:46:43.4058902Z 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:46:43.4064685Z 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:46:43.4070458Z 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:46:43.4076309Z 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:46:43.4082139Z 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:46:43.4088429Z 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:46:43.4103991Z 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:46:43.4110290Z 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:46:43.4116699Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-04-25T04:46:43.4120499Z 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:46:43.4125965Z 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:46:43.4131147Z 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:46:43.4137235Z 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:46:43.4142524Z 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:46:43.4158427Z 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:46:43.4169245Z 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:46:43.4179418Z 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:46:43.4185377Z 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:46:43.4191297Z 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:46:43.4197332Z 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:46:43.4203324Z 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:46:43.4210041Z 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:46:43.4215960Z 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:46:43.4221605Z 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:46:43.4227584Z 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:46:43.4239280Z 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:46:43.4245817Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-04-25T04:46:43.4249624Z 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:46:43.4255335Z 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:46:43.4261268Z 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:46:43.4267257Z 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:46:43.4273328Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-04-25T04:46:43.4277089Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-04-25T04:46:43.4280583Z 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:46:43.4286605Z 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:46:43.4292556Z 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:46:43.4298791Z 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:46:43.4315658Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-04-25T04:46:43.4319167Z 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:46:43.4324884Z 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:46:43.4330986Z 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:46:43.4336681Z 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:46:43.4342454Z 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:46:43.4357759Z 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:46:43.4364146Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-04-25T04:46:43.4368284Z 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:46:43.4373387Z 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:46:43.4379534Z 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:46:43.4385285Z 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:46:43.4391057Z 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:46:43.4396723Z 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:46:43.4402792Z 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:46:43.4408765Z 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:46:43.4414716Z 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:46:43.4420937Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-04-25T04:46:43.4424370Z 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:46:43.4430288Z 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:46:43.4436069Z 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:46:43.4447813Z 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:46:43.4448991Z 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:46:43.4453448Z 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:46:43.4459097Z 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:46:43.4469482Z 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:46:43.4475296Z 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:46:43.4481285Z 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:46:43.4487232Z 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:46:43.4502911Z 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:46:43.4509069Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-04-25T04:46:43.4512636Z 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:46:43.4521665Z 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:46:43.4528027Z 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:46:43.4534088Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-04-25T04:46:43.4537542Z 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:46:43.4542891Z 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:46:43.4548770Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-04-25T04:46:43.4562128Z 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:46:43.4567532Z 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:46:43.4573664Z 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:46:43.4579405Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-04-25T04:46:43.4593970Z 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:46:43.4600075Z 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:46:43.4605805Z 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:46:43.4612588Z 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:46:43.4618423Z 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:46:43.4624655Z 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:46:43.4631003Z 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:46:43.4643742Z 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:46:43.4644999Z 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:46:43.4649623Z 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:46:43.4655390Z 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:46:43.4672379Z 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:46:43.4677987Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-04-25T04:46:43.4681277Z 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:46:43.4687489Z 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:46:43.4693237Z 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:46:43.4703153Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-04-25T04:46:43.4706690Z 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:46:43.4713101Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-04-25T04:46:43.4716456Z 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:46:43.4722455Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-04-25T04:46:43.4726195Z 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:46:43.4732388Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-04-25T04:46:43.4735901Z 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:46:43.4741487Z 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:46:43.4747260Z 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:46:43.4754131Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-04-25T04:46:43.4756897Z 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:46:43.4762432Z 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:46:43.4768715Z 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:46:43.4774261Z 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:46:43.4790767Z 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:46:43.4796592Z 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:46:43.4802258Z 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:46:43.4807991Z 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:46:43.4813872Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-04-25T04:46:43.4817483Z 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:46:43.4823280Z 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:46:43.4829681Z 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:46:43.4835430Z 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:46:43.4840523Z 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:46:43.4847330Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-04-25T04:46:43.4850603Z 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:46:43.4856579Z 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:46:43.4862317Z 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:46:43.4902637Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-04-25T04:46:43.4906809Z 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:46:43.4912374Z 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:46:43.4917961Z 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:46:43.4927634Z 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:46:43.4933545Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-04-25T04:46:43.4937407Z 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:46:43.4944015Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-04-25T04:46:43.4952304Z 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:46:43.4958288Z 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:46:43.4964090Z 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:46:43.4969897Z 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:46:43.4985283Z 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:46:43.4991842Z 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:46:43.5024564Z 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:46:43.5025825Z 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:46:43.5027041Z 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:46:43.5028398Z 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:46:43.5029810Z 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:46:43.5031178Z 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:46:43.5035407Z 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:46:43.5042349Z 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:46:43.5047363Z 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:46:43.5052476Z 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:46:43.5058311Z 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:46:43.5064249Z 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:46:43.5070123Z 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:46:43.5075896Z 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:46:43.5081893Z 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:46:43.5088425Z 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:46:43.5093012Z 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:46:43.5098597Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-04-25T04:46:43.5112331Z 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:46:43.5119254Z 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:46:43.5124009Z 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:46:43.5129444Z 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:46:43.5135118Z 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:46:43.5140616Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-04-25T04:46:43.5144110Z 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:46:43.5150544Z 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:46:43.5155787Z 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:46:43.5161247Z 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:46:43.5166418Z 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:46:43.5172521Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-04-25T04:46:43.5176266Z 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:46:43.5182174Z 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:46:43.5187452Z 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:46:43.5193010Z 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:46:43.5209462Z 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:46:43.5215070Z 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:46:43.5222566Z 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:46:43.5228723Z 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:46:43.5234385Z 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:46:43.5239763Z 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:46:43.5245222Z 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:46:43.5251039Z 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:46:43.5256379Z 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:46:43.5262285Z 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:46:43.5297782Z 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:46:43.5303273Z 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:46:43.5309858Z 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:46:43.5316266Z 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:46:43.5322424Z 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:46:43.5328143Z 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:46:43.5344715Z 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:46:43.5350561Z 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:46:43.5356382Z 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:46:43.5362268Z 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:46:43.5367996Z 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:46:43.5373974Z 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:46:43.5389748Z 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:46:43.5390277Z 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:46:43.5393438Z 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:46:43.5399274Z 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:46:43.5414729Z 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:46:43.5420888Z 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:46:43.5426942Z 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:46:43.5432982Z 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:46:43.5438641Z 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:46:43.5444641Z 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:46:43.5450302Z 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:46:43.5456374Z 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:46:43.5462610Z 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:46:43.5478344Z 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:46:43.5484444Z 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:46:43.5490492Z 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:46:43.5496362Z 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:46:43.5502698Z 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:46:43.5508890Z 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:46:43.5515321Z 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:46:43.5522377Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-04-25T04:46:43.5526371Z 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:46:43.5532213Z 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:46:43.5537452Z 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:46:43.5544096Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:46:43.5550696Z 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:46:43.5556722Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:46:43.5572652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:46:43.5579198Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-04-25T04:46:43.5586015Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-04-25T04:46:43.5603932Z creating build\bdist.win-amd64\wheel\torch\jit 2025-04-25T04:46:43.5607560Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5613794Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5620230Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5626380Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-04-25T04:46:43.5629869Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-04-25T04:46:43.5639407Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5655089Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5660886Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5666507Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5672389Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5677872Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5683576Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5689193Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5694957Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5700688Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5710908Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5716530Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5722243Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5728177Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5733494Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5739714Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-04-25T04:46:43.5743295Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-04-25T04:46:43.5749244Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-04-25T04:46:43.5753976Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5759452Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5765928Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5772710Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5778997Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5794755Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5800961Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5806734Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5813551Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-04-25T04:46:43.5820917Z creating build\bdist.win-amd64\wheel\torch\lib 2025-04-25T04:46:43.5824372Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5832953Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5839812Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5849837Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5857310Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5876968Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5883464Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5899557Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5914109Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5923443Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5930996Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5937037Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5943879Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:43.5950942Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2309318Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2360575Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2379213Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2397103Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2404991Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2411941Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2745274Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.2798049Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3142388Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3497890Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-04-25T04:46:44.3501762Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:46:44.3507338Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:46:44.3513230Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:46:44.3519082Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-04-25T04:46:44.3524816Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-04-25T04:46:44.3539482Z 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:46:44.3545411Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3578339Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3587678Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3593868Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3598281Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3683104Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3688766Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3694365Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3705389Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.3712004Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.5023940Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.5298311Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7286640Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7308770Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7314721Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7464316Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7473766Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7503738Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-04-25T04:46:44.7509821Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:44.7517360Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-04-25T04:46:44.7520834Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-04-25T04:46:44.7529171Z creating build\bdist.win-amd64\wheel\torch\masked 2025-04-25T04:46:44.7532414Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-04-25T04:46:44.7535904Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7542033Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7548334Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7553776Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7559481Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7577304Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7582986Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7611247Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-04-25T04:46:44.7612158Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-04-25T04:46:44.7612958Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-04-25T04:46:44.7613846Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-04-25T04:46:44.7617214Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-04-25T04:46:44.7620590Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-04-25T04:46:44.7626551Z creating build\bdist.win-amd64\wheel\torch\mps 2025-04-25T04:46:44.7630193Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-04-25T04:46:44.7636058Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-04-25T04:46:44.7641312Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-04-25T04:46:44.7647198Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-04-25T04:46:44.7650467Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-04-25T04:46:44.7656080Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-04-25T04:46:44.7661448Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-04-25T04:46:44.7667754Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-04-25T04:46:44.7671166Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:46:44.7676919Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:46:44.7682358Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:46:44.7688660Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:46:44.7694416Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:46:44.7711847Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-04-25T04:46:44.7717796Z creating build\bdist.win-amd64\wheel\torch\nested 2025-04-25T04:46:44.7721105Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-04-25T04:46:44.7724473Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:46:44.7730084Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:46:44.7736044Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:46:44.7743150Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:46:44.7778623Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-04-25T04:46:44.7783125Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-04-25T04:46:44.7789594Z creating build\bdist.win-amd64\wheel\torch\nn 2025-04-25T04:46:44.7793031Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-04-25T04:46:44.7796314Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:46:44.7802355Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-04-25T04:46:44.7805850Z 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:46:44.7811687Z 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:46:44.7816843Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:46:44.7823547Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:46:44.7840863Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-04-25T04:46:44.7846569Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-04-25T04:46:44.7849832Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-04-25T04:46:44.7855465Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-04-25T04:46:44.7860953Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.7866849Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.7872675Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.7892127Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.7898742Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.7904603Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.7910803Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-04-25T04:46:44.7914336Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-04-25T04:46:44.7917871Z 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:46:44.7923329Z 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:46:44.7928907Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-04-25T04:46:44.7932647Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-04-25T04:46:44.7936152Z 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:46:44.7941995Z 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:46:44.7947485Z 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:46:44.7953061Z 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:46:44.7969569Z 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:46:44.7975182Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-04-25T04:46:44.7978626Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-04-25T04:46:44.7982184Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-04-25T04:46:44.7986151Z 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:46:44.8026750Z 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:46:44.8032272Z 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:46:44.8037925Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-04-25T04:46:44.8041538Z 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:46:44.8046991Z 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:46:44.8052366Z 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:46:44.8057661Z 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:46:44.8062950Z 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:46:44.8068307Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-04-25T04:46:44.8074511Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-04-25T04:46:44.8077978Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8084612Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8090307Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8097256Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8108396Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8115069Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8121875Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8127420Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8132858Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8138652Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8144183Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8150359Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8156088Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8161630Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8168243Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8175306Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8181046Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8187166Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8193080Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8199608Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8206159Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8212116Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8218599Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8224217Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8229873Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8235523Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-04-25T04:46:44.8241734Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-04-25T04:46:44.8245063Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8250814Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8256638Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8263583Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8280683Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8286373Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8291960Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8297889Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-04-25T04:46:44.8303218Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.8309004Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.8315176Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-04-25T04:46:44.8318663Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-04-25T04:46:44.8322034Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-04-25T04:46:44.8325512Z 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:46:44.8330826Z 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:46:44.8336487Z 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:46:44.8342367Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-04-25T04:46:44.8345588Z 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:46:44.8351069Z 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:46:44.8356437Z 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:46:44.8361801Z 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:46:44.8367083Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-04-25T04:46:44.8372647Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-04-25T04:46:44.8376177Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-04-25T04:46:44.8379783Z 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:46:44.8385266Z 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:46:44.8390799Z 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:46:44.8396004Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-04-25T04:46:44.8401443Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-04-25T04:46:44.8405127Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-04-25T04:46:44.8408433Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-04-25T04:46:44.8411945Z 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:46:44.8417365Z 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:46:44.8422614Z 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:46:44.8428284Z 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:46:44.8433897Z 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:46:44.8439606Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-04-25T04:46:44.8445007Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-04-25T04:46:44.8448485Z 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:46:44.8453979Z 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:46:44.8459270Z 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:46:44.8464696Z 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:46:44.8470156Z 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:46:44.8488330Z 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:46:44.8492760Z 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:46:44.8498114Z 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:46:44.8504630Z 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:46:44.8510111Z 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:46:44.8515758Z 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:46:44.8522734Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-04-25T04:46:44.8544843Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-04-25T04:46:44.8548131Z 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:46:44.8553968Z 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:46:44.8559334Z 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:46:44.8564648Z 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:46:44.8570219Z 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:46:44.8575738Z 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:46:44.8580745Z 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:46:44.8585891Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-04-25T04:46:44.8622157Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-04-25T04:46:44.8622819Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8623720Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8624788Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8625628Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8626480Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8639253Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8645429Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8652025Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8658534Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8664516Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8670357Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8676208Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8682035Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8688052Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-04-25T04:46:44.8691687Z 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:46:44.8697259Z 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:46:44.8703193Z 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:46:44.8720100Z 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:46:44.8725761Z 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:46:44.8731638Z 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:46:44.8737335Z 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:46:44.8743081Z 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:46:44.8748838Z 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:46:44.8754653Z 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:46:44.8759946Z 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:46:44.8766126Z 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:46:44.8772593Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-04-25T04:46:44.8778346Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.8783785Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-04-25T04:46:44.8790736Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-04-25T04:46:44.8794090Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8799617Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8805364Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-04-25T04:46:44.8808728Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-04-25T04:46:44.8814477Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-04-25T04:46:44.8820144Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_caffe2.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8825729Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8843065Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8849475Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8856140Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8861964Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8868492Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8874473Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8880164Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8886103Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8891858Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8897648Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8903130Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8909138Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8915486Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8921357Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8929697Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8947379Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8954856Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8960770Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8966611Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8972456Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.8978312Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-04-25T04:46:44.8981807Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-04-25T04:46:44.8985409Z 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:46:44.8992019Z 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:46:44.8998824Z 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:46:44.9004897Z 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:46:44.9021006Z 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:46:44.9026565Z 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:46:44.9033304Z 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:46:44.9038959Z 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:46:44.9044841Z 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:46:44.9050623Z 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:46:44.9056215Z 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:46:44.9061541Z 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:46:44.9103711Z 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:46:44.9109880Z 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:46:44.9115808Z 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:46:44.9122202Z 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:46:44.9128146Z 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:46:44.9133981Z 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:46:44.9140129Z 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:46:44.9146105Z 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:46:44.9152271Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-04-25T04:46:44.9157913Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-04-25T04:46:44.9161431Z 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:46:44.9167150Z 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:46:44.9173593Z 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:46:44.9178166Z 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:46:44.9183680Z 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:46:44.9189064Z 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:46:44.9194954Z 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:46:44.9200576Z 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:46:44.9216090Z 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:46:44.9221928Z 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:46:44.9226793Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-04-25T04:46:44.9230434Z 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:46:44.9236317Z 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:46:44.9241931Z 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:46:44.9259142Z 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:46:44.9266224Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-04-25T04:46:44.9269840Z 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:46:44.9275520Z 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:46:44.9281467Z 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:46:44.9287649Z 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:46:44.9303963Z 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:46:44.9310715Z 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:46:44.9316333Z 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:46:44.9321925Z 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:46:44.9327865Z 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:46:44.9332722Z 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:46:44.9338303Z 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:46:44.9344075Z 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:46:44.9349763Z 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:46:44.9355322Z 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:46:44.9360676Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\io_adapter.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9366658Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9382721Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnxruntime.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9389391Z 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:46:44.9395029Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9400656Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9406977Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9412935Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-04-25T04:46:44.9417709Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.9423441Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.9429317Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-04-25T04:46:44.9436097Z creating build\bdist.win-amd64\wheel\torch\optim 2025-04-25T04:46:44.9439557Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9445480Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9451331Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9457418Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9463511Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9468984Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9475658Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9491925Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9498555Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9504588Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9511419Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9517362Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9524088Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9529536Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9536474Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9541873Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9548325Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9554243Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9560457Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-04-25T04:46:44.9563928Z 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:46:44.9569855Z 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:46:44.9575307Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-04-25T04:46:44.9581090Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:44.9589115Z creating build\bdist.win-amd64\wheel\torch\package 2025-04-25T04:46:44.9592621Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-04-25T04:46:44.9596351Z 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:46:44.9632026Z 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:46:44.9633086Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-04-25T04:46:44.9634086Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-04-25T04:46:44.9635074Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9639987Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9649903Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9659692Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9665657Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9672337Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9678682Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9718068Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9723820Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9729982Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9735691Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9741098Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9746978Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9752661Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9758444Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-04-25T04:46:44.9763997Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-04-25T04:46:44.9772633Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9778134Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9784181Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9789732Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9796233Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9812699Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9818531Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-04-25T04:46:44.9824466Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:44.9829844Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-04-25T04:46:44.9833271Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9838940Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9844157Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9860155Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-04-25T04:46:44.9863469Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9868773Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9874039Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9879504Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9884781Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9900122Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9905689Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9911139Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9916895Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9922520Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9928003Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9933582Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-04-25T04:46:44.9939256Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9944988Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9951114Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9956933Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9962294Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9968214Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9974015Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9978999Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9984169Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9990026Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:44.9996624Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:45.0002484Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:45.0008167Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-04-25T04:46:45.0013734Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:45.0019489Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:45.0025550Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:45.0031469Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:45.0037293Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:45.0044886Z creating build\bdist.win-amd64\wheel\torch\share 2025-04-25T04:46:45.0048279Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-04-25T04:46:45.0051948Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-04-25T04:46:45.0055970Z 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:46:45.0067993Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-04-25T04:46:45.0071341Z 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:46:45.0077489Z 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:46:45.0083288Z 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:46:45.0098939Z 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:46:45.0105657Z 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:46:45.0130361Z 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:46:45.0131528Z 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:46:45.0132485Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-04-25T04:46:45.0133424Z 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:46:45.0136632Z 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:46:45.0142575Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-04-25T04:46:45.0155565Z 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:46:45.0161317Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-04-25T04:46:45.0165087Z 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:46:45.0170919Z 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:46:45.0176489Z 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:46:45.0192856Z 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:46:45.0198871Z 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:46:45.0205910Z 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:46:45.0222184Z 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:46:45.0228122Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-04-25T04:46:45.0231631Z 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:46:45.0237426Z 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:46:45.0243019Z 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:46:45.0248696Z 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:46:45.0264307Z 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:46:45.0270155Z 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:46:45.0275606Z 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:46:45.0282057Z 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:46:45.0288254Z 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:46:45.0294071Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-04-25T04:46:45.0297569Z 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:46:45.0303226Z 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:46:45.0308851Z creating build\bdist.win-amd64\wheel\torch\signal 2025-04-25T04:46:45.0312241Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-04-25T04:46:45.0315598Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-04-25T04:46:45.0322048Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-04-25T04:46:45.0327210Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-04-25T04:46:45.0332710Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-04-25T04:46:45.0336079Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:46:45.0342324Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:46:45.0347979Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:46:45.0364443Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:46:45.0371381Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:46:45.0381788Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-04-25T04:46:45.0388339Z creating build\bdist.win-amd64\wheel\torch\special 2025-04-25T04:46:45.0391687Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-04-25T04:46:45.0397933Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:45.0410232Z creating build\bdist.win-amd64\wheel\torch\test 2025-04-25T04:46:45.0424091Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0434142Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0444611Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0453575Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0473746Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0483681Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0493061Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0502025Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0511525Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0521064Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0529947Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0539001Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0549831Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0559111Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0568173Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0577887Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0587232Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0596785Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0640552Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0641757Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0643024Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0646797Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0654745Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDATest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0665285Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0683691Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0693216Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0702282Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0711684Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0720479Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0729584Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0738577Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0747833Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0756977Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0766094Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0785626Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0793948Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0810322Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0819049Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0828493Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0837743Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0847013Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0856064Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0884620Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0895239Z 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:46:45.0905181Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0914579Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0925021Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0934554Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0950138Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0959261Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0969228Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0988140Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.0997273Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1007071Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1016354Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1025215Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1034896Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1045126Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1054069Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1073230Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1082296Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1092346Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1101325Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1111353Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1121325Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1134959Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocatorTraceTracker_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1144850Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1154003Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_apply_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1173863Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_atomic_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1183942Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_caching_host_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1193999Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1203875Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1213520Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cub_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1223452Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cudnn_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1232994Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1242142Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_distributions_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1252782Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1262033Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1272043Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1281579Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_integer_divider_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1290491Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1300732Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1310611Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1320250Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_stream_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1339633Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_vectorized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1349500Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1360045Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1369207Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1378581Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1388460Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1398500Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1408594Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1418626Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1430904Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1441019Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1455281Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1467288Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1483939Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1497384Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1508832Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1519177Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1531256Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1554893Z 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:46:45.1566955Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1577260Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1588334Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1598785Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1608448Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1618562Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1630113Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1641038Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1650834Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1660594Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1677893Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1704334Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1713607Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1724911Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1734982Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1744633Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1754422Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1765024Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1775150Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1785196Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1794834Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1806051Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1815757Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1822927Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1832204Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1842835Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1852496Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1859520Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1869483Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1879033Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-04-25T04:46:45.1889518Z creating build\bdist.win-amd64\wheel\torch\testing 2025-04-25T04:46:45.1893051Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:46:45.1900640Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:46:45.1907738Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-04-25T04:46:45.1911389Z 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:46:45.1917926Z 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:46:45.1924545Z 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:46:45.1939846Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-04-25T04:46:45.1943860Z 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:46:45.1949121Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.1954688Z 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:46:45.1961789Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.1968489Z 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:46:45.1974192Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.1980145Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.1986863Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.1993004Z 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:46:45.2043901Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2049720Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2057810Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2065730Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2073116Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2079259Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2086696Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2098329Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2104302Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2112987Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2119270Z 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:46:45.2125598Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2131841Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-04-25T04:46:45.2135332Z 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:46:45.2140927Z 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:46:45.2146061Z 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:46:45.2152454Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-04-25T04:46:45.2156280Z 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:46:45.2162563Z 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:46:45.2168853Z 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:46:45.2191161Z 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:46:45.2202456Z 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:46:45.2209325Z 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:46:45.2215230Z 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:46:45.2221277Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-04-25T04:46:45.2224774Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-04-25T04:46:45.2228726Z 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:46:45.2235099Z 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:46:45.2240116Z 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:46:45.2245026Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-04-25T04:46:45.2248544Z 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:46:45.2257416Z 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:46:45.2263318Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-04-25T04:46:45.2266960Z 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:46:45.2273190Z 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:46:45.2279132Z 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:46:45.2283767Z 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:46:45.2300042Z 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:46:45.2305804Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-04-25T04:46:45.2309708Z 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:46:45.2315341Z 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:46:45.2321624Z 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:46:45.2327649Z 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:46:45.2332271Z 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:46:45.2337966Z 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:46:45.2346304Z 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:46:45.2352195Z 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:46:45.2356779Z 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:46:45.2362687Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-04-25T04:46:45.2366231Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-04-25T04:46:45.2369858Z 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:46:45.2375677Z 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:46:45.2381495Z 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:46:45.2386911Z 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:46:45.2392572Z 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:46:45.2397917Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-04-25T04:46:45.2401494Z 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:46:45.2407892Z 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:46:45.2412589Z 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:46:45.2417164Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.2423079Z 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:46:45.2429093Z 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:46:45.2435763Z 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:46:45.7545001Z 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:46:45.7551451Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-04-25T04:46:45.7555752Z 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:46:45.7567499Z 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:46:45.7571839Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.7579622Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.7585423Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.7591477Z 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:46:45.7598396Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.7604956Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.7611174Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:45.7618269Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-04-25T04:46:46.2737863Z 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:46:46.2746303Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-04-25T04:46:46.2750191Z 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:46:46.2756469Z 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:46:46.2763390Z 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:46:46.2770463Z 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:46:46.2775732Z 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:46:46.2782149Z 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:46:46.2931111Z 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:46:46.2937159Z 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:46:46.2942616Z 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:46:46.2948249Z 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:46:46.2954196Z 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:46:46.2959807Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-04-25T04:46:46.2963369Z 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:46:46.2969345Z 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:46:46.2975073Z 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:46:46.2980650Z 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:46:46.3114321Z 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:46:46.3126445Z 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:46:46.3132112Z 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:46:46.3137827Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:46.3143517Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:46.3149825Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-04-25T04:46:46.3153401Z 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:46:46.3158991Z 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:46:46.3164608Z 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:46:46.3169144Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:46.3174884Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:46.3180919Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:46.3186706Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-04-25T04:46:46.3191805Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:46:46.8251153Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-04-25T04:46:46.8257085Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:46.8263174Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:46.8270830Z creating build\bdist.win-amd64\wheel\torch\utils 2025-04-25T04:46:46.8273981Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-04-25T04:46:46.8277445Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-04-25T04:46:46.8283067Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:46.8289272Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-04-25T04:46:46.8292903Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-04-25T04:46:46.8296422Z 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:46:46.8302249Z 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:46:46.8307960Z 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:46:46.8313611Z 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:46:46.8319321Z 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:46:46.8476962Z 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:46:46.8483448Z 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:46:46.8488447Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-04-25T04:46:46.8491953Z 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:46:46.8497655Z 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:46:46.8503245Z 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:46:46.8509118Z 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:46:46.8662655Z 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:46:46.8669633Z 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:46:46.8674469Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-04-25T04:46:46.8677849Z 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:46:46.8683886Z 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:46:46.8689514Z 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:46:46.8695029Z 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:46:46.8700398Z 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:46:46.8706498Z 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:46:46.8861911Z 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:46:46.8867229Z 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:46:46.8873631Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-04-25T04:46:46.8877188Z 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:46:46.8882851Z 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:46:46.8888665Z 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:46:46.9069966Z 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:46:46.9076269Z 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:46:46.9086836Z 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:46:46.9091608Z 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:46:46.9097571Z 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:46:46.9102360Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-04-25T04:46:46.9108393Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-04-25T04:46:47.4600743Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-04-25T04:46:47.4605404Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-04-25T04:46:47.4611665Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:47.4618414Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:47.4625312Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:47.4631773Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:47.4637231Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:47.4645888Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-04-25T04:46:47.4649734Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:47.4655210Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:47.4662942Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-04-25T04:46:47.4666724Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-04-25T04:46:47.4671451Z 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:46:47.4677030Z 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:46:47.4682902Z 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:46:47.5064810Z 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:46:47.5070714Z 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:46:47.5076040Z 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:46:47.5082330Z 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:46:47.5088471Z 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:46:47.5094991Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-04-25T04:46:48.0237800Z 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:46:48.0244367Z 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:46:48.0250297Z 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:46:48.0256670Z 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:46:48.0398312Z 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:46:48.0403892Z 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:46:48.0409649Z 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:46:48.0415374Z 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:46:48.0421103Z 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:46:48.0426815Z 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:46:48.0432579Z 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:46:48.0438232Z 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:46:48.0444908Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-04-25T04:46:48.0449007Z 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:46:48.0454432Z 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:46:48.0459791Z 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:46:48.0465309Z 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:46:48.0470998Z 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:46:48.0715730Z 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:46:48.0721420Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-04-25T04:46:48.0724962Z 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:46:48.0730776Z 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:46:48.0736638Z 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:46:48.0742270Z 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:46:48.0747316Z 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:46:48.0753683Z 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:46:48.0759425Z 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:46:48.0765411Z 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:46:48.0771051Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:48.2127400Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:48.2133704Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:48.2139711Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:48.2145572Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:48.2152394Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-04-25T04:46:48.2156315Z 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:46:48.2162707Z 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:46:48.2168311Z 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:46:48.2174492Z 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:46:48.2180177Z 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:46:48.2200318Z 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:46:48.2205993Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-04-25T04:46:48.2211795Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2217503Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2223264Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2229214Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2236321Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-04-25T04:46:48.2239704Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:46:48.2245668Z 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:46:48.2255362Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:46:48.2261766Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:46:48.2279778Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-04-25T04:46:48.2284970Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2291196Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-04-25T04:46:48.2294994Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-04-25T04:46:48.2318458Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-04-25T04:46:48.2319289Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2320126Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2320790Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-04-25T04:46:48.2322522Z 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:46:48.2328524Z 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:46:48.2334002Z 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:46:48.2339508Z 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:46:48.2345046Z 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:46:48.2363546Z 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:46:48.2368708Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2374593Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2392943Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-04-25T04:46:48.2396358Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-04-25T04:46:48.2402078Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-04-25T04:46:48.2407820Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2413610Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-04-25T04:46:48.2416995Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2423225Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2430034Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2435209Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2453348Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2459145Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2464917Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2470678Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2476252Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-04-25T04:46:48.2481535Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2487416Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-04-25T04:46:48.2491117Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-04-25T04:46:48.2497276Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-04-25T04:46:48.2501801Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2544230Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2550040Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2555746Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2562650Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2569106Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2583094Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2589332Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2595348Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2601131Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2607621Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2613286Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2619017Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2625138Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2630690Z copying build\lib.win-amd64-cpython-39\torch\utils\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2636400Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2654189Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2667304Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2673124Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2678569Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2684378Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2690673Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2697347Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2703915Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-04-25T04:46:48.2707859Z 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:46:48.2714113Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-04-25T04:46:48.2719086Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-04-25T04:46:48.2722513Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2730297Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2735953Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2741755Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2748140Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2765872Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2771566Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2777166Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2782823Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2789386Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-04-25T04:46:48.2794458Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2799548Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2818530Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2823906Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2829711Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2835444Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-04-25T04:46:48.2841314Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.2846887Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-04-25T04:46:48.2850778Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:46:48.2856617Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:46:48.2862229Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:46:48.2867687Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:46:48.2873307Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:46:48.2878610Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-04-25T04:46:48.2896253Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.2902455Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-04-25T04:46:48.2906107Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-04-25T04:46:48.2911804Z creating build\bdist.win-amd64\wheel\torch\_C 2025-04-25T04:46:48.2914958Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2920476Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2926031Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2931153Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2936274Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2953639Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2959326Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2965478Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2971106Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.2976903Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-04-25T04:46:48.2980790Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:46:48.2986008Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:46:48.2991610Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:46:48.2997006Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-04-25T04:46:48.3002109Z copying build\lib.win-amd64-cpython-39\torch\_C\_export.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3007230Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3013010Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3018899Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3023994Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3029076Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3035835Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3041191Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3046990Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3052463Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3057555Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3062916Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3068791Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3085470Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3102271Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-04-25T04:46:48.3112800Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.3118274Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.3123749Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.3129614Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-04-25T04:46:48.3133247Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-04-25T04:46:48.3139233Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-04-25T04:46:48.3145383Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-04-25T04:46:48.3150064Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.3156111Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-04-25T04:46:48.3171878Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-04-25T04:46:48.3177311Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-04-25T04:46:48.3181108Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:46:48.3189480Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:46:48.3195180Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:46:48.3212673Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-04-25T04:46:48.3218755Z copying build\lib.win-amd64-cpython-39\torch\_deploy.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.3224654Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-04-25T04:46:48.3228453Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-04-25T04:46:48.3234202Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-04-25T04:46:48.3239484Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-04-25T04:46:48.3242940Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-04-25T04:46:48.3246631Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3252428Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3258082Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3263856Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3282154Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3287744Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3293369Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3298962Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3304325Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3327880Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3328838Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-04-25T04:46:48.3330370Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3331332Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3336238Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3353586Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3370644Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3376817Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3382554Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3389234Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3394826Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3401373Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3407752Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3413482Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3419169Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3425489Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3432018Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3437754Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3443605Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3450496Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3456574Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3462064Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3467815Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3484350Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3490109Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3495752Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3519975Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3527250Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3532930Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3538460Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3544014Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3550507Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3557827Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3564463Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-04-25T04:46:48.3578696Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3584503Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3590539Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3596177Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3614270Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3619641Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3625307Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3631488Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3637174Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3642521Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3648001Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-04-25T04:46:48.3653947Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3660054Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3666276Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-04-25T04:46:48.3670309Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:46:48.3676673Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:46:48.3682801Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:46:48.3689054Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-04-25T04:46:48.3693742Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3699933Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3706228Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3712585Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3720875Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3726796Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3732796Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3739243Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3756930Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3764601Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3770199Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3778402Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-04-25T04:46:48.3782068Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3788314Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3795866Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3803546Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3809391Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3827222Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3833791Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3840239Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3847449Z 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:46:48.3855036Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3866367Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3872068Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3878153Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3885102Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3891587Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3897717Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3903718Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3909356Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3915763Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3922452Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3928503Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3935198Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-04-25T04:46:48.3941058Z 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:46:48.3946770Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-04-25T04:46:48.3952717Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.3958617Z creating build\bdist.win-amd64\wheel\torch\_export 2025-04-25T04:46:48.3961996Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.3968892Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-04-25T04:46:48.3972415Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:46:48.3978911Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-04-25T04:46:48.3982478Z 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:46:48.3988285Z 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:46:48.3993832Z 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:46:48.4010262Z 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:46:48.4015961Z 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:46:48.4021919Z 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:46:48.4027532Z 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:46:48.4032939Z 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:46:48.4038510Z 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:46:48.4044229Z 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:46:48.4050139Z 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:46:48.4056086Z 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:46:48.4061079Z 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:46:48.4068053Z 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:46:48.4073710Z 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:46:48.4079227Z 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:46:48.4084944Z 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:46:48.4090860Z 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:46:48.4107995Z 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:46:48.4114093Z 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:46:48.4120103Z 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:46:48.4126121Z 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:46:48.4132731Z 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:46:48.4138406Z 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:46:48.4144471Z 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:46:48.4150985Z 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:46:48.4167772Z 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:46:48.4172940Z 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:46:48.4178071Z 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:46:48.4184424Z 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:46:48.4189695Z 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:46:48.4195449Z 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:46:48.4200809Z 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:46:48.4206492Z 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:46:48.4211960Z 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:46:48.4228551Z 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:46:48.4234019Z 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:46:48.4239596Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:46:48.4244837Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:46:48.4250180Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-04-25T04:46:48.4255415Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4260971Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4268065Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-04-25T04:46:48.4282248Z 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:46:48.4288032Z 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:46:48.4293677Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:46:48.4310718Z 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:46:48.4316259Z 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:46:48.4321889Z 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:46:48.4362660Z 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:46:48.4368362Z 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:46:48.4374226Z 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:46:48.4380383Z 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:46:48.4386846Z 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:46:48.4436497Z 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:46:48.4437583Z 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:46:48.4438547Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-04-25T04:46:48.4439437Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4440203Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-04-25T04:46:48.4441019Z 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:46:48.4442159Z 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:46:48.4443149Z 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:46:48.4443864Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-04-25T04:46:48.4444696Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\aoti_schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4450321Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4456433Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4462220Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4473278Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4479162Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4485263Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4493389Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4499045Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-04-25T04:46:48.4503562Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4509171Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4515857Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4521786Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4527390Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-04-25T04:46:48.4533492Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-04-25T04:46:48.4536934Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4543721Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4549835Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4556500Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4573307Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4579047Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4584885Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4599034Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4604319Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4610060Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4616850Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4622541Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4628713Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4634784Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4641538Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4647500Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4652970Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4658622Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4664634Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4670282Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4676861Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-04-25T04:46:48.4691968Z 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:46:48.4697664Z 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:46:48.4703406Z 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:46:48.4720145Z 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:46:48.4725852Z 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:46:48.4731398Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-04-25T04:46:48.4735037Z 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:46:48.4741630Z 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:46:48.4748014Z 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:46:48.4764200Z 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:46:48.4770394Z 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:46:48.4777249Z 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:46:48.4801912Z 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:46:48.4807757Z 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:46:48.4814817Z 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:46:48.4821462Z 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:46:48.4828217Z 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:46:48.4834700Z 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:46:48.4841586Z 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:46:48.4848060Z 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:46:48.4853835Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-04-25T04:46:48.4859425Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:48.4866785Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-04-25T04:46:48.4871169Z 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:46:48.4876921Z 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:46:48.4883326Z 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:46:48.4901309Z 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:46:48.4905987Z 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:46:48.4912177Z 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:46:48.4921136Z 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:46:48.4926774Z 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:46:48.4933090Z 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:46:48.4940267Z 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:46:48.4945887Z 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:46:48.4951720Z 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:46:48.4957737Z 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:46:48.4963299Z 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:46:48.4969094Z 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:46:48.4974885Z 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:46:48.4981219Z 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:46:48.4986636Z 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:46:48.4992294Z 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:46:48.4998044Z 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:46:48.5004855Z 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:46:48.5011012Z 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:46:48.5027897Z 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:46:48.5033557Z 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:46:48.5039420Z 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:46:48.5046080Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-04-25T04:46:48.5049720Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5055770Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5061841Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5078926Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-04-25T04:46:48.5082423Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-04-25T04:46:48.5086175Z 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:46:48.5091910Z 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:46:48.5097617Z 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:46:48.5114659Z 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:46:48.5120655Z 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:46:48.5126428Z 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:46:48.5131055Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:46:48.5136689Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:46:48.5153100Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:46:48.5158721Z 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:46:48.5164937Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-04-25T04:46:48.5169179Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5175513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5181044Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5187104Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5196460Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-04-25T04:46:48.5199684Z 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:46:48.5205424Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-04-25T04:46:48.5208904Z 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:46:48.5214577Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5220046Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5236657Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5245874Z 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:46:48.5252295Z 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:46:48.5258660Z 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:46:48.5265872Z 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:46:48.5272739Z 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:46:48.5279740Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_prefix.h -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5286809Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5292540Z 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:46:48.5299098Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5307310Z 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:46:48.5316863Z 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:46:48.5322374Z 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:46:48.5328990Z 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:46:48.5334990Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-04-25T04:46:48.5338561Z 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:46:48.5344966Z 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:46:48.5350656Z 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:46:48.5357044Z 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:46:48.5373684Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-04-25T04:46:48.5377412Z 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:46:48.5383318Z 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:46:48.5389749Z 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:46:48.5408116Z 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:46:48.5414278Z 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:46:48.5420168Z 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:46:48.5425893Z 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:46:48.5433398Z 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:46:48.5438136Z 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:46:48.5453578Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5459363Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5465833Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5472076Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5478348Z 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:46:48.5483943Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5490641Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-04-25T04:46:48.5494424Z 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:46:48.5500605Z 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:46:48.5506264Z 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:46:48.5523009Z 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:46:48.5528352Z 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:46:48.5533959Z 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:46:48.5539516Z 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:46:48.5545443Z 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:46:48.5551291Z 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:46:48.5557018Z 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:46:48.5561562Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5568561Z 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:46:48.5575468Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5581058Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5589083Z 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:46:48.5605693Z 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:46:48.5611443Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5617358Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5625222Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-04-25T04:46:48.5629085Z 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:46:48.5635099Z 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:46:48.5639977Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-04-25T04:46:48.5644923Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5651306Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5657044Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5662591Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5668954Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5676281Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5682168Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5688484Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5694626Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-04-25T04:46:48.5699435Z 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:46:48.5704716Z 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:46:48.5710536Z 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:46:48.5714578Z 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:46:48.5720183Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5728155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5733933Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5752121Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5758051Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5765386Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5771444Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5777283Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5784484Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5791191Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5798035Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5804436Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5810998Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:48.5816422Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.0995281Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.1000943Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.1008421Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-04-25T04:46:49.1012057Z 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:46:49.1018331Z 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:46:49.1024691Z 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:46:49.1031083Z 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:46:49.1477200Z 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:46:49.1482948Z 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:46:49.1489182Z 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:46:49.1494994Z 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:46:49.1501440Z 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:46:49.1508249Z 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:46:49.1514921Z 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:46:49.1521469Z 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:46:49.1527194Z 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:46:49.1533776Z 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:46:49.1539466Z 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:46:49.1545629Z 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:46:49.1552417Z 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:46:49.1558546Z 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:46:49.1566305Z 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:46:49.1572754Z 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:46:49.5400110Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-04-25T04:46:49.5414241Z 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:46:49.5415905Z 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:46:49.5425931Z 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:46:49.5474817Z 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:46:49.5476215Z 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:46:49.5477596Z 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:46:49.5479022Z 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:46:49.5480638Z 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:46:49.5482032Z 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:46:49.5483407Z 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:46:49.5484774Z 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:46:49.5486284Z 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:46:49.5493400Z 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:46:49.5499578Z 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:46:49.5504864Z 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:46:49.5511487Z 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:46:49.5517499Z 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:46:49.5523622Z 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:46:49.5529614Z 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:46:49.5540967Z 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:46:49.5547302Z 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:46:49.5553003Z 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:46:49.5577761Z 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:46:49.5582355Z 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:46:49.5590194Z 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:46:49.5594944Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5600661Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5624327Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5629908Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5635692Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5641363Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5650486Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5656907Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-04-25T04:46:49.5660307Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5666395Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5672535Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5679512Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5685549Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5696704Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5702409Z 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:46:49.5708397Z 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:46:49.5714342Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-04-25T04:46:49.5720013Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5731000Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5739891Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5746540Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5752439Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5759950Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5766765Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5772545Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5779070Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5784892Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5792256Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-04-25T04:46:49.5795719Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:46:49.5801109Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:46:49.5806795Z 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:46:49.5813078Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-04-25T04:46:49.5818731Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5826323Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5840231Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5846843Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-04-25T04:46:49.5851097Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5857905Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5863345Z 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:46:49.5869145Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5881141Z 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:46:49.5887002Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5909909Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5910923Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5912178Z 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:46:49.5913260Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5933578Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5939948Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5948003Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-04-25T04:46:49.5952885Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5962333Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5967857Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5974768Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5982605Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5987712Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.5994034Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6000304Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6010633Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6016411Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6022155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6029156Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6035165Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6041180Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6046808Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-04-25T04:46:49.6052893Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6060146Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-04-25T04:46:49.6063661Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6069432Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6074882Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6079989Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6085420Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6095693Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6101476Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6106667Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6112106Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6118467Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6123528Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-04-25T04:46:49.6129381Z creating build\bdist.win-amd64\wheel\torch\_library 2025-04-25T04:46:49.6137033Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6142659Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6149169Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6155002Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6165529Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6171143Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6176915Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6182422Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6187997Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6193937Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-04-25T04:46:49.6199193Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6205663Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6212746Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-04-25T04:46:49.6216053Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:46:49.6222176Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:46:49.6228013Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:46:49.6235241Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:46:49.6244957Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-04-25T04:46:49.6250659Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6256485Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6265665Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6272366Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-04-25T04:46:49.6276700Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6281440Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6287214Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6293054Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-04-25T04:46:49.6296408Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-04-25T04:46:49.6304018Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-04-25T04:46:49.6309473Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6315221Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6325969Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6331395Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6337274Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6342972Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6349798Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6355310Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6361410Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6367690Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6373532Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6379295Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6386191Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6392186Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-04-25T04:46:49.6397911Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6405355Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-04-25T04:46:49.6408973Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:46:49.6414944Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:46:49.6421554Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:46:49.6427334Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:46:49.6433224Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-04-25T04:46:49.6446054Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-04-25T04:46:49.6449420Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-04-25T04:46:49.6455532Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-04-25T04:46:49.6462601Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6468718Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-04-25T04:46:49.6472140Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-04-25T04:46:49.6478501Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-04-25T04:46:49.6481825Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-04-25T04:46:49.6487629Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-04-25T04:46:49.6491014Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-04-25T04:46:49.6494410Z 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:46:49.6500816Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-04-25T04:46:49.6506366Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-04-25T04:46:49.6509794Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-04-25T04:46:49.6515387Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-04-25T04:46:49.6521177Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-04-25T04:46:49.6534690Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6548660Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6554398Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6561656Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6567113Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-04-25T04:46:49.6570694Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-04-25T04:46:49.6576312Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-04-25T04:46:49.6582199Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-04-25T04:46:49.6591468Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-04-25T04:46:49.6594968Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6601218Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6608719Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6619340Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6625609Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6632716Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6638428Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6644067Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-04-25T04:46:49.6649620Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6656552Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6664578Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6671323Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6676277Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6687141Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6694033Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6704578Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-04-25T04:46:49.6708301Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-04-25T04:46:49.6713348Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-04-25T04:46:49.6721204Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-04-25T04:46:49.6726531Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-04-25T04:46:49.6732295Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-04-25T04:46:49.6736424Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6742002Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6759873Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6766208Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6772447Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6778291Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6784369Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-04-25T04:46:49.6803380Z creating build\bdist.win-amd64\wheel\torchgen 2025-04-25T04:46:49.6806876Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-04-25T04:46:49.6810428Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-04-25T04:46:49.6816459Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-04-25T04:46:49.6821485Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-04-25T04:46:49.6824752Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6831477Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6837657Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6843515Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6849143Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6861716Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6867438Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6874092Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6880011Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6886161Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6892186Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-04-25T04:46:49.6895607Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:46:49.6901761Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:46:49.6907831Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:46:49.6913776Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-04-25T04:46:49.6919397Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6925244Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6933184Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-04-25T04:46:49.6936790Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.6942418Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.6948986Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-04-25T04:46:49.6952229Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:46:49.6958452Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:46:49.6964103Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:46:49.6969974Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:46:49.6981504Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:46:49.6987632Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-04-25T04:46:49.6993413Z creating build\bdist.win-amd64\wheel\torchgen\executorch 2025-04-25T04:46:49.7001853Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api 2025-04-25T04:46:49.7005343Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\custom_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:46:49.7017593Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\et_cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:46:49.7023401Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api\types 2025-04-25T04:46:49.7026965Z 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:46:49.7032679Z 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:46:49.7038138Z 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:46:49.7043345Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:46:49.7049279Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-04-25T04:46:49.7054172Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\model.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-04-25T04:46:49.7059299Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\parse.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-04-25T04:46:49.7072728Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-04-25T04:46:49.7076852Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7084275Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7090489Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7096628Z copying build\lib.win-amd64-cpython-39\torchgen\gen_executorch.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7102983Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7109498Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7115911Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7121526Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7127068Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7132484Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7140005Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7146567Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-04-25T04:46:49.7150375Z 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:46:49.7156277Z 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:46:49.7161884Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-04-25T04:46:49.7171961Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-04-25T04:46:49.7175193Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-04-25T04:46:49.7178629Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-04-25T04:46:49.7182084Z 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:46:49.7193716Z 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:46:49.7200275Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-04-25T04:46:49.7203853Z 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:46:49.7209591Z 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:46:49.7215599Z 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:46:49.7230114Z 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:46:49.7236136Z 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:46:49.7242650Z 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:46:49.7264631Z 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:46:49.7270460Z 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:46:49.7275746Z 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:46:49.7282134Z 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:46:49.7286708Z 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:46:49.7292504Z 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:46:49.7298640Z 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:46:49.7304455Z 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:46:49.7310176Z 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:46:49.7315784Z 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:46:49.7321720Z 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:46:49.7327227Z 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:46:49.7333556Z 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:46:49.7344521Z 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:46:49.7350411Z 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:46:49.7356323Z 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:46:49.7361902Z 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:46:49.7367972Z 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:46:49.7373611Z 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:46:49.7379762Z 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:46:49.7385831Z 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:46:49.7392138Z 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:46:49.7397493Z 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:46:49.7409316Z 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:46:49.7415383Z 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:46:49.7421128Z 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:46:49.7426601Z 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:46:49.7433954Z 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:46:49.7439891Z 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:46:49.7445265Z 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:46:49.7450765Z 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:46:49.7457537Z 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:46:49.7467791Z 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:46:49.7474279Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-04-25T04:46:49.7477751Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7483146Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7488360Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7493994Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7499567Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7513307Z 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:46:49.7519196Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7525466Z 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:46:49.7531904Z 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:46:49.7538149Z 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:46:49.7544489Z 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:46:49.7550668Z 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:46:49.7556599Z 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:46:49.7563468Z 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:46:49.7569344Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7575672Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7581915Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-04-25T04:46:49.7585723Z 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:46:49.7591577Z 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:46:49.7596871Z 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:46:49.7607517Z 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:46:49.7613319Z 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:46:49.7618830Z 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:46:49.7624724Z 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:46:49.7630536Z 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:46:49.7636074Z 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:46:49.7641979Z 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:46:49.7647711Z 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:46:49.7653558Z 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:46:49.7659426Z 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:46:49.7665415Z 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:46:49.7671799Z 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:46:49.7678162Z 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:46:49.7684166Z 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:46:49.7696489Z 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:46:49.7729610Z 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:46:49.7735460Z 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:46:49.7741413Z 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:46:49.7747511Z 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:46:49.7753164Z 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:46:49.7759296Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-04-25T04:46:49.7764140Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-04-25T04:46:49.7767988Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-04-25T04:46:49.7773556Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-04-25T04:46:49.7779331Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-04-25T04:46:49.7784281Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-04-25T04:46:49.7788589Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:46:49.7794217Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:46:49.7800387Z 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:46:49.7812438Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-04-25T04:46:49.7816384Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7823704Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7832836Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-04-25T04:46:49.7846385Z running install_egg_info 2025-04-25T04:46:49.8005260Z running egg_info 2025-04-25T04:46:49.8089212Z creating torch.egg-info 2025-04-25T04:46:49.8092242Z writing torch.egg-info\PKG-INFO 2025-04-25T04:46:49.8137319Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-04-25T04:46:49.8142274Z writing entry points to torch.egg-info\entry_points.txt 2025-04-25T04:46:49.8155781Z writing requirements to torch.egg-info\requires.txt 2025-04-25T04:46:49.8159925Z writing top-level names to torch.egg-info\top_level.txt 2025-04-25T04:46:49.8163982Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-04-25T04:46:51.0595843Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-04-25T04:46:51.0601632Z reading manifest template 'MANIFEST.in' 2025-04-25T04:46:54.2525266Z warning: no files found matching '*.*' under directory 'ios' 2025-04-25T04:47:24.4133910Z warning: no files found matching '*.*' under directory 'modules' 2025-04-25T04:47:24.6344558Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-04-25T04:47:24.7962118Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-04-25T04:47:24.9580343Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-04-25T04:47:25.1197021Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-04-25T04:47:25.5712214Z adding license file 'LICENSE' 2025-04-25T04:47:25.5712572Z adding license file 'NOTICE' 2025-04-25T04:47:25.5725340Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-04-25T04:47:33.3492417Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-04-25T04:47:33.4081044Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.8.0a0+gitb68c0ef-py3.9.egg-info 2025-04-25T04:47:33.4203750Z running install_scripts 2025-04-25T04:47:33.4223840Z 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:47:33.4224712Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-04-25T04:47:33.4351498Z creating build\bdist.win-amd64\wheel\torch-2.8.0a0+gitb68c0ef.dist-info\WHEEL 2025-04-25T04:47:33.4367803Z creating 'dist\torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-04-25T04:47:33.4613851Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-04-25T04:47:33.4636263Z adding 'functorch/__init__.py' 2025-04-25T04:47:33.4640548Z adding 'functorch/_src/__init__.py' 2025-04-25T04:47:33.4644521Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-04-25T04:47:33.4648500Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-04-25T04:47:33.4652426Z adding 'functorch/_src/make_functional/__init__.py' 2025-04-25T04:47:33.4656371Z adding 'functorch/_src/vmap/__init__.py' 2025-04-25T04:47:33.4660446Z adding 'functorch/compile/__init__.py' 2025-04-25T04:47:33.4665835Z adding 'functorch/dim/__init__.py' 2025-04-25T04:47:33.4669295Z adding 'functorch/dim/batch_tensor.py' 2025-04-25T04:47:33.4673275Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-04-25T04:47:33.4677418Z adding 'functorch/dim/dim.py' 2025-04-25T04:47:33.4680991Z adding 'functorch/dim/magic_trace.py' 2025-04-25T04:47:33.4685615Z adding 'functorch/dim/op_properties.py' 2025-04-25T04:47:33.4695899Z adding 'functorch/dim/reference.py' 2025-04-25T04:47:33.4699743Z adding 'functorch/dim/tree_map.py' 2025-04-25T04:47:33.4703565Z adding 'functorch/dim/wrap_type.py' 2025-04-25T04:47:33.4707647Z adding 'functorch/einops/__init__.py' 2025-04-25T04:47:33.4713901Z adding 'functorch/einops/_parsing.py' 2025-04-25T04:47:33.4719517Z adding 'functorch/einops/rearrange.py' 2025-04-25T04:47:33.4723846Z adding 'functorch/experimental/__init__.py' 2025-04-25T04:47:33.4727052Z adding 'functorch/experimental/control_flow.py' 2025-04-25T04:47:33.4729987Z adding 'functorch/experimental/ops.py' 2025-04-25T04:47:33.4739422Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-04-25T04:47:33.4743588Z adding 'torch/_VF.py' 2025-04-25T04:47:33.4979102Z adding 'torch/_VF.pyi' 2025-04-25T04:47:33.5011869Z adding 'torch/__config__.py' 2025-04-25T04:47:33.5015554Z adding 'torch/__future__.py' 2025-04-25T04:47:33.5055693Z adding 'torch/__init__.py' 2025-04-25T04:47:33.5067159Z adding 'torch/_appdirs.py' 2025-04-25T04:47:33.5071494Z adding 'torch/_classes.py' 2025-04-25T04:47:33.5075022Z adding 'torch/_compile.py' 2025-04-25T04:47:33.5081282Z adding 'torch/_custom_ops.py' 2025-04-25T04:47:33.5085819Z adding 'torch/_deploy.py' 2025-04-25T04:47:33.5089016Z adding 'torch/_environment.py' 2025-04-25T04:47:33.5104330Z adding 'torch/_guards.py' 2025-04-25T04:47:33.5135769Z adding 'torch/_jit_internal.py' 2025-04-25T04:47:33.5137416Z adding 'torch/_linalg_utils.py' 2025-04-25T04:47:33.5154594Z adding 'torch/_lobpcg.py' 2025-04-25T04:47:33.5161803Z adding 'torch/_lowrank.py' 2025-04-25T04:47:33.5241348Z adding 'torch/_meta_registrations.py' 2025-04-25T04:47:33.5251451Z adding 'torch/_namedtensor_internals.py' 2025-04-25T04:47:33.5274555Z adding 'torch/_ops.py' 2025-04-25T04:47:33.5280976Z adding 'torch/_python_dispatcher.py' 2025-04-25T04:47:33.5284522Z adding 'torch/_size_docs.py' 2025-04-25T04:47:33.5288993Z adding 'torch/_sources.py' 2025-04-25T04:47:33.5292604Z adding 'torch/_storage_docs.py' 2025-04-25T04:47:33.5295743Z adding 'torch/_streambase.py' 2025-04-25T04:47:33.5321602Z adding 'torch/_tensor.py' 2025-04-25T04:47:33.5392089Z adding 'torch/_tensor_docs.py' 2025-04-25T04:47:33.5392452Z adding 'torch/_tensor_str.py' 2025-04-25T04:47:33.5392733Z adding 'torch/_thread_safe_fork.py' 2025-04-25T04:47:33.5535851Z adding 'torch/_torch_docs.py' 2025-04-25T04:47:33.5563321Z adding 'torch/_utils.py' 2025-04-25T04:47:33.5569717Z adding 'torch/_utils_internal.py' 2025-04-25T04:47:33.5575500Z adding 'torch/_vmap_internals.py' 2025-04-25T04:47:33.5584362Z adding 'torch/_weights_only_unpickler.py' 2025-04-25T04:47:33.5617713Z adding 'torch/functional.py' 2025-04-25T04:47:33.5633436Z adding 'torch/hub.py' 2025-04-25T04:47:33.5657734Z adding 'torch/library.py' 2025-04-25T04:47:33.5715752Z adding 'torch/overrides.py' 2025-04-25T04:47:33.5716058Z adding 'torch/py.typed' 2025-04-25T04:47:33.5716342Z adding 'torch/quasirandom.py' 2025-04-25T04:47:33.5717226Z adding 'torch/random.py' 2025-04-25T04:47:33.5717471Z adding 'torch/return_types.py' 2025-04-25T04:47:33.5717735Z adding 'torch/return_types.pyi' 2025-04-25T04:47:33.5748281Z adding 'torch/serialization.py' 2025-04-25T04:47:33.5765336Z adding 'torch/storage.py' 2025-04-25T04:47:33.5770447Z adding 'torch/torch_version.py' 2025-04-25T04:47:33.5774530Z adding 'torch/types.py' 2025-04-25T04:47:33.5777774Z adding 'torch/version.py' 2025-04-25T04:47:33.6012247Z adding 'torch/_C/_VariableFunctions.pyi' 2025-04-25T04:47:33.6137961Z adding 'torch/_C/__init__.pyi' 2025-04-25T04:47:33.6151963Z adding 'torch/_C/_aoti.pyi' 2025-04-25T04:47:33.6156116Z adding 'torch/_C/_autograd.pyi' 2025-04-25T04:47:33.6159606Z adding 'torch/_C/_cpu.pyi' 2025-04-25T04:47:33.6162791Z adding 'torch/_C/_cudnn.pyi' 2025-04-25T04:47:33.6165790Z adding 'torch/_C/_cusparselt.pyi' 2025-04-25T04:47:33.6169155Z adding 'torch/_C/_distributed_autograd.pyi' 2025-04-25T04:47:33.6177256Z adding 'torch/_C/_distributed_c10d.pyi' 2025-04-25T04:47:33.6182517Z adding 'torch/_C/_distributed_rpc.pyi' 2025-04-25T04:47:33.6186162Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-04-25T04:47:33.6189300Z adding 'torch/_C/_export.pyi' 2025-04-25T04:47:33.6192568Z adding 'torch/_C/_functions.pyi' 2025-04-25T04:47:33.6196257Z adding 'torch/_C/_functorch.pyi' 2025-04-25T04:47:33.6199548Z adding 'torch/_C/_instruction_counter.pyi' 2025-04-25T04:47:33.6202551Z adding 'torch/_C/_itt.pyi' 2025-04-25T04:47:33.6205960Z adding 'torch/_C/_lazy.pyi' 2025-04-25T04:47:33.6209560Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-04-25T04:47:33.6212632Z adding 'torch/_C/_monitor.pyi' 2025-04-25T04:47:33.6216616Z adding 'torch/_C/_nn.pyi' 2025-04-25T04:47:33.6219884Z adding 'torch/_C/_nvtx.pyi' 2025-04-25T04:47:33.6223409Z adding 'torch/_C/_onnx.pyi' 2025-04-25T04:47:33.6228013Z adding 'torch/_C/_profiler.pyi' 2025-04-25T04:47:33.6231298Z adding 'torch/_C/_verbose.pyi' 2025-04-25T04:47:33.6235358Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-04-25T04:47:33.6238604Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-04-25T04:47:33.6242174Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-04-25T04:47:33.6246277Z adding 'torch/_C/_dynamo/guards.pyi' 2025-04-25T04:47:33.6250679Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-04-25T04:47:33.6255051Z adding 'torch/_awaits/__init__.py' 2025-04-25T04:47:33.6259120Z adding 'torch/_custom_op/__init__.py' 2025-04-25T04:47:33.6265964Z adding 'torch/_custom_op/autograd.py' 2025-04-25T04:47:33.6277416Z adding 'torch/_custom_op/impl.py' 2025-04-25T04:47:33.6286766Z adding 'torch/_decomp/__init__.py' 2025-04-25T04:47:33.6349172Z adding 'torch/_decomp/decompositions.py' 2025-04-25T04:47:33.6359502Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-04-25T04:47:33.6365255Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-04-25T04:47:33.6369375Z adding 'torch/_dispatch/__init__.py' 2025-04-25T04:47:33.6374177Z adding 'torch/_dispatch/python.py' 2025-04-25T04:47:33.6380397Z adding 'torch/_dynamo/__init__.py' 2025-04-25T04:47:33.6386442Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-04-25T04:47:33.6391833Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-04-25T04:47:33.6414638Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-04-25T04:47:33.6421498Z adding 'torch/_dynamo/cache_size.py' 2025-04-25T04:47:33.6425803Z adding 'torch/_dynamo/callback.py' 2025-04-25T04:47:33.6429536Z adding 'torch/_dynamo/code_context.py' 2025-04-25T04:47:33.6439960Z adding 'torch/_dynamo/codegen.py' 2025-04-25T04:47:33.6461517Z adding 'torch/_dynamo/compiled_autograd.py' 2025-04-25T04:47:33.6469573Z adding 'torch/_dynamo/comptime.py' 2025-04-25T04:47:33.6483194Z adding 'torch/_dynamo/config.py' 2025-04-25T04:47:33.6504723Z adding 'torch/_dynamo/convert_frame.py' 2025-04-25T04:47:33.6509964Z adding 'torch/_dynamo/create_parameter_op.py' 2025-04-25T04:47:33.6513515Z adding 'torch/_dynamo/current_scope_id.py' 2025-04-25T04:47:33.6526499Z adding 'torch/_dynamo/debug_utils.py' 2025-04-25T04:47:33.6538353Z adding 'torch/_dynamo/decorators.py' 2025-04-25T04:47:33.6545220Z adding 'torch/_dynamo/device_interface.py' 2025-04-25T04:47:33.6549112Z adding 'torch/_dynamo/distributed.py' 2025-04-25T04:47:33.6578397Z adding 'torch/_dynamo/eval_frame.py' 2025-04-25T04:47:33.6590395Z adding 'torch/_dynamo/exc.py' 2025-04-25T04:47:33.6595887Z adding 'torch/_dynamo/external_utils.py' 2025-04-25T04:47:33.6600033Z adding 'torch/_dynamo/funcname_cache.py' 2025-04-25T04:47:33.6603998Z adding 'torch/_dynamo/graph_break_hints.py' 2025-04-25T04:47:33.6609895Z adding 'torch/_dynamo/graph_deduplication.py' 2025-04-25T04:47:33.6617425Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-04-25T04:47:33.6621651Z adding 'torch/_dynamo/graph_utils.py' 2025-04-25T04:47:33.6672205Z adding 'torch/_dynamo/guards.py' 2025-04-25T04:47:33.6679032Z adding 'torch/_dynamo/hooks.py' 2025-04-25T04:47:33.6682881Z adding 'torch/_dynamo/logging.py' 2025-04-25T04:47:33.6687844Z adding 'torch/_dynamo/metrics_context.py' 2025-04-25T04:47:33.6693206Z adding 'torch/_dynamo/mutation_guard.py' 2025-04-25T04:47:33.6741190Z adding 'torch/_dynamo/output_graph.py' 2025-04-25T04:47:33.6755622Z adding 'torch/_dynamo/pgo.py' 2025-04-25T04:47:33.6775938Z adding 'torch/_dynamo/profiler.py' 2025-04-25T04:47:33.6776251Z adding 'torch/_dynamo/replay_record.py' 2025-04-25T04:47:33.6777000Z adding 'torch/_dynamo/resume_execution.py' 2025-04-25T04:47:33.6794608Z adding 'torch/_dynamo/side_effects.py' 2025-04-25T04:47:33.6804796Z adding 'torch/_dynamo/source.py' 2025-04-25T04:47:33.6864377Z adding 'torch/_dynamo/symbolic_convert.py' 2025-04-25T04:47:33.6872149Z adding 'torch/_dynamo/tensor_version_op.py' 2025-04-25T04:47:33.6876089Z adding 'torch/_dynamo/test_case.py' 2025-04-25T04:47:33.6882284Z adding 'torch/_dynamo/test_minifier_common.py' 2025-04-25T04:47:33.6889988Z adding 'torch/_dynamo/testing.py' 2025-04-25T04:47:33.6929438Z adding 'torch/_dynamo/trace_rules.py' 2025-04-25T04:47:33.6937891Z adding 'torch/_dynamo/types.py' 2025-04-25T04:47:33.6999836Z adding 'torch/_dynamo/utils.py' 2025-04-25T04:47:33.7007886Z adding 'torch/_dynamo/backends/__init__.py' 2025-04-25T04:47:33.7012438Z adding 'torch/_dynamo/backends/common.py' 2025-04-25T04:47:33.7018296Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-04-25T04:47:33.7025917Z adding 'torch/_dynamo/backends/debugging.py' 2025-04-25T04:47:33.7037682Z adding 'torch/_dynamo/backends/distributed.py' 2025-04-25T04:47:33.7042217Z adding 'torch/_dynamo/backends/inductor.py' 2025-04-25T04:47:33.7045879Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-04-25T04:47:33.7050477Z adding 'torch/_dynamo/backends/registry.py' 2025-04-25T04:47:33.7053950Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-04-25T04:47:33.7057448Z adding 'torch/_dynamo/backends/torchxla.py' 2025-04-25T04:47:33.7062666Z adding 'torch/_dynamo/backends/tvm.py' 2025-04-25T04:47:33.7069482Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-04-25T04:47:33.7073246Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-04-25T04:47:33.7076780Z adding 'torch/_dynamo/polyfills/functools.py' 2025-04-25T04:47:33.7080177Z adding 'torch/_dynamo/polyfills/fx.py' 2025-04-25T04:47:33.7084878Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-04-25T04:47:33.7088669Z adding 'torch/_dynamo/polyfills/loader.py' 2025-04-25T04:47:33.7092406Z adding 'torch/_dynamo/polyfills/operator.py' 2025-04-25T04:47:33.7095961Z adding 'torch/_dynamo/polyfills/os.py' 2025-04-25T04:47:33.7102707Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-04-25T04:47:33.7106517Z adding 'torch/_dynamo/polyfills/sys.py' 2025-04-25T04:47:33.7110006Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-04-25T04:47:33.7114019Z adding 'torch/_dynamo/repro/__init__.py' 2025-04-25T04:47:33.7128165Z adding 'torch/_dynamo/repro/after_aot.py' 2025-04-25T04:47:33.7137867Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-04-25T04:47:33.7147833Z adding 'torch/_dynamo/repro/aoti.py' 2025-04-25T04:47:33.7154131Z adding 'torch/_dynamo/variables/__init__.py' 2025-04-25T04:47:33.7163958Z adding 'torch/_dynamo/variables/base.py' 2025-04-25T04:47:33.7216643Z adding 'torch/_dynamo/variables/builder.py' 2025-04-25T04:47:33.7250951Z adding 'torch/_dynamo/variables/builtin.py' 2025-04-25T04:47:33.7259079Z adding 'torch/_dynamo/variables/constant.py' 2025-04-25T04:47:33.7274815Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-04-25T04:47:33.7289591Z adding 'torch/_dynamo/variables/dicts.py' 2025-04-25T04:47:33.7297854Z adding 'torch/_dynamo/variables/distributed.py' 2025-04-25T04:47:33.7326560Z adding 'torch/_dynamo/variables/functions.py' 2025-04-25T04:47:33.7367387Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-04-25T04:47:33.7377694Z adding 'torch/_dynamo/variables/iter.py' 2025-04-25T04:47:33.7383438Z adding 'torch/_dynamo/variables/lazy.py' 2025-04-25T04:47:33.7396208Z adding 'torch/_dynamo/variables/lists.py' 2025-04-25T04:47:33.7420472Z adding 'torch/_dynamo/variables/misc.py' 2025-04-25T04:47:33.7439177Z adding 'torch/_dynamo/variables/nn_module.py' 2025-04-25T04:47:33.7447892Z adding 'torch/_dynamo/variables/optimizer.py' 2025-04-25T04:47:33.7452470Z adding 'torch/_dynamo/variables/script_object.py' 2025-04-25T04:47:33.7456335Z adding 'torch/_dynamo/variables/sdpa.py' 2025-04-25T04:47:33.7477255Z adding 'torch/_dynamo/variables/tensor.py' 2025-04-25T04:47:33.7501993Z adding 'torch/_dynamo/variables/torch.py' 2025-04-25T04:47:33.7514391Z adding 'torch/_dynamo/variables/torch_function.py' 2025-04-25T04:47:33.7537995Z adding 'torch/_dynamo/variables/user_defined.py' 2025-04-25T04:47:33.7545787Z adding 'torch/_export/__init__.py' 2025-04-25T04:47:33.7569671Z adding 'torch/_export/converter.py' 2025-04-25T04:47:33.7575152Z adding 'torch/_export/error.py' 2025-04-25T04:47:33.7589073Z adding 'torch/_export/non_strict_utils.py' 2025-04-25T04:47:33.7597503Z adding 'torch/_export/pass_base.py' 2025-04-25T04:47:33.7602143Z adding 'torch/_export/tools.py' 2025-04-25T04:47:33.7625216Z adding 'torch/_export/utils.py' 2025-04-25T04:47:33.7634237Z adding 'torch/_export/verifier.py' 2025-04-25T04:47:33.7640422Z adding 'torch/_export/wrappers.py' 2025-04-25T04:47:33.7645124Z adding 'torch/_export/db/__init__.py' 2025-04-25T04:47:33.7649297Z adding 'torch/_export/db/case.py' 2025-04-25T04:47:33.7653037Z adding 'torch/_export/db/gen_example.py' 2025-04-25T04:47:33.7656866Z adding 'torch/_export/db/logging.py' 2025-04-25T04:47:33.7662599Z adding 'torch/_export/db/examples/__init__.py' 2025-04-25T04:47:33.7665674Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-04-25T04:47:33.7669093Z adding 'torch/_export/db/examples/autograd_function.py' 2025-04-25T04:47:33.7672321Z adding 'torch/_export/db/examples/class_method.py' 2025-04-25T04:47:33.7675988Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-04-25T04:47:33.7679765Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-04-25T04:47:33.7683308Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-04-25T04:47:33.7686790Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-04-25T04:47:33.7690068Z adding 'torch/_export/db/examples/cond_operands.py' 2025-04-25T04:47:33.7722818Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-04-25T04:47:33.7726607Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-04-25T04:47:33.7729899Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-04-25T04:47:33.7733205Z adding 'torch/_export/db/examples/decorator.py' 2025-04-25T04:47:33.7736409Z adding 'torch/_export/db/examples/dictionary.py' 2025-04-25T04:47:33.7739794Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-04-25T04:47:33.7743230Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-04-25T04:47:33.7746673Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-04-25T04:47:33.7750374Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-04-25T04:47:33.7753257Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-04-25T04:47:33.7756629Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-04-25T04:47:33.7759811Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-04-25T04:47:33.7779344Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-04-25T04:47:33.7779742Z adding 'torch/_export/db/examples/list_contains.py' 2025-04-25T04:47:33.7780112Z adding 'torch/_export/db/examples/list_unpack.py' 2025-04-25T04:47:33.7780509Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-04-25T04:47:33.7780980Z adding 'torch/_export/db/examples/nested_function.py' 2025-04-25T04:47:33.7781396Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-04-25T04:47:33.7785599Z adding 'torch/_export/db/examples/optional_input.py' 2025-04-25T04:47:33.7787878Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-04-25T04:47:33.7791781Z adding 'torch/_export/db/examples/scalar_output.py' 2025-04-25T04:47:33.7794507Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-04-25T04:47:33.7797985Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-04-25T04:47:33.7800936Z adding 'torch/_export/db/examples/static_if.py' 2025-04-25T04:47:33.7804214Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-04-25T04:47:33.7807421Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-04-25T04:47:33.7810569Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-04-25T04:47:33.7813642Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-04-25T04:47:33.7817847Z adding 'torch/_export/pass_infra/__init__.py' 2025-04-25T04:47:33.7821166Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-04-25T04:47:33.7824576Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-04-25T04:47:33.7831934Z adding 'torch/_export/passes/__init__.py' 2025-04-25T04:47:33.7832673Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-04-25T04:47:33.7838239Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-04-25T04:47:33.7842970Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-04-25T04:47:33.7849248Z adding 'torch/_export/passes/constant_folding.py' 2025-04-25T04:47:33.7853532Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-04-25T04:47:33.7857540Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-04-25T04:47:33.7864527Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-04-25T04:47:33.7868602Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-04-25T04:47:33.7873499Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-04-25T04:47:33.7883180Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-04-25T04:47:33.7887952Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-04-25T04:47:33.7891845Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-04-25T04:47:33.7896794Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-04-25T04:47:33.7901090Z adding 'torch/_export/serde/__init__.py' 2025-04-25T04:47:33.7904218Z adding 'torch/_export/serde/aoti_schema.py' 2025-04-25T04:47:33.7910033Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-04-25T04:47:33.7915276Z adding 'torch/_export/serde/export_schema.thrift' 2025-04-25T04:47:33.7922563Z adding 'torch/_export/serde/schema.py' 2025-04-25T04:47:33.7928021Z adding 'torch/_export/serde/schema.yaml' 2025-04-25T04:47:33.7937296Z adding 'torch/_export/serde/schema_check.py' 2025-04-25T04:47:33.7984616Z adding 'torch/_export/serde/serialize.py' 2025-04-25T04:47:33.7991672Z adding 'torch/_export/serde/union.py' 2025-04-25T04:47:33.7996100Z adding 'torch/_functorch/__init__.py' 2025-04-25T04:47:33.8025287Z adding 'torch/_functorch/aot_autograd.py' 2025-04-25T04:47:33.8035079Z adding 'torch/_functorch/apis.py' 2025-04-25T04:47:33.8047327Z adding 'torch/_functorch/autograd_function.py' 2025-04-25T04:47:33.8052308Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-04-25T04:47:33.8057204Z adding 'torch/_functorch/benchmark_utils.py' 2025-04-25T04:47:33.8062267Z adding 'torch/_functorch/compile_utils.py' 2025-04-25T04:47:33.8069342Z adding 'torch/_functorch/compilers.py' 2025-04-25T04:47:33.8077110Z adding 'torch/_functorch/config.py' 2025-04-25T04:47:33.8081777Z adding 'torch/_functorch/deprecated.py' 2025-04-25T04:47:33.8108263Z adding 'torch/_functorch/eager_transforms.py' 2025-04-25T04:47:33.8116175Z adding 'torch/_functorch/functional_call.py' 2025-04-25T04:47:33.8124345Z adding 'torch/_functorch/fx_minifier.py' 2025-04-25T04:47:33.8133609Z adding 'torch/_functorch/make_functional.py' 2025-04-25T04:47:33.8168994Z adding 'torch/_functorch/partitioners.py' 2025-04-25T04:47:33.8177022Z adding 'torch/_functorch/pyfunctorch.py' 2025-04-25T04:47:33.8180444Z adding 'torch/_functorch/python_key.py' 2025-04-25T04:47:33.8184157Z adding 'torch/_functorch/pytree_hacks.py' 2025-04-25T04:47:33.8192852Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-04-25T04:47:33.8196969Z adding 'torch/_functorch/utils.py' 2025-04-25T04:47:33.8205648Z adding 'torch/_functorch/vmap.py' 2025-04-25T04:47:33.8210542Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-04-25T04:47:33.8214884Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-04-25T04:47:33.8221049Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-04-25T04:47:33.8225690Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-04-25T04:47:33.8231718Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-04-25T04:47:33.8236273Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-04-25T04:47:33.8252510Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-04-25T04:47:33.8283012Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-04-25T04:47:33.8283543Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-04-25T04:47:33.8302683Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-04-25T04:47:33.8303161Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-04-25T04:47:33.8321973Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-04-25T04:47:33.8328121Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-04-25T04:47:33.8367850Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-04-25T04:47:33.8387813Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-04-25T04:47:33.8393098Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-04-25T04:47:33.8401399Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-04-25T04:47:33.8419474Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-04-25T04:47:33.8429346Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-04-25T04:47:33.8434618Z adding 'torch/_higher_order_ops/__init__.py' 2025-04-25T04:47:33.8438291Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-04-25T04:47:33.8442910Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-04-25T04:47:33.8450893Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-04-25T04:47:33.8461673Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-04-25T04:47:33.8467683Z adding 'torch/_higher_order_ops/base_hop.py' 2025-04-25T04:47:33.8479794Z adding 'torch/_higher_order_ops/cond.py' 2025-04-25T04:47:33.8486372Z adding 'torch/_higher_order_ops/effects.py' 2025-04-25T04:47:33.8491336Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-04-25T04:47:33.8495791Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-04-25T04:47:33.8508580Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-04-25T04:47:33.8512882Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-04-25T04:47:33.8517183Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-04-25T04:47:33.8525551Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-04-25T04:47:33.8531283Z adding 'torch/_higher_order_ops/map.py' 2025-04-25T04:47:33.8536053Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-04-25T04:47:33.8539786Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-04-25T04:47:33.8556643Z adding 'torch/_higher_order_ops/scan.py' 2025-04-25T04:47:33.8562338Z adding 'torch/_higher_order_ops/schema.py' 2025-04-25T04:47:33.8567011Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-04-25T04:47:33.8571512Z adding 'torch/_higher_order_ops/torchbind.py' 2025-04-25T04:47:33.8597978Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-04-25T04:47:33.8613934Z adding 'torch/_higher_order_ops/utils.py' 2025-04-25T04:47:33.8622927Z adding 'torch/_higher_order_ops/while_loop.py' 2025-04-25T04:47:33.8629151Z adding 'torch/_higher_order_ops/wrap.py' 2025-04-25T04:47:33.8635088Z adding 'torch/_inductor/__autotune_main__.py' 2025-04-25T04:47:33.8642288Z adding 'torch/_inductor/__init__.py' 2025-04-25T04:47:33.8647011Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-04-25T04:47:33.8652784Z adding 'torch/_inductor/aoti_eager.py' 2025-04-25T04:47:33.8661552Z adding 'torch/_inductor/async_compile.py' 2025-04-25T04:47:33.8672906Z adding 'torch/_inductor/autotune_process.py' 2025-04-25T04:47:33.8679739Z adding 'torch/_inductor/bounds.py' 2025-04-25T04:47:33.8686885Z adding 'torch/_inductor/choices.py' 2025-04-25T04:47:33.8736389Z adding 'torch/_inductor/codecache.py' 2025-04-25T04:47:33.8744988Z adding 'torch/_inductor/comm_analysis.py' 2025-04-25T04:47:33.8751335Z adding 'torch/_inductor/comm_lowering.py' 2025-04-25T04:47:33.8764153Z adding 'torch/_inductor/comms.py' 2025-04-25T04:47:33.8802942Z adding 'torch/_inductor/compile_fx.py' 2025-04-25T04:47:33.8811394Z adding 'torch/_inductor/compile_fx_async.py' 2025-04-25T04:47:33.8820042Z adding 'torch/_inductor/compile_fx_ext.py' 2025-04-25T04:47:33.8824876Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-04-25T04:47:33.8833627Z adding 'torch/_inductor/compiler_bisector.py' 2025-04-25T04:47:33.8864632Z adding 'torch/_inductor/config.py' 2025-04-25T04:47:33.8872964Z adding 'torch/_inductor/constant_folding.py' 2025-04-25T04:47:33.8894875Z adding 'torch/_inductor/cpp_builder.py' 2025-04-25T04:47:33.8903278Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-04-25T04:47:33.8945214Z adding 'torch/_inductor/cudagraph_trees.py' 2025-04-25T04:47:33.8954704Z adding 'torch/_inductor/cudagraph_utils.py' 2025-04-25T04:47:33.8958819Z adding 'torch/_inductor/custom_graph_pass.py' 2025-04-25T04:47:33.8971630Z adding 'torch/_inductor/debug.py' 2025-04-25T04:47:33.8985863Z adding 'torch/_inductor/decomposition.py' 2025-04-25T04:47:33.8998614Z adding 'torch/_inductor/dependencies.py' 2025-04-25T04:47:33.9004872Z adding 'torch/_inductor/dtype_propagation.py' 2025-04-25T04:47:33.9009639Z adding 'torch/_inductor/exc.py' 2025-04-25T04:47:33.9013185Z adding 'torch/_inductor/extern_node_serializer.py' 2025-04-25T04:47:33.9018962Z adding 'torch/_inductor/freezing.py' 2025-04-25T04:47:33.9022867Z adding 'torch/_inductor/freezing_utils.py' 2025-04-25T04:47:33.9036776Z adding 'torch/_inductor/fuzzer.py' 2025-04-25T04:47:33.9043408Z adding 'torch/_inductor/fx_utils.py' 2025-04-25T04:47:33.9081294Z adding 'torch/_inductor/graph.py' 2025-04-25T04:47:33.9087185Z adding 'torch/_inductor/hooks.py' 2025-04-25T04:47:33.9093838Z adding 'torch/_inductor/index_propagation.py' 2025-04-25T04:47:33.9099198Z adding 'torch/_inductor/inductor_prims.py' 2025-04-25T04:47:33.9200207Z adding 'torch/_inductor/ir.py' 2025-04-25T04:47:33.9212504Z adding 'torch/_inductor/jagged_lowerings.py' 2025-04-25T04:47:33.9222835Z adding 'torch/_inductor/loop_body.py' 2025-04-25T04:47:33.9306507Z adding 'torch/_inductor/lowering.py' 2025-04-25T04:47:33.9322235Z adding 'torch/_inductor/memory.py' 2025-04-25T04:47:33.9329736Z adding 'torch/_inductor/metrics.py' 2025-04-25T04:47:33.9341626Z adding 'torch/_inductor/mkldnn_ir.py' 2025-04-25T04:47:33.9354371Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-04-25T04:47:33.9360305Z adding 'torch/_inductor/mock_cache.py' 2025-04-25T04:47:33.9372207Z adding 'torch/_inductor/ops_handler.py' 2025-04-25T04:47:33.9377512Z adding 'torch/_inductor/optimize_indexing.py' 2025-04-25T04:47:33.9388674Z adding 'torch/_inductor/output_code.py' 2025-04-25T04:47:33.9419991Z adding 'torch/_inductor/pattern_matcher.py' 2025-04-25T04:47:33.9426610Z adding 'torch/_inductor/quantized_lowerings.py' 2025-04-25T04:47:33.9433280Z adding 'torch/_inductor/remote_cache.py' 2025-04-25T04:47:33.9500839Z adding 'torch/_inductor/scheduler.py' 2025-04-25T04:47:33.9508555Z adding 'torch/_inductor/script.ld' 2025-04-25T04:47:33.9540829Z adding 'torch/_inductor/select_algorithm.py' 2025-04-25T04:47:33.9556649Z adding 'torch/_inductor/sizevars.py' 2025-04-25T04:47:33.9562526Z adding 'torch/_inductor/standalone_compile.py' 2025-04-25T04:47:33.9567785Z adding 'torch/_inductor/subgraph_lowering.py' 2025-04-25T04:47:33.9576061Z adding 'torch/_inductor/template_heuristics.py' 2025-04-25T04:47:33.9580180Z adding 'torch/_inductor/test_case.py' 2025-04-25T04:47:33.9583710Z adding 'torch/_inductor/test_operators.py' 2025-04-25T04:47:33.9590485Z adding 'torch/_inductor/triton_bundler.py' 2025-04-25T04:47:33.9629050Z adding 'torch/_inductor/utils.py' 2025-04-25T04:47:33.9638115Z adding 'torch/_inductor/virtualized.py' 2025-04-25T04:47:33.9645650Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-04-25T04:47:33.9650363Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-04-25T04:47:33.9656504Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-04-25T04:47:33.9662814Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-04-25T04:47:33.9667601Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-04-25T04:47:33.9671586Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-04-25T04:47:33.9680239Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-04-25T04:47:33.9689286Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-04-25T04:47:33.9694627Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-04-25T04:47:33.9699706Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-04-25T04:47:33.9703815Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-04-25T04:47:33.9707449Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-04-25T04:47:33.9711862Z adding 'torch/_inductor/codegen/__init__.py' 2025-04-25T04:47:33.9715236Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-04-25T04:47:33.9720272Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-04-25T04:47:33.9752903Z adding 'torch/_inductor/codegen/common.py' 2025-04-25T04:47:33.9829258Z adding 'torch/_inductor/codegen/cpp.py' 2025-04-25T04:47:33.9840227Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-04-25T04:47:33.9855304Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-04-25T04:47:33.9878419Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-04-25T04:47:33.9888155Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-04-25T04:47:33.9907039Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-04-25T04:47:33.9920625Z adding 'torch/_inductor/codegen/cpp_prefix.h' 2025-04-25T04:47:33.9925895Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-04-25T04:47:33.9935055Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-04-25T04:47:33.9946531Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-04-25T04:47:33.9983326Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-04-25T04:47:33.9999648Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-04-25T04:47:34.0009769Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-04-25T04:47:34.0013690Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-04-25T04:47:34.0017767Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-04-25T04:47:34.0023461Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-04-25T04:47:34.0045919Z adding 'torch/_inductor/codegen/halide.py' 2025-04-25T04:47:34.0057565Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-04-25T04:47:34.0070189Z adding 'torch/_inductor/codegen/mps.py' 2025-04-25T04:47:34.0074564Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-04-25T04:47:34.0081988Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-04-25T04:47:34.0114318Z adding 'torch/_inductor/codegen/simd.py' 2025-04-25T04:47:34.0125613Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-04-25T04:47:34.0130609Z adding 'torch/_inductor/codegen/subgraph.py' 2025-04-25T04:47:34.0192932Z adding 'torch/_inductor/codegen/triton.py' 2025-04-25T04:47:34.0211814Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-04-25T04:47:34.0217873Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-04-25T04:47:34.0223200Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-04-25T04:47:34.0268638Z adding 'torch/_inductor/codegen/wrapper.py' 2025-04-25T04:47:34.0278651Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-04-25T04:47:34.0283342Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-04-25T04:47:34.0287934Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-04-25T04:47:34.0291964Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-04-25T04:47:34.0300991Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-04-25T04:47:34.0307722Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-04-25T04:47:34.0313813Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-04-25T04:47:34.0321916Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-04-25T04:47:34.0327461Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-04-25T04:47:34.0349065Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-04-25T04:47:34.0354734Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-04-25T04:47:34.0359751Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-04-25T04:47:34.0366932Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-04-25T04:47:34.0371363Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-04-25T04:47:34.0379848Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-04-25T04:47:34.0384716Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-04-25T04:47:34.0398147Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-04-25T04:47:34.0403331Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-04-25T04:47:34.0407823Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-04-25T04:47:34.0412036Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-04-25T04:47:34.0417806Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-04-25T04:47:34.0423042Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-04-25T04:47:34.0426653Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-04-25T04:47:34.0430462Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-04-25T04:47:34.0433929Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-04-25T04:47:34.0437775Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-04-25T04:47:34.0441310Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-04-25T04:47:34.0447902Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-04-25T04:47:34.0451776Z adding 'torch/_inductor/compile_worker/utils.py' 2025-04-25T04:47:34.0456037Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-04-25T04:47:34.0465501Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-04-25T04:47:34.0474490Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-04-25T04:47:34.0484037Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-04-25T04:47:34.0488777Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-04-25T04:47:34.0492676Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-04-25T04:47:34.0498570Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-04-25T04:47:34.0503876Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-04-25T04:47:34.0513093Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-04-25T04:47:34.0530146Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-04-25T04:47:34.0543147Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-04-25T04:47:34.0558311Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-04-25T04:47:34.0563963Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-04-25T04:47:34.0580123Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-04-25T04:47:34.0587384Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-04-25T04:47:34.0597564Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-04-25T04:47:34.0619529Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-04-25T04:47:34.0632064Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-04-25T04:47:34.0667122Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-04-25T04:47:34.0682386Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-04-25T04:47:34.0687444Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-04-25T04:47:34.0723973Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-04-25T04:47:34.0731850Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-04-25T04:47:34.0736426Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-04-25T04:47:34.0741489Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-04-25T04:47:34.0746541Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-04-25T04:47:34.0751772Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-04-25T04:47:34.0756424Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-04-25T04:47:34.0761138Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-04-25T04:47:34.0766469Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-04-25T04:47:34.0773435Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-04-25T04:47:34.0779972Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-04-25T04:47:34.0787006Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-04-25T04:47:34.0802400Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-04-25T04:47:34.0802974Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-04-25T04:47:34.0803516Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-04-25T04:47:34.0807112Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-04-25T04:47:34.0811895Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-04-25T04:47:34.0816807Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-04-25T04:47:34.0822099Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-04-25T04:47:34.0827293Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-04-25T04:47:34.0832079Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-04-25T04:47:34.0836031Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-04-25T04:47:34.0839709Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-04-25T04:47:34.0843114Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-04-25T04:47:34.0847098Z adding 'torch/_inductor/kernel/__init__.py' 2025-04-25T04:47:34.0852296Z adding 'torch/_inductor/kernel/bmm.py' 2025-04-25T04:47:34.0861280Z adding 'torch/_inductor/kernel/conv.py' 2025-04-25T04:47:34.0895099Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-04-25T04:47:34.0907239Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-04-25T04:47:34.0921158Z adding 'torch/_inductor/kernel/mm.py' 2025-04-25T04:47:34.0927681Z adding 'torch/_inductor/kernel/mm_common.py' 2025-04-25T04:47:34.0932537Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-04-25T04:47:34.0939374Z adding 'torch/_inductor/kernel/mm_scaled_grouped.py' 2025-04-25T04:47:34.0944102Z adding 'torch/_inductor/package/__init__.py' 2025-04-25T04:47:34.0947343Z adding 'torch/_inductor/package/build_package.py' 2025-04-25T04:47:34.0953260Z adding 'torch/_inductor/package/package.py' 2025-04-25T04:47:34.0956927Z adding 'torch/_inductor/package/pt2_archive_constants.py' 2025-04-25T04:47:34.0960913Z adding 'torch/_inductor/runtime/__init__.py' 2025-04-25T04:47:34.0969558Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-04-25T04:47:34.0975897Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-04-25T04:47:34.0979648Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-04-25T04:47:34.0983506Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-04-25T04:47:34.0989097Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-04-25T04:47:34.0993359Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-04-25T04:47:34.0998194Z adding 'torch/_inductor/runtime/hints.py' 2025-04-25T04:47:34.1002990Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-04-25T04:47:34.1008461Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-04-25T04:47:34.1012632Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-04-25T04:47:34.1025015Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-04-25T04:47:34.1063074Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-04-25T04:47:34.1070138Z adding 'torch/_lazy/__init__.py' 2025-04-25T04:47:34.1074615Z adding 'torch/_lazy/closure.py' 2025-04-25T04:47:34.1078054Z adding 'torch/_lazy/computation.py' 2025-04-25T04:47:34.1081178Z adding 'torch/_lazy/config.py' 2025-04-25T04:47:34.1084372Z adding 'torch/_lazy/debug.py' 2025-04-25T04:47:34.1087584Z adding 'torch/_lazy/device_context.py' 2025-04-25T04:47:34.1093014Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-04-25T04:47:34.1096398Z adding 'torch/_lazy/ir_cache.py' 2025-04-25T04:47:34.1099518Z adding 'torch/_lazy/metrics.py' 2025-04-25T04:47:34.1103088Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-04-25T04:47:34.1106425Z adding 'torch/_lazy/ts_backend.py' 2025-04-25T04:47:34.1110535Z adding 'torch/_library/__init__.py' 2025-04-25T04:47:34.1116006Z adding 'torch/_library/autograd.py' 2025-04-25T04:47:34.1129397Z adding 'torch/_library/custom_ops.py' 2025-04-25T04:47:34.1136826Z adding 'torch/_library/fake_class_registry.py' 2025-04-25T04:47:34.1142687Z adding 'torch/_library/fake_impl.py' 2025-04-25T04:47:34.1177232Z adding 'torch/_library/fake_profile.py' 2025-04-25T04:47:34.1183676Z adding 'torch/_library/infer_schema.py' 2025-04-25T04:47:34.1187817Z adding 'torch/_library/simple_registry.py' 2025-04-25T04:47:34.1194047Z adding 'torch/_library/triton.py' 2025-04-25T04:47:34.1202564Z adding 'torch/_library/utils.py' 2025-04-25T04:47:34.1207545Z adding 'torch/_logging/__init__.py' 2025-04-25T04:47:34.1227531Z adding 'torch/_logging/_internal.py' 2025-04-25T04:47:34.1233857Z adding 'torch/_logging/_registrations.py' 2025-04-25T04:47:34.1237805Z adding 'torch/_logging/scribe.py' 2025-04-25T04:47:34.1241994Z adding 'torch/_logging/structured.py' 2025-04-25T04:47:34.1246885Z adding 'torch/_numpy/__init__.py' 2025-04-25T04:47:34.1250234Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-04-25T04:47:34.1256779Z adding 'torch/_numpy/_casting_dicts.py' 2025-04-25T04:47:34.1264872Z adding 'torch/_numpy/_dtypes.py' 2025-04-25T04:47:34.1270240Z adding 'torch/_numpy/_dtypes_impl.py' 2025-04-25T04:47:34.1274074Z adding 'torch/_numpy/_funcs.py' 2025-04-25T04:47:34.1326340Z adding 'torch/_numpy/_funcs_impl.py' 2025-04-25T04:47:34.1326650Z adding 'torch/_numpy/_getlimits.py' 2025-04-25T04:47:34.1326943Z adding 'torch/_numpy/_ndarray.py' 2025-04-25T04:47:34.1327230Z adding 'torch/_numpy/_normalizations.py' 2025-04-25T04:47:34.1327554Z adding 'torch/_numpy/_reductions_impl.py' 2025-04-25T04:47:34.1329673Z adding 'torch/_numpy/_ufuncs.py' 2025-04-25T04:47:34.1333591Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-04-25T04:47:34.1339450Z adding 'torch/_numpy/_util.py' 2025-04-25T04:47:34.1343055Z adding 'torch/_numpy/fft.py' 2025-04-25T04:47:34.1347653Z adding 'torch/_numpy/linalg.py' 2025-04-25T04:47:34.1352290Z adding 'torch/_numpy/random.py' 2025-04-25T04:47:34.1356430Z adding 'torch/_numpy/testing/__init__.py' 2025-04-25T04:47:34.1385073Z adding 'torch/_numpy/testing/utils.py' 2025-04-25T04:47:34.1414892Z adding 'torch/_prims/__init__.py' 2025-04-25T04:47:34.1421671Z adding 'torch/_prims/context.py' 2025-04-25T04:47:34.1425492Z adding 'torch/_prims/debug_prims.py' 2025-04-25T04:47:34.1429260Z adding 'torch/_prims/executor.py' 2025-04-25T04:47:34.1435241Z adding 'torch/_prims/rng_prims.py' 2025-04-25T04:47:34.1463905Z adding 'torch/_prims_common/__init__.py' 2025-04-25T04:47:34.1473808Z adding 'torch/_prims_common/wrappers.py' 2025-04-25T04:47:34.1550457Z adding 'torch/_refs/__init__.py' 2025-04-25T04:47:34.1559423Z adding 'torch/_refs/_conversions.py' 2025-04-25T04:47:34.1566278Z adding 'torch/_refs/fft.py' 2025-04-25T04:47:34.1573615Z adding 'torch/_refs/linalg/__init__.py' 2025-04-25T04:47:34.1577707Z adding 'torch/_refs/nn/__init__.py' 2025-04-25T04:47:34.1592760Z adding 'torch/_refs/nn/functional/__init__.py' 2025-04-25T04:47:34.1598991Z adding 'torch/_refs/special/__init__.py' 2025-04-25T04:47:34.1603049Z adding 'torch/_strobelight/__init__.py' 2025-04-25T04:47:34.1608920Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-04-25T04:47:34.1614872Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-04-25T04:47:34.1618923Z adding 'torch/_subclasses/__init__.py' 2025-04-25T04:47:34.1624564Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-04-25T04:47:34.1639111Z adding 'torch/_subclasses/fake_impls.py' 2025-04-25T04:47:34.1690764Z adding 'torch/_subclasses/fake_tensor.py' 2025-04-25T04:47:34.1700213Z adding 'torch/_subclasses/fake_utils.py' 2025-04-25T04:47:34.1713388Z adding 'torch/_subclasses/functional_tensor.py' 2025-04-25T04:47:34.1745734Z adding 'torch/_subclasses/meta_utils.py' 2025-04-25T04:47:34.1753127Z adding 'torch/_subclasses/schema_check_mode.py' 2025-04-25T04:47:34.1757359Z adding 'torch/_vendor/__init__.py' 2025-04-25T04:47:34.1762324Z adding 'torch/_vendor/packaging/__init__.py' 2025-04-25T04:47:34.1764877Z adding 'torch/_vendor/packaging/_structures.py' 2025-04-25T04:47:34.1772297Z adding 'torch/_vendor/packaging/version.py' 2025-04-25T04:47:34.1778355Z adding 'torch/accelerator/__init__.py' 2025-04-25T04:47:34.1782105Z adding 'torch/accelerator/_utils.py' 2025-04-25T04:47:34.1786187Z adding 'torch/amp/__init__.py' 2025-04-25T04:47:34.1795524Z adding 'torch/amp/autocast_mode.py' 2025-04-25T04:47:34.1809455Z adding 'torch/amp/grad_scaler.py' 2025-04-25T04:47:34.1815034Z adding 'torch/ao/__init__.py' 2025-04-25T04:47:34.1819675Z adding 'torch/ao/nn/__init__.py' 2025-04-25T04:47:34.1824242Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-04-25T04:47:34.1828835Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-04-25T04:47:34.1833106Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-04-25T04:47:34.1837329Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-04-25T04:47:34.1841611Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-04-25T04:47:34.1850857Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-04-25T04:47:34.1856660Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-04-25T04:47:34.1860792Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-04-25T04:47:34.1864905Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-04-25T04:47:34.1868902Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-04-25T04:47:34.1872914Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-04-25T04:47:34.1876650Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-04-25T04:47:34.1880758Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-04-25T04:47:34.1884569Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-04-25T04:47:34.1888602Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-04-25T04:47:34.1893033Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-04-25T04:47:34.1897551Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-04-25T04:47:34.1901776Z adding 'torch/ao/nn/qat/__init__.py' 2025-04-25T04:47:34.1905710Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-04-25T04:47:34.1909618Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-04-25T04:47:34.1945502Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-04-25T04:47:34.1945887Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-04-25T04:47:34.1946202Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-04-25T04:47:34.1946535Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-04-25T04:47:34.1946871Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-04-25T04:47:34.1947209Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-04-25T04:47:34.1947563Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-04-25T04:47:34.1950541Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-04-25T04:47:34.1959748Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-04-25T04:47:34.1964741Z adding 'torch/ao/nn/quantized/__init__.py' 2025-04-25T04:47:34.1974186Z adding 'torch/ao/nn/quantized/functional.py' 2025-04-25T04:47:34.1978478Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-04-25T04:47:34.1982849Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-04-25T04:47:34.1988723Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-04-25T04:47:34.1994123Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-04-25T04:47:34.2009301Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-04-25T04:47:34.2016643Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-04-25T04:47:34.2022062Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-04-25T04:47:34.2026367Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-04-25T04:47:34.2036761Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-04-25T04:47:34.2041493Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-04-25T04:47:34.2047630Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-04-25T04:47:34.2052667Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-04-25T04:47:34.2059348Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-04-25T04:47:34.2064160Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-04-25T04:47:34.2068002Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-04-25T04:47:34.2072613Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-04-25T04:47:34.2077061Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-04-25T04:47:34.2081184Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-04-25T04:47:34.2086023Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-04-25T04:47:34.2090239Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-04-25T04:47:34.2098626Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-04-25T04:47:34.2103629Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-04-25T04:47:34.2109536Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-04-25T04:47:34.2113761Z adding 'torch/ao/nn/sparse/__init__.py' 2025-04-25T04:47:34.2117654Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-04-25T04:47:34.2122718Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-04-25T04:47:34.2126565Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-04-25T04:47:34.2130688Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-04-25T04:47:34.2135325Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-04-25T04:47:34.2139456Z adding 'torch/ao/ns/__init__.py' 2025-04-25T04:47:34.2147018Z adding 'torch/ao/ns/_numeric_suite.py' 2025-04-25T04:47:34.2162212Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-04-25T04:47:34.2167396Z adding 'torch/ao/ns/fx/__init__.py' 2025-04-25T04:47:34.2175576Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-04-25T04:47:34.2191132Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-04-25T04:47:34.2198747Z adding 'torch/ao/ns/fx/mappings.py' 2025-04-25T04:47:34.2217535Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-04-25T04:47:34.2222779Z adding 'torch/ao/ns/fx/ns_types.py' 2025-04-25T04:47:34.2227832Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-04-25T04:47:34.2233647Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-04-25T04:47:34.2241856Z adding 'torch/ao/ns/fx/utils.py' 2025-04-25T04:47:34.2247715Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-04-25T04:47:34.2252208Z adding 'torch/ao/pruning/__init__.py' 2025-04-25T04:47:34.2255373Z adding 'torch/ao/pruning/_mappings.py' 2025-04-25T04:47:34.2259326Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-04-25T04:47:34.2264407Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-04-25T04:47:34.2272817Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-04-25T04:47:34.2277044Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-04-25T04:47:34.2282349Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-04-25T04:47:34.2286793Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-04-25T04:47:34.2294052Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-04-25T04:47:34.2324361Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-04-25T04:47:34.2325008Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-04-25T04:47:34.2325606Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-04-25T04:47:34.2326247Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-04-25T04:47:34.2327000Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-04-25T04:47:34.2327778Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-04-25T04:47:34.2345424Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-04-25T04:47:34.2346085Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-04-25T04:47:34.2346614Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-04-25T04:47:34.2347184Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-04-25T04:47:34.2348557Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-04-25T04:47:34.2352555Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-04-25T04:47:34.2360109Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-04-25T04:47:34.2364451Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-04-25T04:47:34.2368407Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-04-25T04:47:34.2373657Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-04-25T04:47:34.2377709Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-04-25T04:47:34.2381878Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-04-25T04:47:34.2385916Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-04-25T04:47:34.2392567Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-04-25T04:47:34.2397908Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-04-25T04:47:34.2401560Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-04-25T04:47:34.2407143Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-04-25T04:47:34.2413200Z adding 'torch/ao/quantization/__init__.py' 2025-04-25T04:47:34.2417951Z adding 'torch/ao/quantization/_correct_bias.py' 2025-04-25T04:47:34.2423953Z adding 'torch/ao/quantization/_equalize.py' 2025-04-25T04:47:34.2429288Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-04-25T04:47:34.2437724Z adding 'torch/ao/quantization/fake_quantize.py' 2025-04-25T04:47:34.2443188Z adding 'torch/ao/quantization/fuse_modules.py' 2025-04-25T04:47:34.2448646Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-04-25T04:47:34.2475975Z adding 'torch/ao/quantization/observer.py' 2025-04-25T04:47:34.2486854Z adding 'torch/ao/quantization/qconfig.py' 2025-04-25T04:47:34.2494210Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-04-25T04:47:34.2498104Z adding 'torch/ao/quantization/quant_type.py' 2025-04-25T04:47:34.2504142Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-04-25T04:47:34.2516170Z adding 'torch/ao/quantization/quantize.py' 2025-04-25T04:47:34.2527234Z adding 'torch/ao/quantization/quantize_fx.py' 2025-04-25T04:47:34.2534499Z adding 'torch/ao/quantization/quantize_jit.py' 2025-04-25T04:47:34.2540248Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-04-25T04:47:34.2544267Z adding 'torch/ao/quantization/stubs.py' 2025-04-25T04:47:34.2555867Z adding 'torch/ao/quantization/utils.py' 2025-04-25T04:47:34.2561098Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-04-25T04:47:34.2569588Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-04-25T04:47:34.2574672Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-04-25T04:47:34.2585807Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-04-25T04:47:34.2592722Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-04-25T04:47:34.2597213Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-04-25T04:47:34.2601767Z adding 'torch/ao/quantization/backend_config/native.py' 2025-04-25T04:47:34.2605755Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-04-25T04:47:34.2611819Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-04-25T04:47:34.2616940Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-04-25T04:47:34.2620512Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-04-25T04:47:34.2626963Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-04-25T04:47:34.2631263Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-04-25T04:47:34.2635745Z adding 'torch/ao/quantization/fx/__init__.py' 2025-04-25T04:47:34.2647309Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-04-25T04:47:34.2663730Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-04-25T04:47:34.2681964Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-04-25T04:47:34.2704506Z adding 'torch/ao/quantization/fx/convert.py' 2025-04-25T04:47:34.2712730Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-04-25T04:47:34.2718322Z adding 'torch/ao/quantization/fx/fuse.py' 2025-04-25T04:47:34.2722950Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-04-25T04:47:34.2727827Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-04-25T04:47:34.2731163Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-04-25T04:47:34.2734549Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-04-25T04:47:34.2740303Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-04-25T04:47:34.2746147Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-04-25T04:47:34.2750334Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-04-25T04:47:34.2783442Z adding 'torch/ao/quantization/fx/prepare.py' 2025-04-25T04:47:34.2792843Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-04-25T04:47:34.2798205Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-04-25T04:47:34.2801806Z adding 'torch/ao/quantization/fx/tracer.py' 2025-04-25T04:47:34.2822364Z adding 'torch/ao/quantization/fx/utils.py' 2025-04-25T04:47:34.2822762Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-04-25T04:47:34.2847521Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-04-25T04:47:34.2860985Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-04-25T04:47:34.2868518Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-04-25T04:47:34.2880382Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-04-25T04:47:34.2885301Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-04-25T04:47:34.2896381Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-04-25T04:47:34.2904048Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-04-25T04:47:34.2908325Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-04-25T04:47:34.2913305Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-04-25T04:47:34.2918252Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-04-25T04:47:34.2922147Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-04-25T04:47:34.2928885Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-04-25T04:47:34.2938668Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-04-25T04:47:34.2952500Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-04-25T04:47:34.2963116Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-04-25T04:47:34.2967964Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-04-25T04:47:34.2976434Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-04-25T04:47:34.2981615Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-04-25T04:47:34.2985737Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-04-25T04:47:34.2990599Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-04-25T04:47:34.2994925Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-04-25T04:47:34.2999265Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-04-25T04:47:34.3017402Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-04-25T04:47:34.3026211Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-04-25T04:47:34.3038673Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-04-25T04:47:34.3043996Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-04-25T04:47:34.3055766Z adding 'torch/autograd/__init__.py' 2025-04-25T04:47:34.3061003Z adding 'torch/autograd/anomaly_mode.py' 2025-04-25T04:47:34.3066348Z adding 'torch/autograd/forward_ad.py' 2025-04-25T04:47:34.3079790Z adding 'torch/autograd/function.py' 2025-04-25T04:47:34.3097358Z adding 'torch/autograd/functional.py' 2025-04-25T04:47:34.3104783Z adding 'torch/autograd/grad_mode.py' 2025-04-25T04:47:34.3139595Z adding 'torch/autograd/gradcheck.py' 2025-04-25T04:47:34.3154373Z adding 'torch/autograd/graph.py' 2025-04-25T04:47:34.3173153Z adding 'torch/autograd/profiler.py' 2025-04-25T04:47:34.3180394Z adding 'torch/autograd/profiler_legacy.py' 2025-04-25T04:47:34.3196256Z adding 'torch/autograd/profiler_util.py' 2025-04-25T04:47:34.3200996Z adding 'torch/autograd/variable.py' 2025-04-25T04:47:34.3204583Z adding 'torch/autograd/_functions/__init__.py' 2025-04-25T04:47:34.3208300Z adding 'torch/autograd/_functions/tensor.py' 2025-04-25T04:47:34.3212299Z adding 'torch/autograd/_functions/utils.py' 2025-04-25T04:47:34.3216805Z adding 'torch/backends/__init__.py' 2025-04-25T04:47:34.3221039Z adding 'torch/backends/_coreml/__init__.py' 2025-04-25T04:47:34.3225383Z adding 'torch/backends/_coreml/preprocess.py' 2025-04-25T04:47:34.3229874Z adding 'torch/backends/_nnapi/__init__.py' 2025-04-25T04:47:34.3234239Z adding 'torch/backends/_nnapi/prepare.py' 2025-04-25T04:47:34.3259856Z adding 'torch/backends/_nnapi/serializer.py' 2025-04-25T04:47:34.3266099Z adding 'torch/backends/cpu/__init__.py' 2025-04-25T04:47:34.3273931Z adding 'torch/backends/cuda/__init__.py' 2025-04-25T04:47:34.3280180Z adding 'torch/backends/cudnn/__init__.py' 2025-04-25T04:47:34.3284221Z adding 'torch/backends/cudnn/rnn.py' 2025-04-25T04:47:34.3288658Z adding 'torch/backends/cusparselt/__init__.py' 2025-04-25T04:47:34.3292518Z adding 'torch/backends/kleidiai/__init__.py' 2025-04-25T04:47:34.3296713Z adding 'torch/backends/mha/__init__.py' 2025-04-25T04:47:34.3301288Z adding 'torch/backends/mkl/__init__.py' 2025-04-25T04:47:34.3310984Z adding 'torch/backends/mkldnn/__init__.py' 2025-04-25T04:47:34.3311448Z adding 'torch/backends/mps/__init__.py' 2025-04-25T04:47:34.3320038Z adding 'torch/backends/nnpack/__init__.py' 2025-04-25T04:47:34.3320412Z adding 'torch/backends/openmp/__init__.py' 2025-04-25T04:47:34.3324916Z adding 'torch/backends/opt_einsum/__init__.py' 2025-04-25T04:47:34.3330574Z adding 'torch/backends/quantized/__init__.py' 2025-04-25T04:47:34.3333283Z adding 'torch/backends/xeon/__init__.py' 2025-04-25T04:47:34.3346295Z adding 'torch/backends/xeon/run_cpu.py' 2025-04-25T04:47:34.3351345Z adding 'torch/backends/xnnpack/__init__.py' 2025-04-25T04:47:34.3571218Z adding 'torch/bin/FileStoreTest.exe' 2025-04-25T04:47:34.3778143Z adding 'torch/bin/ProcessGroupGlooAsyncTest.exe' 2025-04-25T04:47:34.4043562Z adding 'torch/bin/ProcessGroupGlooTest.exe' 2025-04-25T04:47:34.4288038Z adding 'torch/bin/TCPStoreTest.exe' 2025-04-25T04:47:34.4514465Z adding 'torch/bin/asmjit.dll' 2025-04-25T04:47:34.6157365Z adding 'torch/bin/fbgemm.dll' 2025-04-25T04:47:34.7788643Z adding 'torch/bin/protoc.exe' 2025-04-25T04:47:35.2424753Z adding 'torch/bin/test_api.exe' 2025-04-25T04:47:35.2847296Z adding 'torch/bin/test_edge_op_registration.exe' 2025-04-25T04:47:35.5468493Z adding 'torch/bin/test_jit.exe' 2025-04-25T04:47:35.6657328Z adding 'torch/bin/test_lazy.exe' 2025-04-25T04:47:36.0110365Z adding 'torch/bin/test_tensorexpr.exe' 2025-04-25T04:47:36.0332462Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-04-25T04:47:36.0346392Z adding 'torch/compiler/__init__.py' 2025-04-25T04:47:36.0352119Z adding 'torch/compiler/_cache.py' 2025-04-25T04:47:36.0356941Z adding 'torch/compiler/config.py' 2025-04-25T04:47:36.0360927Z adding 'torch/contrib/__init__.py' 2025-04-25T04:47:36.0365520Z adding 'torch/contrib/_tensorboard_vis.py' 2025-04-25T04:47:36.0370794Z adding 'torch/cpu/__init__.py' 2025-04-25T04:47:36.0374970Z adding 'torch/cpu/amp/__init__.py' 2025-04-25T04:47:36.0378602Z adding 'torch/cpu/amp/autocast_mode.py' 2025-04-25T04:47:36.0382152Z adding 'torch/cpu/amp/grad_scaler.py' 2025-04-25T04:47:36.0405190Z adding 'torch/cuda/__init__.py' 2025-04-25T04:47:36.0410265Z adding 'torch/cuda/_gpu_trace.py' 2025-04-25T04:47:36.0449358Z adding 'torch/cuda/_memory_viz.py' 2025-04-25T04:47:36.0449806Z adding 'torch/cuda/_sanitizer.py' 2025-04-25T04:47:36.0450156Z adding 'torch/cuda/_utils.py' 2025-04-25T04:47:36.0450425Z adding 'torch/cuda/comm.py' 2025-04-25T04:47:36.0450665Z adding 'torch/cuda/error.py' 2025-04-25T04:47:36.0450920Z adding 'torch/cuda/gds.py' 2025-04-25T04:47:36.0459094Z adding 'torch/cuda/graphs.py' 2025-04-25T04:47:36.0464757Z adding 'torch/cuda/jiterator.py' 2025-04-25T04:47:36.0483368Z adding 'torch/cuda/memory.py' 2025-04-25T04:47:36.0487439Z adding 'torch/cuda/nccl.py' 2025-04-25T04:47:36.0491510Z adding 'torch/cuda/nvtx.py' 2025-04-25T04:47:36.0495600Z adding 'torch/cuda/profiler.py' 2025-04-25T04:47:36.0499774Z adding 'torch/cuda/random.py' 2025-04-25T04:47:36.0503162Z adding 'torch/cuda/sparse.py' 2025-04-25T04:47:36.0508296Z adding 'torch/cuda/streams.py' 2025-04-25T04:47:36.0521026Z adding 'torch/cuda/tunable.py' 2025-04-25T04:47:36.0525876Z adding 'torch/cuda/amp/__init__.py' 2025-04-25T04:47:36.0529615Z adding 'torch/cuda/amp/autocast_mode.py' 2025-04-25T04:47:36.0532813Z adding 'torch/cuda/amp/common.py' 2025-04-25T04:47:36.0536135Z adding 'torch/cuda/amp/grad_scaler.py' 2025-04-25T04:47:36.0542391Z adding 'torch/distributed/__init__.py' 2025-04-25T04:47:36.0546003Z adding 'torch/distributed/_checkpointable.py' 2025-04-25T04:47:36.0549524Z adding 'torch/distributed/_composable_state.py' 2025-04-25T04:47:36.0565633Z adding 'torch/distributed/_functional_collectives.py' 2025-04-25T04:47:36.0570411Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-04-25T04:47:36.0574661Z adding 'torch/distributed/_serialization.py' 2025-04-25T04:47:36.0585959Z adding 'torch/distributed/_state_dict_utils.py' 2025-04-25T04:47:36.0590715Z adding 'torch/distributed/argparse_util.py' 2025-04-25T04:47:36.0594689Z adding 'torch/distributed/c10d_logger.py' 2025-04-25T04:47:36.0599810Z adding 'torch/distributed/collective_utils.py' 2025-04-25T04:47:36.0604844Z adding 'torch/distributed/constants.py' 2025-04-25T04:47:36.0622697Z adding 'torch/distributed/device_mesh.py' 2025-04-25T04:47:36.0699007Z adding 'torch/distributed/distributed_c10d.py' 2025-04-25T04:47:36.0709674Z adding 'torch/distributed/launch.py' 2025-04-25T04:47:36.0712909Z adding 'torch/distributed/logging_handlers.py' 2025-04-25T04:47:36.0717059Z adding 'torch/distributed/remote_device.py' 2025-04-25T04:47:36.0722742Z adding 'torch/distributed/rendezvous.py' 2025-04-25T04:47:36.0736682Z adding 'torch/distributed/run.py' 2025-04-25T04:47:36.0743900Z adding 'torch/distributed/utils.py' 2025-04-25T04:47:36.0748397Z adding 'torch/distributed/_composable/__init__.py' 2025-04-25T04:47:36.0752723Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-04-25T04:47:36.0758234Z adding 'torch/distributed/_composable/contract.py' 2025-04-25T04:47:36.0764084Z adding 'torch/distributed/_composable/replicate.py' 2025-04-25T04:47:36.0768298Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-04-25T04:47:36.0771456Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-04-25T04:47:36.0775421Z adding 'torch/distributed/_shard/__init__.py' 2025-04-25T04:47:36.0778714Z adding 'torch/distributed/_shard/_utils.py' 2025-04-25T04:47:36.0785035Z adding 'torch/distributed/_shard/api.py' 2025-04-25T04:47:36.0789140Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-04-25T04:47:36.0792841Z adding 'torch/distributed/_shard/metadata.py' 2025-04-25T04:47:36.0796232Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-04-25T04:47:36.0799512Z adding 'torch/distributed/_shard/sharder.py' 2025-04-25T04:47:36.0803590Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-04-25T04:47:36.0808021Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-04-25T04:47:36.0812276Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-04-25T04:47:36.0820003Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-04-25T04:47:36.0838856Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-04-25T04:47:36.0843909Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-04-25T04:47:36.0847429Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-04-25T04:47:36.0850968Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-04-25T04:47:36.0856648Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-04-25T04:47:36.0861061Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-04-25T04:47:36.0866541Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-04-25T04:47:36.0871124Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-04-25T04:47:36.0875410Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-04-25T04:47:36.0879463Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-04-25T04:47:36.0883964Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-04-25T04:47:36.0887425Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-04-25T04:47:36.0892487Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-04-25T04:47:36.0896729Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-04-25T04:47:36.0900981Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-04-25T04:47:36.0905207Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-04-25T04:47:36.0910672Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-04-25T04:47:36.0916741Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-04-25T04:47:36.0922746Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-04-25T04:47:36.0927456Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-04-25T04:47:36.0934660Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-04-25T04:47:36.0941776Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-04-25T04:47:36.0950731Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-04-25T04:47:36.0955807Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-04-25T04:47:36.0960312Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-04-25T04:47:36.0983544Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-04-25T04:47:36.0989559Z adding 'torch/distributed/_tensor/__init__.py' 2025-04-25T04:47:36.0992861Z adding 'torch/distributed/_tensor/api.py' 2025-04-25T04:47:36.0996222Z adding 'torch/distributed/_tensor/placement_types.py' 2025-04-25T04:47:36.1000211Z adding 'torch/distributed/_tools/__init__.py' 2025-04-25T04:47:36.1003599Z adding 'torch/distributed/_tools/common_utils.py' 2025-04-25T04:47:36.1008919Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-04-25T04:47:36.1017995Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-04-25T04:47:36.1024645Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-04-25T04:47:36.1040630Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-04-25T04:47:36.1054861Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-04-25T04:47:36.1055549Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-04-25T04:47:36.1065317Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-04-25T04:47:36.1081479Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-04-25T04:47:36.1088280Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-04-25T04:47:36.1092973Z adding 'torch/distributed/algorithms/__init__.py' 2025-04-25T04:47:36.1099664Z adding 'torch/distributed/algorithms/join.py' 2025-04-25T04:47:36.1104209Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-04-25T04:47:36.1110714Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-04-25T04:47:36.1114918Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-04-25T04:47:36.1119717Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-04-25T04:47:36.1123816Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-04-25T04:47:36.1128033Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-04-25T04:47:36.1131747Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-04-25T04:47:36.1135936Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-04-25T04:47:36.1141128Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-04-25T04:47:36.1148881Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-04-25T04:47:36.1152881Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-04-25T04:47:36.1157590Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-04-25T04:47:36.1161884Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-04-25T04:47:36.1166572Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-04-25T04:47:36.1171251Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-04-25T04:47:36.1186073Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-04-25T04:47:36.1191813Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-04-25T04:47:36.1195956Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-04-25T04:47:36.1200429Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-04-25T04:47:36.1206111Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-04-25T04:47:36.1210836Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-04-25T04:47:36.1214945Z adding 'torch/distributed/autograd/__init__.py' 2025-04-25T04:47:36.1219830Z adding 'torch/distributed/checkpoint/__init__.py' 2025-04-25T04:47:36.1223579Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-04-25T04:47:36.1229441Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-04-25T04:47:36.1233232Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-04-25T04:47:36.1237401Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-04-25T04:47:36.1241786Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-04-25T04:47:36.1245895Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-04-25T04:47:36.1250731Z adding 'torch/distributed/checkpoint/_extension.py' 2025-04-25T04:47:36.1255890Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-04-25T04:47:36.1259398Z adding 'torch/distributed/checkpoint/_hf_planner.py' 2025-04-25T04:47:36.1265114Z adding 'torch/distributed/checkpoint/_hf_storage.py' 2025-04-25T04:47:36.1269718Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-04-25T04:47:36.1273612Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-04-25T04:47:36.1277352Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-04-25T04:47:36.1282134Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-04-25T04:47:36.1285439Z adding 'torch/distributed/checkpoint/_version.py' 2025-04-25T04:47:36.1289111Z adding 'torch/distributed/checkpoint/api.py' 2025-04-25T04:47:36.1299452Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-04-25T04:47:36.1312764Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-04-25T04:47:36.1319728Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-04-25T04:47:36.1324219Z adding 'torch/distributed/checkpoint/logger.py' 2025-04-25T04:47:36.1328096Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-04-25T04:47:36.1332130Z adding 'torch/distributed/checkpoint/metadata.py' 2025-04-25T04:47:36.1339629Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-04-25T04:47:36.1347069Z adding 'torch/distributed/checkpoint/planner.py' 2025-04-25T04:47:36.1354804Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-04-25T04:47:36.1359050Z adding 'torch/distributed/checkpoint/resharding.py' 2025-04-25T04:47:36.1363687Z adding 'torch/distributed/checkpoint/staging.py' 2025-04-25T04:47:36.1383789Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-04-25T04:47:36.1391266Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-04-25T04:47:36.1398721Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-04-25T04:47:36.1402159Z adding 'torch/distributed/checkpoint/stateful.py' 2025-04-25T04:47:36.1407389Z adding 'torch/distributed/checkpoint/storage.py' 2025-04-25T04:47:36.1414796Z adding 'torch/distributed/checkpoint/utils.py' 2025-04-25T04:47:36.1420621Z adding 'torch/distributed/elastic/__init__.py' 2025-04-25T04:47:36.1424428Z adding 'torch/distributed/elastic/control_plane.py' 2025-04-25T04:47:36.1446219Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-04-25T04:47:36.1447450Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-04-25T04:47:36.1449889Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-04-25T04:47:36.1454770Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-04-25T04:47:36.1462398Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-04-25T04:47:36.1468486Z adding 'torch/distributed/elastic/events/__init__.py' 2025-04-25T04:47:36.1472866Z adding 'torch/distributed/elastic/events/api.py' 2025-04-25T04:47:36.1476237Z adding 'torch/distributed/elastic/events/handlers.py' 2025-04-25T04:47:36.1481945Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-04-25T04:47:36.1486419Z adding 'torch/distributed/elastic/metrics/api.py' 2025-04-25T04:47:36.1492644Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-04-25T04:47:36.1506251Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-04-25T04:47:36.1511134Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-04-25T04:47:36.1515664Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-04-25T04:47:36.1523972Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-04-25T04:47:36.1529338Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-04-25T04:47:36.1532863Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-04-25T04:47:36.1537010Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-04-25T04:47:36.1540391Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-04-25T04:47:36.1544312Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-04-25T04:47:36.1549975Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-04-25T04:47:36.1553664Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-04-25T04:47:36.1560115Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-04-25T04:47:36.1566497Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-04-25T04:47:36.1583191Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-04-25T04:47:36.1600440Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-04-25T04:47:36.1606887Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-04-25T04:47:36.1612406Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-04-25T04:47:36.1617911Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-04-25T04:47:36.1622439Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-04-25T04:47:36.1626654Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-04-25T04:47:36.1632231Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-04-25T04:47:36.1637363Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-04-25T04:47:36.1643429Z adding 'torch/distributed/elastic/timer/api.py' 2025-04-25T04:47:36.1646762Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-04-25T04:47:36.1654940Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-04-25T04:47:36.1659110Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-04-25T04:47:36.1663846Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-04-25T04:47:36.1667533Z adding 'torch/distributed/elastic/utils/api.py' 2025-04-25T04:47:36.1672935Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-04-25T04:47:36.1675844Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-04-25T04:47:36.1679748Z adding 'torch/distributed/elastic/utils/logging.py' 2025-04-25T04:47:36.1685005Z adding 'torch/distributed/elastic/utils/store.py' 2025-04-25T04:47:36.1690250Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-04-25T04:47:36.1693262Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-04-25T04:47:36.1697322Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-04-25T04:47:36.1702162Z adding 'torch/distributed/fsdp/__init__.py' 2025-04-25T04:47:36.1712334Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-04-25T04:47:36.1717727Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-04-25T04:47:36.1721952Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-04-25T04:47:36.1728944Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-04-25T04:47:36.1774257Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-04-25T04:47:36.1781746Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-04-25T04:47:36.1800161Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-04-25T04:47:36.1804918Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-04-25T04:47:36.1838980Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-04-25T04:47:36.1866888Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-04-25T04:47:36.1873079Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-04-25T04:47:36.1885306Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-04-25T04:47:36.1892313Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-04-25T04:47:36.1897165Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-04-25T04:47:36.1903412Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-04-25T04:47:36.1909727Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-04-25T04:47:36.1918763Z adding 'torch/distributed/fsdp/api.py' 2025-04-25T04:47:36.1954123Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-04-25T04:47:36.1963509Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-04-25T04:47:36.1973486Z adding 'torch/distributed/fsdp/wrap.py' 2025-04-25T04:47:36.1978679Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-04-25T04:47:36.1982814Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-04-25T04:47:36.1992708Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-04-25T04:47:36.1997910Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-04-25T04:47:36.2003872Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-04-25T04:47:36.2019578Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-04-25T04:47:36.2033411Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-04-25T04:47:36.2041494Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-04-25T04:47:36.2052959Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-04-25T04:47:36.2057741Z adding 'torch/distributed/launcher/__init__.py' 2025-04-25T04:47:36.2063954Z adding 'torch/distributed/launcher/api.py' 2025-04-25T04:47:36.2068243Z adding 'torch/distributed/nn/__init__.py' 2025-04-25T04:47:36.2074610Z adding 'torch/distributed/nn/functional.py' 2025-04-25T04:47:36.2079002Z adding 'torch/distributed/nn/api/__init__.py' 2025-04-25T04:47:36.2089665Z adding 'torch/distributed/nn/api/remote_module.py' 2025-04-25T04:47:36.2094227Z adding 'torch/distributed/nn/jit/__init__.py' 2025-04-25T04:47:36.2098605Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-04-25T04:47:36.2102772Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-04-25T04:47:36.2106736Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-04-25T04:47:36.2111175Z adding 'torch/distributed/optim/__init__.py' 2025-04-25T04:47:36.2115031Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-04-25T04:47:36.2119011Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-04-25T04:47:36.2123152Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-04-25T04:47:36.2127775Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-04-25T04:47:36.2132469Z adding 'torch/distributed/optim/functional_adam.py' 2025-04-25T04:47:36.2138140Z adding 'torch/distributed/optim/functional_adamax.py' 2025-04-25T04:47:36.2143593Z adding 'torch/distributed/optim/functional_adamw.py' 2025-04-25T04:47:36.2148059Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-04-25T04:47:36.2153265Z adding 'torch/distributed/optim/functional_rprop.py' 2025-04-25T04:47:36.2157119Z adding 'torch/distributed/optim/functional_sgd.py' 2025-04-25T04:47:36.2164522Z adding 'torch/distributed/optim/named_optimizer.py' 2025-04-25T04:47:36.2170757Z adding 'torch/distributed/optim/optimizer.py' 2025-04-25T04:47:36.2175111Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-04-25T04:47:36.2179113Z adding 'torch/distributed/optim/utils.py' 2025-04-25T04:47:36.2206414Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-04-25T04:47:36.2211905Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-04-25T04:47:36.2233712Z adding 'torch/distributed/pipelining/_IR.py' 2025-04-25T04:47:36.2238418Z adding 'torch/distributed/pipelining/__init__.py' 2025-04-25T04:47:36.2246371Z adding 'torch/distributed/pipelining/_backward.py' 2025-04-25T04:47:36.2249777Z adding 'torch/distributed/pipelining/_debug.py' 2025-04-25T04:47:36.2254832Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-04-25T04:47:36.2258560Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-04-25T04:47:36.2262676Z adding 'torch/distributed/pipelining/_utils.py' 2025-04-25T04:47:36.2270679Z adding 'torch/distributed/pipelining/microbatch.py' 2025-04-25T04:47:36.2304476Z adding 'torch/distributed/pipelining/schedules.py' 2025-04-25T04:47:36.2331292Z adding 'torch/distributed/pipelining/stage.py' 2025-04-25T04:47:36.2340682Z adding 'torch/distributed/rpc/__init__.py' 2025-04-25T04:47:36.2343706Z adding 'torch/distributed/rpc/_utils.py' 2025-04-25T04:47:36.2356810Z adding 'torch/distributed/rpc/api.py' 2025-04-25T04:47:36.2365312Z adding 'torch/distributed/rpc/backend_registry.py' 2025-04-25T04:47:36.2369364Z adding 'torch/distributed/rpc/constants.py' 2025-04-25T04:47:36.2373873Z adding 'torch/distributed/rpc/functions.py' 2025-04-25T04:47:36.2380028Z adding 'torch/distributed/rpc/internal.py' 2025-04-25T04:47:36.2385469Z adding 'torch/distributed/rpc/options.py' 2025-04-25T04:47:36.2389601Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-04-25T04:47:36.2394985Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-04-25T04:47:36.2399406Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-04-25T04:47:36.2402996Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-04-25T04:47:36.2407995Z adding 'torch/distributed/tensor/__init__.py' 2025-04-25T04:47:36.2427459Z adding 'torch/distributed/tensor/_api.py' 2025-04-25T04:47:36.2435890Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-04-25T04:47:36.2446066Z adding 'torch/distributed/tensor/_dispatch.py' 2025-04-25T04:47:36.2452661Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-04-25T04:47:36.2461940Z adding 'torch/distributed/tensor/_op_schema.py' 2025-04-25T04:47:36.2470834Z adding 'torch/distributed/tensor/_random.py' 2025-04-25T04:47:36.2477638Z adding 'torch/distributed/tensor/_redistribute.py' 2025-04-25T04:47:36.2486922Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-04-25T04:47:36.2493566Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-04-25T04:47:36.2499017Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-04-25T04:47:36.2506400Z adding 'torch/distributed/tensor/_utils.py' 2025-04-25T04:47:36.2509930Z adding 'torch/distributed/tensor/device_mesh.py' 2025-04-25T04:47:36.2521155Z adding 'torch/distributed/tensor/placement_types.py' 2025-04-25T04:47:36.2525831Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-04-25T04:47:36.2532479Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-04-25T04:47:36.2536720Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-04-25T04:47:36.2541688Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-04-25T04:47:36.2547303Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-04-25T04:47:36.2560045Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-04-25T04:47:36.2570578Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-04-25T04:47:36.2579086Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-04-25T04:47:36.2583244Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-04-25T04:47:36.2596602Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-04-25T04:47:36.2607604Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-04-25T04:47:36.2614103Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-04-25T04:47:36.2618682Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-04-25T04:47:36.2628513Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-04-25T04:47:36.2633241Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-04-25T04:47:36.2638237Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-04-25T04:47:36.2642716Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-04-25T04:47:36.2659656Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-04-25T04:47:36.2666897Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-04-25T04:47:36.2671866Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-04-25T04:47:36.2680337Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-04-25T04:47:36.2685036Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-04-25T04:47:36.2688909Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-04-25T04:47:36.2693012Z adding 'torch/distributed/tensor/parallel/_utils.py' 2025-04-25T04:47:36.2697562Z adding 'torch/distributed/tensor/parallel/api.py' 2025-04-25T04:47:36.2702169Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-04-25T04:47:36.2709054Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-04-25T04:47:36.2713675Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-04-25T04:47:36.2721398Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-04-25T04:47:36.2732564Z adding 'torch/distributed/tensor/parallel/style.py' 2025-04-25T04:47:36.2740109Z adding 'torch/distributions/__init__.py' 2025-04-25T04:47:36.2744803Z adding 'torch/distributions/bernoulli.py' 2025-04-25T04:47:36.2748993Z adding 'torch/distributions/beta.py' 2025-04-25T04:47:36.2753935Z adding 'torch/distributions/binomial.py' 2025-04-25T04:47:36.2758901Z adding 'torch/distributions/categorical.py' 2025-04-25T04:47:36.2763444Z adding 'torch/distributions/cauchy.py' 2025-04-25T04:47:36.2766560Z adding 'torch/distributions/chi2.py' 2025-04-25T04:47:36.2772087Z adding 'torch/distributions/constraint_registry.py' 2025-04-25T04:47:36.2780856Z adding 'torch/distributions/constraints.py' 2025-04-25T04:47:36.2786403Z adding 'torch/distributions/continuous_bernoulli.py' 2025-04-25T04:47:36.2790496Z adding 'torch/distributions/dirichlet.py' 2025-04-25T04:47:36.2796734Z adding 'torch/distributions/distribution.py' 2025-04-25T04:47:36.2801273Z adding 'torch/distributions/exp_family.py' 2025-04-25T04:47:36.2805154Z adding 'torch/distributions/exponential.py' 2025-04-25T04:47:36.2808954Z adding 'torch/distributions/fishersnedecor.py' 2025-04-25T04:47:36.2813193Z adding 'torch/distributions/gamma.py' 2025-04-25T04:47:36.2817824Z adding 'torch/distributions/generalized_pareto.py' 2025-04-25T04:47:36.2822676Z adding 'torch/distributions/geometric.py' 2025-04-25T04:47:36.2826694Z adding 'torch/distributions/gumbel.py' 2025-04-25T04:47:36.2830860Z adding 'torch/distributions/half_cauchy.py' 2025-04-25T04:47:36.2834678Z adding 'torch/distributions/half_normal.py' 2025-04-25T04:47:36.2840063Z adding 'torch/distributions/independent.py' 2025-04-25T04:47:36.2842844Z adding 'torch/distributions/inverse_gamma.py' 2025-04-25T04:47:36.2853999Z adding 'torch/distributions/kl.py' 2025-04-25T04:47:36.2858950Z adding 'torch/distributions/kumaraswamy.py' 2025-04-25T04:47:36.2863298Z adding 'torch/distributions/laplace.py' 2025-04-25T04:47:36.2868531Z adding 'torch/distributions/lkj_cholesky.py' 2025-04-25T04:47:36.2872303Z adding 'torch/distributions/log_normal.py' 2025-04-25T04:47:36.2876203Z adding 'torch/distributions/logistic_normal.py' 2025-04-25T04:47:36.2881943Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-04-25T04:47:36.2887394Z adding 'torch/distributions/mixture_same_family.py' 2025-04-25T04:47:36.2892406Z adding 'torch/distributions/multinomial.py' 2025-04-25T04:47:36.2898340Z adding 'torch/distributions/multivariate_normal.py' 2025-04-25T04:47:36.2903662Z adding 'torch/distributions/negative_binomial.py' 2025-04-25T04:47:36.2907434Z adding 'torch/distributions/normal.py' 2025-04-25T04:47:36.2911995Z adding 'torch/distributions/one_hot_categorical.py' 2025-04-25T04:47:36.2916000Z adding 'torch/distributions/pareto.py' 2025-04-25T04:47:36.2919737Z adding 'torch/distributions/poisson.py' 2025-04-25T04:47:36.2924471Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-04-25T04:47:36.2929168Z adding 'torch/distributions/relaxed_categorical.py' 2025-04-25T04:47:36.2933515Z adding 'torch/distributions/studentT.py' 2025-04-25T04:47:36.2945060Z adding 'torch/distributions/transformed_distribution.py' 2025-04-25T04:47:36.2954137Z adding 'torch/distributions/transforms.py' 2025-04-25T04:47:36.2959418Z adding 'torch/distributions/uniform.py' 2025-04-25T04:47:36.2964917Z adding 'torch/distributions/utils.py' 2025-04-25T04:47:36.2970736Z adding 'torch/distributions/von_mises.py' 2025-04-25T04:47:36.2974090Z adding 'torch/distributions/weibull.py' 2025-04-25T04:47:36.2980763Z adding 'torch/distributions/wishart.py' 2025-04-25T04:47:36.2991405Z adding 'torch/export/__init__.py' 2025-04-25T04:47:36.3001039Z adding 'torch/export/_draft_export.py' 2025-04-25T04:47:36.3005578Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-04-25T04:47:36.3010349Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-04-25T04:47:36.3014145Z adding 'torch/export/_safeguard.py' 2025-04-25T04:47:36.3021854Z adding 'torch/export/_swap.py' 2025-04-25T04:47:36.3055272Z adding 'torch/export/_trace.py' 2025-04-25T04:47:36.3061251Z adding 'torch/export/_tree_utils.py' 2025-04-25T04:47:36.3068803Z adding 'torch/export/_unlift.py' 2025-04-25T04:47:36.3072397Z adding 'torch/export/_wrapper_utils.py' 2025-04-25T04:47:36.3075502Z adding 'torch/export/custom_obj.py' 2025-04-25T04:47:36.3078784Z adding 'torch/export/custom_ops.py' 2025-04-25T04:47:36.3083110Z adding 'torch/export/decomp_utils.py' 2025-04-25T04:47:36.3102793Z adding 'torch/export/dynamic_shapes.py' 2025-04-25T04:47:36.3126786Z adding 'torch/export/exported_program.py' 2025-04-25T04:47:36.3136620Z adding 'torch/export/graph_signature.py' 2025-04-25T04:47:36.3163689Z adding 'torch/export/unflatten.py' 2025-04-25T04:47:36.3170030Z adding 'torch/export/experimental/__init__.py' 2025-04-25T04:47:36.3174484Z adding 'torch/export/passes/__init__.py' 2025-04-25T04:47:36.3188415Z adding 'torch/fft/__init__.py' 2025-04-25T04:47:36.3193874Z adding 'torch/func/__init__.py' 2025-04-25T04:47:36.3201542Z adding 'torch/futures/__init__.py' 2025-04-25T04:47:36.3207204Z adding 'torch/fx/__init__.py' 2025-04-25T04:47:36.3210678Z adding 'torch/fx/_compatibility.py' 2025-04-25T04:47:36.3218966Z adding 'torch/fx/_graph_pickler.py' 2025-04-25T04:47:36.3224512Z adding 'torch/fx/_lazy_graph_module.py' 2025-04-25T04:47:36.3228552Z adding 'torch/fx/_pytree.py' 2025-04-25T04:47:36.3248512Z adding 'torch/fx/_symbolic_trace.py' 2025-04-25T04:47:36.3253310Z adding 'torch/fx/_utils.py' 2025-04-25T04:47:36.3256887Z adding 'torch/fx/annotate.py' 2025-04-25T04:47:36.3259811Z adding 'torch/fx/config.py' 2025-04-25T04:47:36.3289178Z adding 'torch/fx/graph.py' 2025-04-25T04:47:36.3308142Z adding 'torch/fx/graph_module.py' 2025-04-25T04:47:36.3312850Z adding 'torch/fx/immutable_collections.py' 2025-04-25T04:47:36.3321991Z adding 'torch/fx/interpreter.py' 2025-04-25T04:47:36.3336547Z adding 'torch/fx/node.py' 2025-04-25T04:47:36.3346893Z adding 'torch/fx/operator_schemas.py' 2025-04-25T04:47:36.3359223Z adding 'torch/fx/proxy.py' 2025-04-25T04:47:36.3368217Z adding 'torch/fx/subgraph_rewriter.py' 2025-04-25T04:47:36.3371952Z adding 'torch/fx/tensor_type.py' 2025-04-25T04:47:36.3377064Z adding 'torch/fx/traceback.py' 2025-04-25T04:47:36.3381997Z adding 'torch/fx/experimental/__init__.py' 2025-04-25T04:47:36.3385783Z adding 'torch/fx/experimental/_backward_state.py' 2025-04-25T04:47:36.3389833Z adding 'torch/fx/experimental/_config.py' 2025-04-25T04:47:36.3393579Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-04-25T04:47:36.3397951Z adding 'torch/fx/experimental/_dynamism.py' 2025-04-25T04:47:36.3415522Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-04-25T04:47:36.3423453Z adding 'torch/fx/experimental/const_fold.py' 2025-04-25T04:47:36.3427292Z adding 'torch/fx/experimental/debug.py' 2025-04-25T04:47:36.3439805Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-04-25T04:47:36.3454765Z adding 'torch/fx/experimental/merge_matmul.py' 2025-04-25T04:47:36.3455119Z adding 'torch/fx/experimental/meta_tracer.py' 2025-04-25T04:47:36.3457709Z adding 'torch/fx/experimental/normalize.py' 2025-04-25T04:47:36.3473597Z adding 'torch/fx/experimental/optimization.py' 2025-04-25T04:47:36.3474541Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-04-25T04:47:36.3511525Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-04-25T04:47:36.3522762Z adding 'torch/fx/experimental/recording.py' 2025-04-25T04:47:36.3526836Z adding 'torch/fx/experimental/refinement_types.py' 2025-04-25T04:47:36.3531387Z adding 'torch/fx/experimental/rewriter.py' 2025-04-25T04:47:36.3536009Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-04-25T04:47:36.3558444Z adding 'torch/fx/experimental/sym_node.py' 2025-04-25T04:47:36.3685751Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-04-25T04:47:36.3697120Z adding 'torch/fx/experimental/unify_refinements.py' 2025-04-25T04:47:36.3710748Z adding 'torch/fx/experimental/validator.py' 2025-04-25T04:47:36.3716008Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-04-25T04:47:36.3722291Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-04-25T04:47:36.3738315Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-04-25T04:47:36.3754478Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-04-25T04:47:36.3758514Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-04-25T04:47:36.3766186Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-04-25T04:47:36.3769255Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-04-25T04:47:36.3772783Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-04-25T04:47:36.3777510Z adding 'torch/fx/experimental/unification/__init__.py' 2025-04-25T04:47:36.3780939Z adding 'torch/fx/experimental/unification/core.py' 2025-04-25T04:47:36.3784285Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-04-25T04:47:36.3788245Z adding 'torch/fx/experimental/unification/match.py' 2025-04-25T04:47:36.3792364Z adding 'torch/fx/experimental/unification/more.py' 2025-04-25T04:47:36.3798467Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-04-25T04:47:36.3802877Z adding 'torch/fx/experimental/unification/utils.py' 2025-04-25T04:47:36.3807196Z adding 'torch/fx/experimental/unification/variable.py' 2025-04-25T04:47:36.3810981Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-04-25T04:47:36.3815911Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-04-25T04:47:36.3819351Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-04-25T04:47:36.3826574Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-04-25T04:47:36.3831332Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-04-25T04:47:36.3836207Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-04-25T04:47:36.3839855Z adding 'torch/fx/passes/__init__.py' 2025-04-25T04:47:36.3847724Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-04-25T04:47:36.3851442Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-04-25T04:47:36.3855461Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-04-25T04:47:36.3863237Z adding 'torch/fx/passes/graph_drawer.py' 2025-04-25T04:47:36.3868248Z adding 'torch/fx/passes/graph_manipulation.py' 2025-04-25T04:47:36.3873290Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-04-25T04:47:36.3888749Z adding 'torch/fx/passes/net_min_base.py' 2025-04-25T04:47:36.3895256Z adding 'torch/fx/passes/operator_support.py' 2025-04-25T04:47:36.3899201Z adding 'torch/fx/passes/param_fetch.py' 2025-04-25T04:47:36.3904257Z adding 'torch/fx/passes/pass_manager.py' 2025-04-25T04:47:36.3919285Z adding 'torch/fx/passes/reinplace.py' 2025-04-25T04:47:36.3930950Z adding 'torch/fx/passes/runtime_assert.py' 2025-04-25T04:47:36.3936805Z adding 'torch/fx/passes/shape_prop.py' 2025-04-25T04:47:36.3960827Z adding 'torch/fx/passes/split_module.py' 2025-04-25T04:47:36.3961150Z adding 'torch/fx/passes/split_utils.py' 2025-04-25T04:47:36.3969602Z adding 'torch/fx/passes/splitter_base.py' 2025-04-25T04:47:36.3976690Z adding 'torch/fx/passes/tools_common.py' 2025-04-25T04:47:36.3981324Z adding 'torch/fx/passes/backends/__init__.py' 2025-04-25T04:47:36.3985673Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-04-25T04:47:36.3988842Z adding 'torch/fx/passes/dialect/__init__.py' 2025-04-25T04:47:36.3992460Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-04-25T04:47:36.3996988Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-04-25T04:47:36.4000965Z adding 'torch/fx/passes/infra/__init__.py' 2025-04-25T04:47:36.4008086Z adding 'torch/fx/passes/infra/partitioner.py' 2025-04-25T04:47:36.4013164Z adding 'torch/fx/passes/infra/pass_base.py' 2025-04-25T04:47:36.4018445Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-04-25T04:47:36.4023055Z adding 'torch/fx/passes/tests/__init__.py' 2025-04-25T04:47:36.4026420Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-04-25T04:47:36.4030202Z adding 'torch/fx/passes/utils/__init__.py' 2025-04-25T04:47:36.4034000Z adding 'torch/fx/passes/utils/common.py' 2025-04-25T04:47:36.4039787Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-04-25T04:47:36.4047879Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-04-25T04:47:36.4052590Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-04-25T04:47:36.4057197Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-04-25T04:47:36.4072365Z adding 'torch/include/cpuinfo.h' 2025-04-25T04:47:36.4077071Z adding 'torch/include/dnnl.h' 2025-04-25T04:47:36.4080320Z adding 'torch/include/dnnl.hpp' 2025-04-25T04:47:36.4083508Z adding 'torch/include/dnnl_config.h' 2025-04-25T04:47:36.4086664Z adding 'torch/include/dnnl_debug.h' 2025-04-25T04:47:36.4089805Z adding 'torch/include/dnnl_ocl.h' 2025-04-25T04:47:36.4092925Z adding 'torch/include/dnnl_ocl.hpp' 2025-04-25T04:47:36.4096053Z adding 'torch/include/dnnl_sycl.h' 2025-04-25T04:47:36.4099784Z adding 'torch/include/dnnl_sycl.hpp' 2025-04-25T04:47:36.4102945Z adding 'torch/include/dnnl_sycl_types.h' 2025-04-25T04:47:36.4106077Z adding 'torch/include/dnnl_threadpool.h' 2025-04-25T04:47:36.4152010Z adding 'torch/include/dnnl_threadpool.hpp' 2025-04-25T04:47:36.4152393Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-04-25T04:47:36.4152724Z adding 'torch/include/dnnl_types.h' 2025-04-25T04:47:36.4153226Z adding 'torch/include/dnnl_version.h' 2025-04-25T04:47:36.4153543Z adding 'torch/include/experiments-config.h' 2025-04-25T04:47:36.4153872Z adding 'torch/include/fp16.h' 2025-04-25T04:47:36.4154143Z adding 'torch/include/fxdiv.h' 2025-04-25T04:47:36.4154406Z adding 'torch/include/libshm.h' 2025-04-25T04:47:36.4154675Z adding 'torch/include/psimd.h' 2025-04-25T04:47:36.4165740Z adding 'torch/include/pthreadpool.h' 2025-04-25T04:47:36.4207982Z adding 'torch/include/sleef.h' 2025-04-25T04:47:36.4251554Z adding 'torch/include/xnnpack.h' 2025-04-25T04:47:36.4263239Z adding 'torch/include/ATen/ATen.h' 2025-04-25T04:47:36.4267585Z adding 'torch/include/ATen/AccumulateType.h' 2025-04-25T04:47:36.4270665Z adding 'torch/include/ATen/ArrayRef.h' 2025-04-25T04:47:36.4273550Z adding 'torch/include/ATen/Backend.h' 2025-04-25T04:47:36.4276324Z adding 'torch/include/ATen/Backtrace.h' 2025-04-25T04:47:36.4279388Z adding 'torch/include/ATen/BlasBackend.h' 2025-04-25T04:47:36.4284936Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-04-25T04:47:36.4288537Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-04-25T04:47:36.4292340Z adding 'torch/include/ATen/CPUFunctions.h' 2025-04-25T04:47:36.4298756Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-04-25T04:47:36.4303030Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-04-25T04:47:36.4306570Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-04-25T04:47:36.4313542Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-04-25T04:47:36.4317710Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-04-25T04:47:36.4321396Z adding 'torch/include/ATen/CollapseDims.h' 2025-04-25T04:47:36.4325150Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-04-25T04:47:36.4332578Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-04-25T04:47:36.4337265Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-04-25T04:47:36.4342954Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-04-25T04:47:36.4347077Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-04-25T04:47:36.4353786Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-04-25T04:47:36.4358326Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-04-25T04:47:36.4361711Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-04-25T04:47:36.4364733Z adding 'torch/include/ATen/Config.h' 2025-04-25T04:47:36.4373165Z adding 'torch/include/ATen/Context.h' 2025-04-25T04:47:36.4377020Z adding 'torch/include/ATen/DLConvertor.h' 2025-04-25T04:47:36.4379897Z adding 'torch/include/ATen/Device.h' 2025-04-25T04:47:36.4383663Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-04-25T04:47:36.4387026Z adding 'torch/include/ATen/DeviceGuard.h' 2025-04-25T04:47:36.4390373Z adding 'torch/include/ATen/DimVector.h' 2025-04-25T04:47:36.4392930Z adding 'torch/include/ATen/Dimname.h' 2025-04-25T04:47:36.4402574Z adding 'torch/include/ATen/Dispatch.h' 2025-04-25T04:47:36.4411743Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-04-25T04:47:36.4416623Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-04-25T04:47:36.4420412Z adding 'torch/include/ATen/EmptyTensor.h' 2025-04-25T04:47:36.4423876Z adding 'torch/include/ATen/ExpandBase.h' 2025-04-25T04:47:36.4429936Z adding 'torch/include/ATen/ExpandUtils.h' 2025-04-25T04:47:36.4433449Z adding 'torch/include/ATen/Formatting.h' 2025-04-25T04:47:36.4437210Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-04-25T04:47:36.4443061Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-04-25T04:47:36.4454239Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-04-25T04:47:36.4484088Z adding 'torch/include/ATen/Functions.h' 2025-04-25T04:47:36.4494317Z adding 'torch/include/ATen/Generator.h' 2025-04-25T04:47:36.4494640Z adding 'torch/include/ATen/InferSize.h' 2025-04-25T04:47:36.4495036Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-04-25T04:47:36.4496349Z adding 'torch/include/ATen/Layout.h' 2025-04-25T04:47:36.4496749Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-04-25T04:47:36.4497210Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-04-25T04:47:36.4497640Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-04-25T04:47:36.4502477Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-04-25T04:47:36.4502861Z adding 'torch/include/ATen/LinalgBackend.h' 2025-04-25T04:47:36.4505563Z adding 'torch/include/ATen/MapAllocator.h' 2025-04-25T04:47:36.4512668Z adding 'torch/include/ATen/MatrixRef.h' 2025-04-25T04:47:36.4513430Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-04-25T04:47:36.4517002Z adding 'torch/include/ATen/MetaFunctions.h' 2025-04-25T04:47:36.4524265Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-04-25T04:47:36.4528215Z adding 'torch/include/ATen/MethodOperators.h' 2025-04-25T04:47:36.4531817Z adding 'torch/include/ATen/NamedTensor.h' 2025-04-25T04:47:36.4536467Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-04-25T04:47:36.4548726Z adding 'torch/include/ATen/NativeFunctions.h' 2025-04-25T04:47:36.4561000Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-04-25T04:47:36.4568055Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-04-25T04:47:36.4572160Z adding 'torch/include/ATen/NumericUtils.h' 2025-04-25T04:47:36.4575790Z adding 'torch/include/ATen/OpMathType.h' 2025-04-25T04:47:36.4580197Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-04-25T04:47:36.4592100Z adding 'torch/include/ATen/Operators.h' 2025-04-25T04:47:36.4596762Z adding 'torch/include/ATen/PTThreadPool.h' 2025-04-25T04:47:36.4599740Z adding 'torch/include/ATen/PadNd.h' 2025-04-25T04:47:36.4603370Z adding 'torch/include/ATen/Parallel-inl.h' 2025-04-25T04:47:36.4607580Z adding 'torch/include/ATen/Parallel.h' 2025-04-25T04:47:36.4610795Z adding 'torch/include/ATen/ParallelFuture.h' 2025-04-25T04:47:36.4613792Z adding 'torch/include/ATen/ParallelNative.h' 2025-04-25T04:47:36.4617101Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-04-25T04:47:36.4620512Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-04-25T04:47:36.4623779Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-04-25T04:47:36.4902131Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-04-25T04:47:36.5100514Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-04-25T04:47:36.5125377Z adding 'torch/include/ATen/SDPBackend.h' 2025-04-25T04:47:36.5129539Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-04-25T04:47:36.5132304Z adding 'torch/include/ATen/Scalar.h' 2025-04-25T04:47:36.5135848Z adding 'torch/include/ATen/ScalarOps.h' 2025-04-25T04:47:36.5138901Z adding 'torch/include/ATen/ScalarType.h' 2025-04-25T04:47:36.5142212Z adding 'torch/include/ATen/SequenceNumber.h' 2025-04-25T04:47:36.5145088Z adding 'torch/include/ATen/SmallVector.h' 2025-04-25T04:47:36.5149894Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-04-25T04:47:36.5156508Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-04-25T04:47:36.5163708Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-04-25T04:47:36.5167206Z adding 'torch/include/ATen/Storage.h' 2025-04-25T04:47:36.5170862Z adding 'torch/include/ATen/StorageUtils.h' 2025-04-25T04:47:36.5173688Z adding 'torch/include/ATen/Tensor.h' 2025-04-25T04:47:36.5176712Z adding 'torch/include/ATen/TensorAccessor.h' 2025-04-25T04:47:36.5180730Z adding 'torch/include/ATen/TensorGeometry.h' 2025-04-25T04:47:36.5192865Z adding 'torch/include/ATen/TensorIndexing.h' 2025-04-25T04:47:36.5238127Z adding 'torch/include/ATen/TensorIterator.h' 2025-04-25T04:47:36.5238519Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-04-25T04:47:36.5238879Z adding 'torch/include/ATen/TensorMeta.h' 2025-04-25T04:47:36.5239210Z adding 'torch/include/ATen/TensorNames.h' 2025-04-25T04:47:36.5239540Z adding 'torch/include/ATen/TensorOperators.h' 2025-04-25T04:47:36.5239879Z adding 'torch/include/ATen/TensorOptions.h' 2025-04-25T04:47:36.5240373Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-04-25T04:47:36.5240825Z adding 'torch/include/ATen/TensorUtils.h' 2025-04-25T04:47:36.5242695Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-04-25T04:47:36.5247897Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-04-25T04:47:36.5252001Z adding 'torch/include/ATen/TracerMode.h' 2025-04-25T04:47:36.5255493Z adding 'torch/include/ATen/TypeDefault.h' 2025-04-25T04:47:36.5260360Z adding 'torch/include/ATen/Utils.h' 2025-04-25T04:47:36.5262855Z adding 'torch/include/ATen/Version.h' 2025-04-25T04:47:36.5447603Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-04-25T04:47:36.5497925Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-04-25T04:47:36.5501823Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-04-25T04:47:36.5513735Z adding 'torch/include/ATen/autocast_mode.h' 2025-04-25T04:47:36.5517983Z adding 'torch/include/ATen/ceil_div.h' 2025-04-25T04:47:36.5523974Z adding 'torch/include/ATen/code_template.h' 2025-04-25T04:47:36.5527181Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-04-25T04:47:36.5530420Z adding 'torch/include/ATen/div_rtn.h' 2025-04-25T04:47:36.5535433Z adding 'torch/include/ATen/dlpack.h' 2025-04-25T04:47:36.5540180Z adding 'torch/include/ATen/jit_macros.h' 2025-04-25T04:47:36.5542465Z adding 'torch/include/ATen/jiterator_macros.h' 2025-04-25T04:47:36.5552071Z adding 'torch/include/ATen/record_function.h' 2025-04-25T04:47:36.5557888Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-04-25T04:47:36.5560953Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-04-25T04:47:36.5564130Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-04-25T04:47:36.5568381Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-04-25T04:47:36.5571879Z adding 'torch/include/ATen/core/Array.h' 2025-04-25T04:47:36.5574814Z adding 'torch/include/ATen/core/Backtrace.h' 2025-04-25T04:47:36.5586187Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-04-25T04:47:36.5590129Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-04-25T04:47:36.5594169Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-04-25T04:47:36.5597738Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-04-25T04:47:36.5604406Z adding 'torch/include/ATen/core/Dict.h' 2025-04-25T04:47:36.5609505Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-04-25T04:47:36.5612771Z adding 'torch/include/ATen/core/DimVector.h' 2025-04-25T04:47:36.5616028Z adding 'torch/include/ATen/core/Dimname.h' 2025-04-25T04:47:36.5621489Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-04-25T04:47:36.5624981Z adding 'torch/include/ATen/core/Formatting.h' 2025-04-25T04:47:36.5629797Z adding 'torch/include/ATen/core/Generator.h' 2025-04-25T04:47:36.5633407Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-04-25T04:47:36.5642238Z adding 'torch/include/ATen/core/IListRef.h' 2025-04-25T04:47:36.5646995Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-04-25T04:47:36.5651621Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-04-25T04:47:36.5658628Z adding 'torch/include/ATen/core/List.h' 2025-04-25T04:47:36.5664595Z adding 'torch/include/ATen/core/List_inl.h' 2025-04-25T04:47:36.5669625Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-04-25T04:47:36.5674308Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-04-25T04:47:36.5679005Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-04-25T04:47:36.5684208Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-04-25T04:47:36.5687667Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-04-25T04:47:36.5690929Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-04-25T04:47:36.5694503Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-04-25T04:47:36.5697645Z adding 'torch/include/ATen/core/Range.h' 2025-04-25T04:47:36.5700939Z adding 'torch/include/ATen/core/Reduction.h' 2025-04-25T04:47:36.5703824Z adding 'torch/include/ATen/core/Scalar.h' 2025-04-25T04:47:36.5706724Z adding 'torch/include/ATen/core/ScalarType.h' 2025-04-25T04:47:36.5710273Z adding 'torch/include/ATen/core/Tensor.h' 2025-04-25T04:47:36.5715172Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-04-25T04:47:36.5730959Z adding 'torch/include/ATen/core/TensorBase.h' 2025-04-25T04:47:36.5789995Z adding 'torch/include/ATen/core/TensorBody.h' 2025-04-25T04:47:36.5800360Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-04-25T04:47:36.5805020Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-04-25T04:47:36.5808161Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-04-25T04:47:36.5811426Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-04-25T04:47:36.5815814Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-04-25T04:47:36.5819222Z adding 'torch/include/ATen/core/Variadic.h' 2025-04-25T04:47:36.5823252Z adding 'torch/include/ATen/core/Vitals.h' 2025-04-25T04:47:36.5827949Z adding 'torch/include/ATen/core/alias_info.h' 2025-04-25T04:47:36.5844212Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-04-25T04:47:36.5850905Z adding 'torch/include/ATen/core/blob.h' 2025-04-25T04:47:36.5854398Z adding 'torch/include/ATen/core/builtin_function.h' 2025-04-25T04:47:36.5861313Z adding 'torch/include/ATen/core/class_type.h' 2025-04-25T04:47:36.5865183Z adding 'torch/include/ATen/core/custom_class.h' 2025-04-25T04:47:36.5871034Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-04-25T04:47:36.5875071Z adding 'torch/include/ATen/core/enum_tag.h' 2025-04-25T04:47:36.5878470Z adding 'torch/include/ATen/core/enum_type.h' 2025-04-25T04:47:36.5882672Z adding 'torch/include/ATen/core/function.h' 2025-04-25T04:47:36.5893343Z adding 'torch/include/ATen/core/function_schema.h' 2025-04-25T04:47:36.5898045Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-04-25T04:47:36.5901314Z adding 'torch/include/ATen/core/functional.h' 2025-04-25T04:47:36.5904485Z adding 'torch/include/ATen/core/grad_mode.h' 2025-04-25T04:47:36.5910531Z adding 'torch/include/ATen/core/interned_strings.h' 2025-04-25T04:47:36.5914223Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-04-25T04:47:36.5934670Z adding 'torch/include/ATen/core/ivalue.h' 2025-04-25T04:47:36.5985910Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-04-25T04:47:36.5986255Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-04-25T04:47:36.5999182Z adding 'torch/include/ATen/core/jit_type.h' 2025-04-25T04:47:36.6010681Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-04-25T04:47:36.6014635Z adding 'torch/include/ATen/core/operator_name.h' 2025-04-25T04:47:36.6018989Z adding 'torch/include/ATen/core/qualified_name.h' 2025-04-25T04:47:36.6023258Z adding 'torch/include/ATen/core/rref_interface.h' 2025-04-25T04:47:36.6027646Z adding 'torch/include/ATen/core/stack.h' 2025-04-25T04:47:36.6032276Z adding 'torch/include/ATen/core/symbol.h' 2025-04-25T04:47:36.6036162Z adding 'torch/include/ATen/core/type_factory.h' 2025-04-25T04:47:36.6039796Z adding 'torch/include/ATen/core/type_ptr.h' 2025-04-25T04:47:36.6042714Z adding 'torch/include/ATen/core/typeid.h' 2025-04-25T04:47:36.6049291Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-04-25T04:47:36.6053120Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-04-25T04:47:36.6058159Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-04-25T04:47:36.6063992Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-04-25T04:47:36.6067623Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-04-25T04:47:36.6073707Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-04-25T04:47:36.6077338Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-04-25T04:47:36.6083433Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-04-25T04:47:36.6094057Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-04-25T04:47:36.6098901Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-04-25T04:47:36.6104134Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-04-25T04:47:36.6109806Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-04-25T04:47:36.6123353Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-04-25T04:47:36.6127543Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-04-25T04:47:36.6134177Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-04-25T04:47:36.6137924Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-04-25T04:47:36.6141362Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-04-25T04:47:36.6146627Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-04-25T04:47:36.6151285Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-04-25T04:47:36.6156144Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-04-25T04:47:36.6165045Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-04-25T04:47:36.6169918Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-04-25T04:47:36.6173084Z adding 'torch/include/ATen/cpu/Utils.h' 2025-04-25T04:47:36.6177534Z adding 'torch/include/ATen/cpu/vml.h' 2025-04-25T04:47:36.6181855Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-04-25T04:47:36.6186853Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-04-25T04:47:36.6193629Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-04-25T04:47:36.6197723Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-04-25T04:47:36.6201116Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-04-25T04:47:36.6214767Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-04-25T04:47:36.6219469Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-04-25T04:47:36.6223744Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-04-25T04:47:36.6228945Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-04-25T04:47:36.6234562Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-04-25T04:47:36.6239404Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-04-25T04:47:36.6244400Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-04-25T04:47:36.6250650Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-04-25T04:47:36.6259497Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-04-25T04:47:36.6267118Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-04-25T04:47:36.6274033Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-04-25T04:47:36.6278774Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-04-25T04:47:36.6286035Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-04-25T04:47:36.6290267Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-04-25T04:47:36.6297292Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-04-25T04:47:36.6304755Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-04-25T04:47:36.6310142Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-04-25T04:47:36.6316080Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-04-25T04:47:36.6319497Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-04-25T04:47:36.6325102Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-04-25T04:47:36.6333624Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-04-25T04:47:36.6339280Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-04-25T04:47:36.6346686Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-04-25T04:47:36.6355041Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-04-25T04:47:36.6360512Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-04-25T04:47:36.6366543Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-04-25T04:47:36.6374852Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-04-25T04:47:36.6380179Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-04-25T04:47:36.6395333Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-04-25T04:47:36.6401833Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-04-25T04:47:36.6414217Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-04-25T04:47:36.6419950Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-04-25T04:47:36.6424976Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-04-25T04:47:36.6432682Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-04-25T04:47:36.6441146Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-04-25T04:47:36.6447784Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-04-25T04:47:36.6454280Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-04-25T04:47:36.6479013Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-04-25T04:47:36.6479515Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-04-25T04:47:36.6479996Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-04-25T04:47:36.6480488Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-04-25T04:47:36.6485212Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-04-25T04:47:36.6492134Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-04-25T04:47:36.6499955Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-04-25T04:47:36.6526099Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-04-25T04:47:36.6534883Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-04-25T04:47:36.6550757Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-04-25T04:47:36.6560429Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-04-25T04:47:36.6571334Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-04-25T04:47:36.6576948Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-04-25T04:47:36.6583039Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-04-25T04:47:36.6591890Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-04-25T04:47:36.6605468Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-04-25T04:47:36.6612515Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-04-25T04:47:36.6624372Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-04-25T04:47:36.6630377Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-04-25T04:47:36.6633814Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-04-25T04:47:36.6637484Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-04-25T04:47:36.6644648Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-04-25T04:47:36.6653473Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-04-25T04:47:36.6659449Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-04-25T04:47:36.6663318Z adding 'torch/include/ATen/cuda/CUDAConfig.h' 2025-04-25T04:47:36.6666360Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-04-25T04:47:36.6670051Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-04-25T04:47:36.6674181Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-04-25T04:47:36.6677458Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-04-25T04:47:36.6682169Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-04-25T04:47:36.6687060Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-04-25T04:47:36.6691123Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-04-25T04:47:36.6695403Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-04-25T04:47:36.6703352Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-04-25T04:47:36.6708436Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-04-25T04:47:36.6713203Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-04-25T04:47:36.6716547Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-04-25T04:47:36.6719796Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-04-25T04:47:36.6723288Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-04-25T04:47:36.6726930Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-04-25T04:47:36.6730143Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-04-25T04:47:36.6735261Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-04-25T04:47:36.6739421Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-04-25T04:47:36.6742941Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-04-25T04:47:36.6745897Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-04-25T04:47:36.6748825Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-04-25T04:47:36.6751834Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-04-25T04:47:36.6755270Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-04-25T04:47:36.6758514Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-04-25T04:47:36.6761685Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-04-25T04:47:36.6765272Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-04-25T04:47:36.6774957Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-04-25T04:47:36.6780794Z adding 'torch/include/ATen/cuda/cub.h' 2025-04-25T04:47:36.6784978Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-04-25T04:47:36.6788243Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-04-25T04:47:36.6792593Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-04-25T04:47:36.6795929Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-04-25T04:47:36.6800637Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-04-25T04:47:36.6805995Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-04-25T04:47:36.6809510Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-04-25T04:47:36.6813754Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-04-25T04:47:36.6817344Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-04-25T04:47:36.6820554Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-04-25T04:47:36.6824694Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-04-25T04:47:36.6828304Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-04-25T04:47:36.6832173Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-04-25T04:47:36.6835748Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-04-25T04:47:36.6843383Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-04-25T04:47:36.6851148Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-04-25T04:47:36.6856412Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-04-25T04:47:36.6860115Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-04-25T04:47:36.6864986Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-04-25T04:47:36.6869828Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-04-25T04:47:36.6876929Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-04-25T04:47:36.6885350Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-04-25T04:47:36.6889049Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-04-25T04:47:36.6891688Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-04-25T04:47:36.6894841Z adding 'torch/include/ATen/cudnn/Types.h' 2025-04-25T04:47:36.6897989Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-04-25T04:47:36.6901529Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-04-25T04:47:36.6906435Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-04-25T04:47:36.6911157Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-04-25T04:47:36.6915066Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-04-25T04:47:36.6918920Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-04-25T04:47:36.6922387Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-04-25T04:47:36.6925887Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-04-25T04:47:36.6929376Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-04-25T04:47:36.6933086Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-04-25T04:47:36.6937328Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-04-25T04:47:36.6942231Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-04-25T04:47:36.6945813Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-04-25T04:47:36.6950421Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-04-25T04:47:36.6957533Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-04-25T04:47:36.6993536Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-04-25T04:47:36.6993980Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-04-25T04:47:36.6994455Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-04-25T04:47:36.6994907Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-04-25T04:47:36.6995451Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-04-25T04:47:36.6995891Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-04-25T04:47:36.6996326Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-04-25T04:47:36.6996906Z adding 'torch/include/ATen/functorch/Macros.h' 2025-04-25T04:47:36.7001017Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-04-25T04:47:36.7005956Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-04-25T04:47:36.7008892Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-04-25T04:47:36.7014112Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-04-25T04:47:36.7018545Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-04-25T04:47:36.7024080Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-04-25T04:47:36.7029717Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-04-25T04:47:36.7033292Z adding 'torch/include/ATen/metal/Context.h' 2025-04-25T04:47:36.7038207Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-04-25T04:47:36.7041590Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-04-25T04:47:36.7045864Z adding 'torch/include/ATen/miopen/Handle.h' 2025-04-25T04:47:36.7047841Z adding 'torch/include/ATen/miopen/Types.h' 2025-04-25T04:47:36.7050867Z adding 'torch/include/ATen/miopen/Utils.h' 2025-04-25T04:47:36.7054041Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-04-25T04:47:36.7058244Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-04-25T04:47:36.7062472Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-04-25T04:47:36.7071563Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-04-25T04:47:36.7076749Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-04-25T04:47:36.7079590Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-04-25T04:47:36.7083700Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-04-25T04:47:36.7087296Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-04-25T04:47:36.7091644Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-04-25T04:47:36.7095401Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-04-25T04:47:36.7103200Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-04-25T04:47:36.7107842Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-04-25T04:47:36.7114271Z adding 'torch/include/ATen/native/Activation.h' 2025-04-25T04:47:36.7118065Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-04-25T04:47:36.7121307Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-04-25T04:47:36.7125957Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-04-25T04:47:36.7130072Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-04-25T04:47:36.7135239Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-04-25T04:47:36.7139885Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-04-25T04:47:36.7143885Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-04-25T04:47:36.7147119Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-04-25T04:47:36.7151067Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-04-25T04:47:36.7154605Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-04-25T04:47:36.7159290Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-04-25T04:47:36.7166431Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-04-25T04:47:36.7170462Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-04-25T04:47:36.7173490Z adding 'torch/include/ATen/native/Copy.h' 2025-04-25T04:47:36.7176537Z adding 'torch/include/ATen/native/Cross.h' 2025-04-25T04:47:36.7181151Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-04-25T04:47:36.7187456Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-04-25T04:47:36.7191107Z adding 'torch/include/ATen/native/Distance.h' 2025-04-25T04:47:36.7197996Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-04-25T04:47:36.7207676Z adding 'torch/include/ATen/native/Distributions.h' 2025-04-25T04:47:36.7212382Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-04-25T04:47:36.7215696Z adding 'torch/include/ATen/native/Fill.h' 2025-04-25T04:47:36.7222739Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-04-25T04:47:36.7226713Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-04-25T04:47:36.7229916Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-04-25T04:47:36.7232905Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-04-25T04:47:36.7236224Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-04-25T04:47:36.7239903Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-04-25T04:47:36.7242965Z adding 'torch/include/ATen/native/Gelu.h' 2025-04-25T04:47:36.7247822Z adding 'torch/include/ATen/native/GridSampler.h' 2025-04-25T04:47:36.7252016Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-04-25T04:47:36.7255253Z adding 'torch/include/ATen/native/Histogram.h' 2025-04-25T04:47:36.7258741Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-04-25T04:47:36.7263684Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-04-25T04:47:36.7266936Z adding 'torch/include/ATen/native/Lerp.h' 2025-04-25T04:47:36.7270259Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-04-25T04:47:36.7281817Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-04-25T04:47:36.7285998Z adding 'torch/include/ATen/native/LossMulti.h' 2025-04-25T04:47:36.7335447Z adding 'torch/include/ATen/native/Math.h' 2025-04-25T04:47:36.7342712Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-04-25T04:47:36.7347901Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-04-25T04:47:36.7352040Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-04-25T04:47:36.7355347Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-04-25T04:47:36.7359095Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-04-25T04:47:36.7362592Z adding 'torch/include/ATen/native/Normalization.h' 2025-04-25T04:47:36.7366101Z adding 'torch/include/ATen/native/Padding.h' 2025-04-25T04:47:36.7369526Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-04-25T04:47:36.7372762Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-04-25T04:47:36.7378653Z adding 'torch/include/ATen/native/Pool.h' 2025-04-25T04:47:36.7382864Z adding 'torch/include/ATen/native/Pow.h' 2025-04-25T04:47:36.7387155Z adding 'torch/include/ATen/native/RNN.h' 2025-04-25T04:47:36.7389982Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-04-25T04:47:36.7393478Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-04-25T04:47:36.7396637Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-04-25T04:47:36.7400172Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-04-25T04:47:36.7406986Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-04-25T04:47:36.7410881Z adding 'torch/include/ATen/native/ReductionType.h' 2025-04-25T04:47:36.7414530Z adding 'torch/include/ATen/native/Repeat.h' 2025-04-25T04:47:36.7419896Z adding 'torch/include/ATen/native/Resize.h' 2025-04-25T04:47:36.7424110Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-04-25T04:47:36.7428169Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-04-25T04:47:36.7431478Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-04-25T04:47:36.7437686Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-04-25T04:47:36.7441935Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-04-25T04:47:36.7445104Z adding 'torch/include/ATen/native/Sorting.h' 2025-04-25T04:47:36.7448615Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-04-25T04:47:36.7453582Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-04-25T04:47:36.7457873Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-04-25T04:47:36.7462547Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-04-25T04:47:36.7466651Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-04-25T04:47:36.7471179Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-04-25T04:47:36.7474945Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-04-25T04:47:36.7478204Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-04-25T04:47:36.7481804Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-04-25T04:47:36.7487774Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-04-25T04:47:36.7489711Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-04-25T04:47:36.7493888Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-04-25T04:47:36.7496436Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-04-25T04:47:36.7500913Z adding 'torch/include/ATen/native/TensorShape.h' 2025-04-25T04:47:36.7504503Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-04-25T04:47:36.7508113Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-04-25T04:47:36.7511922Z adding 'torch/include/ATen/native/TransposeType.h' 2025-04-25T04:47:36.7515295Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-04-25T04:47:36.7518537Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-04-25T04:47:36.7522289Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-04-25T04:47:36.7525593Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-04-25T04:47:36.7528927Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-04-25T04:47:36.7532812Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-04-25T04:47:36.7540466Z adding 'torch/include/ATen/native/UpSample.h' 2025-04-25T04:47:36.7544416Z adding 'torch/include/ATen/native/batch_norm.h' 2025-04-25T04:47:36.7547714Z adding 'torch/include/ATen/native/group_norm.h' 2025-04-25T04:47:36.7551611Z adding 'torch/include/ATen/native/im2col.h' 2025-04-25T04:47:36.7556248Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-04-25T04:47:36.7560629Z adding 'torch/include/ATen/native/layer_norm.h' 2025-04-25T04:47:36.7564236Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-04-25T04:47:36.7568104Z adding 'torch/include/ATen/native/vol2col.h' 2025-04-25T04:47:36.7574412Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-04-25T04:47:36.7578434Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-04-25T04:47:36.7582674Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-04-25T04:47:36.7587868Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-04-25T04:47:36.7591443Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-04-25T04:47:36.7595020Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-04-25T04:47:36.7598405Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-04-25T04:47:36.7601951Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-04-25T04:47:36.7608480Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-04-25T04:47:36.7613099Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-04-25T04:47:36.7616815Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-04-25T04:47:36.7620441Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-04-25T04:47:36.7624384Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-04-25T04:47:36.7627997Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-04-25T04:47:36.7631678Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-04-25T04:47:36.7635608Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-04-25T04:47:36.7641904Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-04-25T04:47:36.7645625Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-04-25T04:47:36.7648877Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-04-25T04:47:36.7655030Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-04-25T04:47:36.7660031Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-04-25T04:47:36.7664070Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-04-25T04:47:36.7667222Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-04-25T04:47:36.7671798Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-04-25T04:47:36.7675298Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-04-25T04:47:36.7678594Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-04-25T04:47:36.7681794Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-04-25T04:47:36.7698499Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-04-25T04:47:36.7703428Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-04-25T04:47:36.7710302Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-04-25T04:47:36.7714102Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-04-25T04:47:36.7717729Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-04-25T04:47:36.7722459Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-04-25T04:47:36.7727353Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-04-25T04:47:36.7731607Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-04-25T04:47:36.7738040Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-04-25T04:47:36.7741730Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-04-25T04:47:36.7747797Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-04-25T04:47:36.7757165Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-04-25T04:47:36.7761310Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-04-25T04:47:36.7764218Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-04-25T04:47:36.7772485Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-04-25T04:47:36.7776468Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-04-25T04:47:36.7779931Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-04-25T04:47:36.7789490Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-04-25T04:47:36.7793385Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-04-25T04:47:36.7796706Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-04-25T04:47:36.7802424Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-04-25T04:47:36.7806266Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-04-25T04:47:36.7811347Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-04-25T04:47:36.7814976Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-04-25T04:47:36.7818167Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-04-25T04:47:36.7822386Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-04-25T04:47:36.7825587Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-04-25T04:47:36.7830412Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-04-25T04:47:36.7835301Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-04-25T04:47:36.7838703Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-04-25T04:47:36.7844215Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-04-25T04:47:36.7880456Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-04-25T04:47:36.7891548Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-04-25T04:47:36.7895466Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-04-25T04:47:36.7902801Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-04-25T04:47:36.7922321Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-04-25T04:47:36.7930604Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-04-25T04:47:36.7934497Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-04-25T04:47:36.7938418Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-04-25T04:47:36.7956435Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-04-25T04:47:36.7961018Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-04-25T04:47:36.7964549Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-04-25T04:47:36.7968110Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-04-25T04:47:36.7971336Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-04-25T04:47:36.7979561Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-04-25T04:47:36.7982712Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-04-25T04:47:36.8029409Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-04-25T04:47:36.8029801Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-04-25T04:47:36.8030213Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-04-25T04:47:36.8030586Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-04-25T04:47:36.8030991Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-04-25T04:47:36.8031456Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-04-25T04:47:36.8031936Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-04-25T04:47:36.8032395Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-04-25T04:47:36.8032808Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-04-25T04:47:36.8033211Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-04-25T04:47:36.8037748Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-04-25T04:47:36.8042187Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-04-25T04:47:36.8045656Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-04-25T04:47:36.8054270Z adding 'torch/include/ATen/native/cuda/cutlass_utils.cuh' 2025-04-25T04:47:36.8057809Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-04-25T04:47:36.8061093Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-04-25T04:47:36.8066109Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-04-25T04:47:36.8069613Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-04-25T04:47:36.8072743Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-04-25T04:47:36.8077575Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-04-25T04:47:36.8082785Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-04-25T04:47:36.8091429Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-04-25T04:47:36.8095262Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-04-25T04:47:36.8100326Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-04-25T04:47:36.8105279Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-04-25T04:47:36.8108186Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-04-25T04:47:36.8113763Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-04-25T04:47:36.8117658Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-04-25T04:47:36.8133313Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-04-25T04:47:36.8138044Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-04-25T04:47:36.8142606Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-04-25T04:47:36.8146250Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-04-25T04:47:36.8150206Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-04-25T04:47:36.8159756Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-04-25T04:47:36.8164308Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-04-25T04:47:36.8168521Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-04-25T04:47:36.8172733Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-04-25T04:47:36.8176815Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-04-25T04:47:36.8180399Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-04-25T04:47:36.8184132Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-04-25T04:47:36.8188701Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-04-25T04:47:36.8193379Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-04-25T04:47:36.8201602Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-04-25T04:47:36.8205387Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-04-25T04:47:36.8209527Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-04-25T04:47:36.8212872Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-04-25T04:47:36.8216058Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-04-25T04:47:36.8219311Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-04-25T04:47:36.8222657Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-04-25T04:47:36.8225706Z adding 'torch/include/ATen/native/mps/operations/Indexing.h' 2025-04-25T04:47:36.8231934Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-04-25T04:47:36.8236582Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-04-25T04:47:36.8240348Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-04-25T04:47:36.8244299Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-04-25T04:47:36.8247827Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-04-25T04:47:36.8255025Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-04-25T04:47:36.8259982Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-04-25T04:47:36.8263900Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-04-25T04:47:36.8267391Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-04-25T04:47:36.8270498Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-04-25T04:47:36.8273900Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-04-25T04:47:36.8277098Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-04-25T04:47:36.8281037Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-04-25T04:47:36.8284268Z adding 'torch/include/ATen/native/quantized/library.h' 2025-04-25T04:47:36.8290521Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-04-25T04:47:36.8294059Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-04-25T04:47:36.8297373Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-04-25T04:47:36.8304355Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-04-25T04:47:36.8311599Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-04-25T04:47:36.8317759Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-04-25T04:47:36.8322610Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-04-25T04:47:36.8326059Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-04-25T04:47:36.8331897Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-04-25T04:47:36.8338486Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-04-25T04:47:36.8345196Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-04-25T04:47:36.8357271Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-04-25T04:47:36.8357838Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-04-25T04:47:36.8358333Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-04-25T04:47:36.8358869Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-04-25T04:47:36.8362131Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-04-25T04:47:36.8368764Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-04-25T04:47:36.8373283Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-04-25T04:47:36.8381143Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-04-25T04:47:36.8386098Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-04-25T04:47:36.8390775Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-04-25T04:47:36.8394986Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-04-25T04:47:36.8401242Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-04-25T04:47:36.8406592Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-04-25T04:47:36.8438108Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-04-25T04:47:36.8459909Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-04-25T04:47:36.8464987Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-04-25T04:47:36.8485753Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-04-25T04:47:36.8486645Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-04-25T04:47:36.8487581Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-04-25T04:47:36.8491877Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-04-25T04:47:36.8496191Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-04-25T04:47:36.8506175Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-04-25T04:47:36.8513732Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-04-25T04:47:36.8518453Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-04-25T04:47:36.8524323Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-04-25T04:47:36.8545936Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-04-25T04:47:36.8553201Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-04-25T04:47:36.8561058Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-04-25T04:47:36.8565141Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-04-25T04:47:36.8577359Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-04-25T04:47:36.8589767Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-04-25T04:47:36.8594794Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-04-25T04:47:36.8600588Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-04-25T04:47:36.8615081Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-04-25T04:47:36.8623085Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-04-25T04:47:36.8628661Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-04-25T04:47:36.8633285Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-04-25T04:47:36.8640116Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-04-25T04:47:36.8645216Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-04-25T04:47:36.8649242Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-04-25T04:47:36.8652596Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-04-25T04:47:36.8656344Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-04-25T04:47:36.8865973Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-04-25T04:47:36.8868644Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-04-25T04:47:36.8872402Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.8875730Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:47:36.8879125Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:47:36.8882330Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-04-25T04:47:36.8885883Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-04-25T04:47:36.8889562Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.8892786Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-04-25T04:47:36.8896194Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-04-25T04:47:36.8899465Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-04-25T04:47:36.8903181Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-04-25T04:47:36.8906911Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-04-25T04:47:36.8910374Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-04-25T04:47:36.8914051Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.8917400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:47:36.8920729Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:47:36.8923941Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-04-25T04:47:36.8927527Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-04-25T04:47:36.8931123Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.8934371Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-04-25T04:47:36.8937866Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-04-25T04:47:36.8941323Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-04-25T04:47:36.8944818Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-04-25T04:47:36.8948147Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-04-25T04:47:36.8951655Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.8954782Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-04-25T04:47:36.8958213Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-04-25T04:47:36.8961787Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-04-25T04:47:36.8965372Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.8969130Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-04-25T04:47:36.8972148Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-04-25T04:47:36.8983860Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-04-25T04:47:36.8984246Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-04-25T04:47:36.8984607Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-04-25T04:47:36.8987509Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:36.8990866Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-04-25T04:47:36.8994230Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-04-25T04:47:36.8997709Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-04-25T04:47:36.9003215Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-04-25T04:47:36.9004671Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-04-25T04:47:36.9008753Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-04-25T04:47:36.9011672Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-04-25T04:47:36.9015339Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9020403Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-04-25T04:47:36.9022305Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-04-25T04:47:36.9025479Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-04-25T04:47:36.9029115Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-04-25T04:47:36.9032678Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-04-25T04:47:36.9036445Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9039673Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-04-25T04:47:36.9042953Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-04-25T04:47:36.9046184Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-04-25T04:47:36.9049708Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-04-25T04:47:36.9053088Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-04-25T04:47:36.9056646Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9059865Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-04-25T04:47:36.9063360Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-04-25T04:47:36.9067497Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-04-25T04:47:36.9070134Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-04-25T04:47:36.9073809Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-04-25T04:47:36.9077077Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-04-25T04:47:36.9080389Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-04-25T04:47:36.9083646Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-04-25T04:47:36.9086836Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-04-25T04:47:36.9090160Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-04-25T04:47:36.9093421Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-04-25T04:47:36.9096854Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9099889Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-04-25T04:47:36.9103375Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-04-25T04:47:36.9106877Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-04-25T04:47:36.9110495Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9113744Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-04-25T04:47:36.9117005Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-04-25T04:47:36.9120460Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-04-25T04:47:36.9123874Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-04-25T04:47:36.9127355Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9130576Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-04-25T04:47:36.9133863Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-04-25T04:47:36.9137051Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-04-25T04:47:36.9141132Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9144429Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-04-25T04:47:36.9147729Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-04-25T04:47:36.9150792Z adding 'torch/include/ATen/ops/_backward.h' 2025-04-25T04:47:36.9154275Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9157351Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-04-25T04:47:36.9160678Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-04-25T04:47:36.9164043Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-04-25T04:47:36.9167460Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-04-25T04:47:36.9171039Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9174237Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-04-25T04:47:36.9177717Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-04-25T04:47:36.9181347Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9184490Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-04-25T04:47:36.9187960Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-04-25T04:47:36.9191483Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-04-25T04:47:36.9195112Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9198316Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-04-25T04:47:36.9201904Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-04-25T04:47:36.9205560Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-04-25T04:47:36.9209138Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9212437Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-04-25T04:47:36.9215893Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-04-25T04:47:36.9219268Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-04-25T04:47:36.9223217Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-04-25T04:47:36.9226885Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-04-25T04:47:36.9230009Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9233037Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-04-25T04:47:36.9236307Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-04-25T04:47:36.9239531Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-04-25T04:47:36.9242981Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9246077Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-04-25T04:47:36.9249367Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-04-25T04:47:36.9252606Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-04-25T04:47:36.9256187Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9259230Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-04-25T04:47:36.9262685Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-04-25T04:47:36.9265914Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-04-25T04:47:36.9269315Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9274462Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-04-25T04:47:36.9277937Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-04-25T04:47:36.9281191Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-04-25T04:47:36.9284695Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9287903Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-04-25T04:47:36.9291204Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-04-25T04:47:36.9295392Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-04-25T04:47:36.9298669Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9301522Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-04-25T04:47:36.9304962Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-04-25T04:47:36.9308245Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-04-25T04:47:36.9311923Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9315585Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-04-25T04:47:36.9318471Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-04-25T04:47:36.9321912Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-04-25T04:47:36.9325335Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9328513Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-04-25T04:47:36.9331826Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-04-25T04:47:36.9335410Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-04-25T04:47:36.9339099Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9342446Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-04-25T04:47:36.9345892Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-04-25T04:47:36.9349098Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-04-25T04:47:36.9352751Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-04-25T04:47:36.9356496Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-04-25T04:47:36.9359881Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9363291Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-04-25T04:47:36.9366554Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-04-25T04:47:36.9370312Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-04-25T04:47:36.9374669Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-04-25T04:47:36.9377349Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-04-25T04:47:36.9381098Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9384309Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-04-25T04:47:36.9387751Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-04-25T04:47:36.9390961Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-04-25T04:47:36.9394536Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-04-25T04:47:36.9398237Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-04-25T04:47:36.9401581Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9404805Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-04-25T04:47:36.9408229Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-04-25T04:47:36.9411643Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-04-25T04:47:36.9415386Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9418648Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-04-25T04:47:36.9422163Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-04-25T04:47:36.9425627Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-04-25T04:47:36.9429096Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-04-25T04:47:36.9433021Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9435842Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-04-25T04:47:36.9439383Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-04-25T04:47:36.9442688Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-04-25T04:47:36.9446768Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9449807Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-04-25T04:47:36.9452998Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-04-25T04:47:36.9456560Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-04-25T04:47:36.9460049Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-04-25T04:47:36.9463738Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-04-25T04:47:36.9467138Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-04-25T04:47:36.9470525Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-04-25T04:47:36.9474007Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-04-25T04:47:36.9477619Z adding 'torch/include/ATen/ops/_conj.h' 2025-04-25T04:47:36.9481449Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9485069Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-04-25T04:47:36.9488886Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9492687Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:36.9496066Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-04-25T04:47:36.9499816Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-04-25T04:47:36.9503499Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-04-25T04:47:36.9506916Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-04-25T04:47:36.9510437Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-04-25T04:47:36.9513942Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9517215Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-04-25T04:47:36.9520574Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-04-25T04:47:36.9524680Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-04-25T04:47:36.9528604Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-04-25T04:47:36.9532022Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-04-25T04:47:36.9535551Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-04-25T04:47:36.9539029Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-04-25T04:47:36.9542933Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:36.9546129Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-04-25T04:47:36.9549497Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-04-25T04:47:36.9552723Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-04-25T04:47:36.9556156Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-04-25T04:47:36.9559553Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-04-25T04:47:36.9563057Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-04-25T04:47:36.9566500Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-04-25T04:47:36.9570086Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:36.9573250Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-04-25T04:47:36.9576643Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-04-25T04:47:36.9580007Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-04-25T04:47:36.9583531Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-04-25T04:47:36.9586752Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-04-25T04:47:36.9590365Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-04-25T04:47:36.9593769Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-04-25T04:47:36.9597099Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-04-25T04:47:36.9600258Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-04-25T04:47:36.9603628Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-04-25T04:47:36.9606825Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-04-25T04:47:36.9610181Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-04-25T04:47:36.9613338Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-04-25T04:47:36.9616630Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-04-25T04:47:36.9620814Z adding 'torch/include/ATen/ops/_convolution.h' 2025-04-25T04:47:36.9624832Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9628286Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9631867Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-04-25T04:47:36.9635647Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9638883Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-04-25T04:47:36.9642361Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-04-25T04:47:36.9645824Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-04-25T04:47:36.9649415Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9652549Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-04-25T04:47:36.9656040Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-04-25T04:47:36.9659340Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-04-25T04:47:36.9663268Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-04-25T04:47:36.9666649Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-04-25T04:47:36.9669992Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-04-25T04:47:36.9673460Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9676517Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-04-25T04:47:36.9679920Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-04-25T04:47:36.9683383Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9686454Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-04-25T04:47:36.9689850Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-04-25T04:47:36.9699859Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-04-25T04:47:36.9700461Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-04-25T04:47:36.9702101Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-04-25T04:47:36.9705218Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-04-25T04:47:36.9708564Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-04-25T04:47:36.9712328Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-04-25T04:47:36.9715477Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-04-25T04:47:36.9718913Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-04-25T04:47:36.9722287Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-04-25T04:47:36.9725947Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-04-25T04:47:36.9728893Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-04-25T04:47:36.9732279Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-04-25T04:47:36.9735796Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-04-25T04:47:36.9739376Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-04-25T04:47:36.9743187Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9746638Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:36.9749838Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:36.9753098Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-04-25T04:47:36.9756730Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-04-25T04:47:36.9760466Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9763717Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-04-25T04:47:36.9767010Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-04-25T04:47:36.9770304Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-04-25T04:47:36.9773574Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-04-25T04:47:36.9777277Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-04-25T04:47:36.9781231Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-04-25T04:47:36.9784848Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-04-25T04:47:36.9788166Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-04-25T04:47:36.9791844Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-04-25T04:47:36.9795377Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-04-25T04:47:36.9799016Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9802257Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-04-25T04:47:36.9805498Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-04-25T04:47:36.9809109Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-04-25T04:47:36.9812673Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-04-25T04:47:36.9816219Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9819480Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-04-25T04:47:36.9822930Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-04-25T04:47:36.9826395Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-04-25T04:47:36.9830567Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-04-25T04:47:36.9835310Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-04-25T04:47:36.9839496Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9843022Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-04-25T04:47:36.9846434Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-04-25T04:47:36.9850331Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-04-25T04:47:36.9854131Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9857514Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-04-25T04:47:36.9861498Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-04-25T04:47:36.9865309Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:36.9868620Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-04-25T04:47:36.9871850Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-04-25T04:47:36.9875345Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-04-25T04:47:36.9878686Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-04-25T04:47:36.9882508Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-04-25T04:47:36.9885940Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-04-25T04:47:36.9889420Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9892801Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-04-25T04:47:36.9895967Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-04-25T04:47:36.9899565Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-04-25T04:47:36.9903238Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9906423Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-04-25T04:47:36.9910331Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-04-25T04:47:36.9913188Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-04-25T04:47:36.9916861Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9919941Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-04-25T04:47:36.9923416Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-04-25T04:47:36.9926813Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-04-25T04:47:36.9930375Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9933645Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-04-25T04:47:36.9936948Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-04-25T04:47:36.9940362Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-04-25T04:47:36.9943762Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-04-25T04:47:36.9947161Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-04-25T04:47:36.9950363Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-04-25T04:47:36.9953924Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-04-25T04:47:36.9957249Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-04-25T04:47:36.9960662Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-04-25T04:47:36.9964076Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-04-25T04:47:36.9967286Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-04-25T04:47:36.9970796Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-04-25T04:47:36.9974077Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-04-25T04:47:36.9977658Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:36.9980896Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-04-25T04:47:36.9985078Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-04-25T04:47:36.9988596Z adding 'torch/include/ATen/ops/_dimI.h' 2025-04-25T04:47:36.9992164Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-04-25T04:47:36.9995817Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-04-25T04:47:36.9999334Z adding 'torch/include/ATen/ops/_dimV.h' 2025-04-25T04:47:37.0003247Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-04-25T04:47:37.0006960Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-04-25T04:47:37.0010646Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-04-25T04:47:37.0014452Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.0017849Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-04-25T04:47:37.0021465Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-04-25T04:47:37.0024972Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-04-25T04:47:37.0028454Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0031862Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-04-25T04:47:37.0035165Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-04-25T04:47:37.0038516Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-04-25T04:47:37.0042016Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-04-25T04:47:37.0045854Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-04-25T04:47:37.0048957Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-04-25T04:47:37.0052195Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-04-25T04:47:37.0056503Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-04-25T04:47:37.0058966Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-04-25T04:47:37.0062604Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-04-25T04:47:37.0065813Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-04-25T04:47:37.0069174Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-04-25T04:47:37.0073967Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-04-25T04:47:37.0077729Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0081135Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-04-25T04:47:37.0084799Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-04-25T04:47:37.0088571Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-04-25T04:47:37.0092235Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-04-25T04:47:37.0095543Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-04-25T04:47:37.0099083Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-04-25T04:47:37.0103453Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-04-25T04:47:37.0106853Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0110135Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-04-25T04:47:37.0113490Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-04-25T04:47:37.0116836Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-04-25T04:47:37.0120100Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-04-25T04:47:37.0123542Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-04-25T04:47:37.0127093Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-04-25T04:47:37.0130813Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-04-25T04:47:37.0134287Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-04-25T04:47:37.0137657Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0141174Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-04-25T04:47:37.0144670Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-04-25T04:47:37.0148222Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0151493Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-04-25T04:47:37.0154811Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-04-25T04:47:37.0158683Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-04-25T04:47:37.0162713Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0166052Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-04-25T04:47:37.0169420Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0172710Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-04-25T04:47:37.0176248Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-04-25T04:47:37.0179844Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-04-25T04:47:37.0183652Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0186917Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-04-25T04:47:37.0190274Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-04-25T04:47:37.0193552Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-04-25T04:47:37.0197147Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-04-25T04:47:37.0200664Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-04-25T04:47:37.0204115Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-04-25T04:47:37.0207733Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-04-25T04:47:37.0211383Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0214633Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-04-25T04:47:37.0217913Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0221316Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-04-25T04:47:37.0224859Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-04-25T04:47:37.0228343Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-04-25T04:47:37.0231923Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.0235117Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-04-25T04:47:37.0238587Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-04-25T04:47:37.0242547Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-04-25T04:47:37.0246332Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0249649Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-04-25T04:47:37.0252926Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-04-25T04:47:37.0256486Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-04-25T04:47:37.0261264Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-04-25T04:47:37.0264867Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0268432Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-04-25T04:47:37.0271878Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-04-25T04:47:37.0275596Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-04-25T04:47:37.0279059Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-04-25T04:47:37.0282533Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0285838Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-04-25T04:47:37.0290226Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-04-25T04:47:37.0293186Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-04-25T04:47:37.0296795Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-04-25T04:47:37.0300353Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-04-25T04:47:37.0303926Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0307620Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-04-25T04:47:37.0310779Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-04-25T04:47:37.0314680Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0317771Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-04-25T04:47:37.0321307Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-04-25T04:47:37.0324418Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-04-25T04:47:37.0328165Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-04-25T04:47:37.0331924Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-04-25T04:47:37.0335210Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-04-25T04:47:37.0338805Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-04-25T04:47:37.0342983Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0345876Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-04-25T04:47:37.0349436Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-04-25T04:47:37.0353038Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0356511Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-04-25T04:47:37.0360472Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-04-25T04:47:37.0363311Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-04-25T04:47:37.0367075Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-04-25T04:47:37.0370616Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-04-25T04:47:37.0374354Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0378011Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-04-25T04:47:37.0381245Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-04-25T04:47:37.0384640Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-04-25T04:47:37.0388367Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-04-25T04:47:37.0392062Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-04-25T04:47:37.0395606Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-04-25T04:47:37.0399034Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-04-25T04:47:37.0402358Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-04-25T04:47:37.0405809Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-04-25T04:47:37.0410003Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-04-25T04:47:37.0413732Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-04-25T04:47:37.0417182Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-04-25T04:47:37.0420751Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-04-25T04:47:37.0424244Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-04-25T04:47:37.0427828Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-04-25T04:47:37.0431358Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-04-25T04:47:37.0434625Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-04-25T04:47:37.0437967Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-04-25T04:47:37.0441424Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-04-25T04:47:37.0445154Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-04-25T04:47:37.0448465Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-04-25T04:47:37.0451944Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-04-25T04:47:37.0455496Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-04-25T04:47:37.0458667Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-04-25T04:47:37.0462612Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-04-25T04:47:37.0466218Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-04-25T04:47:37.0469813Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-04-25T04:47:37.0473504Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-04-25T04:47:37.0477220Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-04-25T04:47:37.0481154Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-04-25T04:47:37.0504289Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-04-25T04:47:37.0504476Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-04-25T04:47:37.0504589Z adding 'torch/include/ATen/ops/_foobar.h' 2025-04-25T04:47:37.0504841Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0505799Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-04-25T04:47:37.0505931Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-04-25T04:47:37.0507150Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-04-25T04:47:37.0510630Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-04-25T04:47:37.0514180Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0517533Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-04-25T04:47:37.0520682Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-04-25T04:47:37.0524313Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-04-25T04:47:37.0529075Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-04-25T04:47:37.0531416Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0534605Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-04-25T04:47:37.0537787Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-04-25T04:47:37.0541552Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-04-25T04:47:37.0545257Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-04-25T04:47:37.0549124Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0552503Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-04-25T04:47:37.0556831Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-04-25T04:47:37.0560225Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-04-25T04:47:37.0564104Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-04-25T04:47:37.0567863Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0571241Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-04-25T04:47:37.0574687Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-04-25T04:47:37.0578697Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-04-25T04:47:37.0582750Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-04-25T04:47:37.0587565Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0589998Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-04-25T04:47:37.0593460Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-04-25T04:47:37.0597458Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-04-25T04:47:37.0600952Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-04-25T04:47:37.0604510Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0607689Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-04-25T04:47:37.0610891Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-04-25T04:47:37.0614213Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-04-25T04:47:37.0617558Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-04-25T04:47:37.0621245Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0624457Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-04-25T04:47:37.0627616Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-04-25T04:47:37.0631044Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-04-25T04:47:37.0634585Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-04-25T04:47:37.0637893Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0641062Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-04-25T04:47:37.0644406Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-04-25T04:47:37.0647821Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-04-25T04:47:37.0651380Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-04-25T04:47:37.0655054Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0658829Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-04-25T04:47:37.0662410Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-04-25T04:47:37.0666290Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-04-25T04:47:37.0670037Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-04-25T04:47:37.0673779Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0677077Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-04-25T04:47:37.0680409Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-04-25T04:47:37.0684250Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-04-25T04:47:37.0687826Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-04-25T04:47:37.0691397Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0694625Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-04-25T04:47:37.0697848Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-04-25T04:47:37.0701530Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-04-25T04:47:37.0704826Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-04-25T04:47:37.0708291Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0711479Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-04-25T04:47:37.0714668Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-04-25T04:47:37.0718033Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-04-25T04:47:37.0721387Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-04-25T04:47:37.0724837Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0727973Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-04-25T04:47:37.0731124Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-04-25T04:47:37.0734568Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-04-25T04:47:37.0738268Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-04-25T04:47:37.0742154Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0745705Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-04-25T04:47:37.0749133Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-04-25T04:47:37.0753196Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-04-25T04:47:37.0756725Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-04-25T04:47:37.0760231Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0763414Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-04-25T04:47:37.0766590Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-04-25T04:47:37.0769979Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-04-25T04:47:37.0773306Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-04-25T04:47:37.0776751Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0779895Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-04-25T04:47:37.0783267Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-04-25T04:47:37.0786704Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-04-25T04:47:37.0790205Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-04-25T04:47:37.0793563Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0796843Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-04-25T04:47:37.0800023Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-04-25T04:47:37.0803583Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-04-25T04:47:37.0806917Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-04-25T04:47:37.0810418Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0813626Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-04-25T04:47:37.0816769Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-04-25T04:47:37.0820365Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-04-25T04:47:37.0823863Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-04-25T04:47:37.0827307Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0830491Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-04-25T04:47:37.0833693Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-04-25T04:47:37.0837073Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-04-25T04:47:37.0840377Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-04-25T04:47:37.0843856Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0847291Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-04-25T04:47:37.0850482Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-04-25T04:47:37.0854084Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-04-25T04:47:37.0857588Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-04-25T04:47:37.0861401Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0864694Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-04-25T04:47:37.0868112Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-04-25T04:47:37.0872036Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-04-25T04:47:37.0875599Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-04-25T04:47:37.0879865Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0883226Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-04-25T04:47:37.0886354Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-04-25T04:47:37.0889708Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-04-25T04:47:37.0893037Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-04-25T04:47:37.0896404Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-04-25T04:47:37.0899899Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0903270Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-04-25T04:47:37.0906449Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-04-25T04:47:37.0909852Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-04-25T04:47:37.0913177Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-04-25T04:47:37.0916736Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0919889Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-04-25T04:47:37.0923086Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-04-25T04:47:37.0926499Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-04-25T04:47:37.0929821Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-04-25T04:47:37.0933320Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0936437Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-04-25T04:47:37.0939571Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-04-25T04:47:37.0943270Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-04-25T04:47:37.0947259Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0950423Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-04-25T04:47:37.0953807Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-04-25T04:47:37.0957872Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-04-25T04:47:37.0960712Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-04-25T04:47:37.0964326Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0967595Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-04-25T04:47:37.0970925Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-04-25T04:47:37.0974371Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-04-25T04:47:37.0978112Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-04-25T04:47:37.0982050Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.0985365Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-04-25T04:47:37.0988850Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-04-25T04:47:37.0993346Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-04-25T04:47:37.0996575Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-04-25T04:47:37.1000507Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1003789Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-04-25T04:47:37.1049798Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-04-25T04:47:37.1050235Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-04-25T04:47:37.1050689Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-04-25T04:47:37.1051189Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1051751Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-04-25T04:47:37.1052176Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-04-25T04:47:37.1052555Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-04-25T04:47:37.1052903Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-04-25T04:47:37.1053390Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1053932Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-04-25T04:47:37.1054394Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-04-25T04:47:37.1054788Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-04-25T04:47:37.1056027Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-04-25T04:47:37.1067979Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1068691Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-04-25T04:47:37.1069130Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-04-25T04:47:37.1069545Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-04-25T04:47:37.1072945Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-04-25T04:47:37.1076780Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1080102Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-04-25T04:47:37.1083490Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-04-25T04:47:37.1087595Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-04-25T04:47:37.1091297Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-04-25T04:47:37.1094750Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1097943Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-04-25T04:47:37.1102101Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-04-25T04:47:37.1105026Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-04-25T04:47:37.1108474Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-04-25T04:47:37.1111902Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1114954Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-04-25T04:47:37.1118086Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-04-25T04:47:37.1121483Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-04-25T04:47:37.1124780Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-04-25T04:47:37.1128275Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1131471Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-04-25T04:47:37.1134833Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-04-25T04:47:37.1138247Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-04-25T04:47:37.1141713Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-04-25T04:47:37.1145198Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1148552Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-04-25T04:47:37.1151736Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-04-25T04:47:37.1155257Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-04-25T04:47:37.1158544Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-04-25T04:47:37.1162033Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1165213Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-04-25T04:47:37.1168385Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-04-25T04:47:37.1171812Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-04-25T04:47:37.1175626Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-04-25T04:47:37.1180273Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1183573Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-04-25T04:47:37.1186776Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-04-25T04:47:37.1190338Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-04-25T04:47:37.1193703Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-04-25T04:47:37.1197164Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1200356Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-04-25T04:47:37.1203520Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-04-25T04:47:37.1206947Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-04-25T04:47:37.1210273Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-04-25T04:47:37.1213738Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1216904Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-04-25T04:47:37.1220053Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-04-25T04:47:37.1223667Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-04-25T04:47:37.1227165Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-04-25T04:47:37.1230856Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1234156Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-04-25T04:47:37.1237565Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-04-25T04:47:37.1241474Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-04-25T04:47:37.1244919Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-04-25T04:47:37.1248389Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1251555Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-04-25T04:47:37.1254757Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-04-25T04:47:37.1258107Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-04-25T04:47:37.1261636Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-04-25T04:47:37.1265294Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1268384Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-04-25T04:47:37.1271461Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-04-25T04:47:37.1274905Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-04-25T04:47:37.1278140Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-04-25T04:47:37.1281614Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1284870Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-04-25T04:47:37.1288038Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-04-25T04:47:37.1291609Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-04-25T04:47:37.1294939Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-04-25T04:47:37.1298382Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1301768Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-04-25T04:47:37.1304888Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-04-25T04:47:37.1308360Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-04-25T04:47:37.1311581Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-04-25T04:47:37.1314940Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-04-25T04:47:37.1318131Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-04-25T04:47:37.1321445Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-04-25T04:47:37.1324718Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-04-25T04:47:37.1328197Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1331215Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-04-25T04:47:37.1334570Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-04-25T04:47:37.1337929Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-04-25T04:47:37.1341518Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1344799Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-04-25T04:47:37.1348191Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1351461Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-04-25T04:47:37.1354785Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-04-25T04:47:37.1358039Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-04-25T04:47:37.1361413Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-04-25T04:47:37.1364857Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-04-25T04:47:37.1368487Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1371716Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-04-25T04:47:37.1374963Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-04-25T04:47:37.1378624Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-04-25T04:47:37.1382909Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-04-25T04:47:37.1386784Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1390120Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-04-25T04:47:37.1393712Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-04-25T04:47:37.1397189Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-04-25T04:47:37.1401376Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-04-25T04:47:37.1405580Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-04-25T04:47:37.1409640Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1413388Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-04-25T04:47:37.1416274Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-04-25T04:47:37.1419654Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-04-25T04:47:37.1424073Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-04-25T04:47:37.1427762Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-04-25T04:47:37.1431338Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1434490Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-04-25T04:47:37.1437697Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-04-25T04:47:37.1441142Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-04-25T04:47:37.1444868Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-04-25T04:47:37.1448708Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1452300Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-04-25T04:47:37.1455644Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-04-25T04:47:37.1459007Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-04-25T04:47:37.1462975Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-04-25T04:47:37.1466296Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-04-25T04:47:37.1469439Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-04-25T04:47:37.1472778Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-04-25T04:47:37.1476176Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-04-25T04:47:37.1479497Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-04-25T04:47:37.1482817Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-04-25T04:47:37.1486136Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-04-25T04:47:37.1489377Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-04-25T04:47:37.1492950Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-04-25T04:47:37.1496807Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-04-25T04:47:37.1501850Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1504636Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-04-25T04:47:37.1551878Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-04-25T04:47:37.1552307Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-04-25T04:47:37.1552687Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-04-25T04:47:37.1553029Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-04-25T04:47:37.1553511Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1554011Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-04-25T04:47:37.1554523Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1555249Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1555856Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-04-25T04:47:37.1556268Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-04-25T04:47:37.1556686Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-04-25T04:47:37.1557100Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-04-25T04:47:37.1557521Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-04-25T04:47:37.1558115Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.1560819Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-04-25T04:47:37.1564222Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-04-25T04:47:37.1567781Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-04-25T04:47:37.1571461Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-04-25T04:47:37.1576383Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.1578598Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-04-25T04:47:37.1582222Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-04-25T04:47:37.1585734Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1589005Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-04-25T04:47:37.1592552Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-04-25T04:47:37.1595831Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-04-25T04:47:37.1599157Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-04-25T04:47:37.1603674Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-04-25T04:47:37.1605975Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-04-25T04:47:37.1609287Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-04-25T04:47:37.1612840Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.1615910Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-04-25T04:47:37.1619222Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-04-25T04:47:37.1622566Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-04-25T04:47:37.1626021Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1629083Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-04-25T04:47:37.1632362Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-04-25T04:47:37.1635890Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-04-25T04:47:37.1639434Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1642624Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-04-25T04:47:37.1645837Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-04-25T04:47:37.1650315Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-04-25T04:47:37.1652925Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-04-25T04:47:37.1656583Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1659731Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-04-25T04:47:37.1663142Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-04-25T04:47:37.1666614Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-04-25T04:47:37.1669976Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-04-25T04:47:37.1673515Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1676753Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-04-25T04:47:37.1680745Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-04-25T04:47:37.1684578Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-04-25T04:47:37.1687948Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-04-25T04:47:37.1691644Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1694856Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-04-25T04:47:37.1698099Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-04-25T04:47:37.1701507Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-04-25T04:47:37.1704803Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-04-25T04:47:37.1709069Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-04-25T04:47:37.1711668Z adding 'torch/include/ATen/ops/_indices.h' 2025-04-25T04:47:37.1714875Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-04-25T04:47:37.1718362Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1721615Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1724584Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-04-25T04:47:37.1727927Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-04-25T04:47:37.1731088Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-04-25T04:47:37.1734351Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-04-25T04:47:37.1737549Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-04-25T04:47:37.1741018Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-04-25T04:47:37.1744291Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-04-25T04:47:37.1747424Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-04-25T04:47:37.1750785Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-04-25T04:47:37.1753992Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-04-25T04:47:37.1757379Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1760411Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-04-25T04:47:37.1763658Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-04-25T04:47:37.1766825Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-04-25T04:47:37.1770167Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1773192Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-04-25T04:47:37.1776453Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-04-25T04:47:37.1779635Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-04-25T04:47:37.1783293Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.1786227Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-04-25T04:47:37.1789584Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-04-25T04:47:37.1793214Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-04-25T04:47:37.1796644Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-04-25T04:47:37.1800117Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-04-25T04:47:37.1803847Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-04-25T04:47:37.1806991Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-04-25T04:47:37.1810139Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-04-25T04:47:37.1813568Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1816793Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-04-25T04:47:37.1820183Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-04-25T04:47:37.1823667Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-04-25T04:47:37.1827613Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.1830324Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-04-25T04:47:37.1833749Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-04-25T04:47:37.1837142Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-04-25T04:47:37.1840742Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1844488Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-04-25T04:47:37.1847338Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-04-25T04:47:37.1850784Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-04-25T04:47:37.1853983Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-04-25T04:47:37.1857419Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-04-25T04:47:37.1861050Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-04-25T04:47:37.1864664Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-04-25T04:47:37.1868493Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1871978Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-04-25T04:47:37.1875456Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-04-25T04:47:37.1878673Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-04-25T04:47:37.1882216Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-04-25T04:47:37.1885796Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-04-25T04:47:37.1889037Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-04-25T04:47:37.1892490Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-04-25T04:47:37.1895808Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-04-25T04:47:37.1899262Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-04-25T04:47:37.1903227Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-04-25T04:47:37.1906044Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-04-25T04:47:37.1909531Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-04-25T04:47:37.1913092Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1916449Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-04-25T04:47:37.1919754Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-04-25T04:47:37.1923140Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-04-25T04:47:37.1927039Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-04-25T04:47:37.1929885Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-04-25T04:47:37.1933469Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-04-25T04:47:37.1936918Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-04-25T04:47:37.1940758Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1944164Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-04-25T04:47:37.1947479Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-04-25T04:47:37.1950863Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-04-25T04:47:37.1954249Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-04-25T04:47:37.1957648Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-04-25T04:47:37.1961609Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-04-25T04:47:37.1964677Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-04-25T04:47:37.1968410Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.1971651Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-04-25T04:47:37.1975198Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-04-25T04:47:37.1979048Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-04-25T04:47:37.1982129Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-04-25T04:47:37.1985533Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-04-25T04:47:37.1988997Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-04-25T04:47:37.1992462Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-04-25T04:47:37.1995763Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-04-25T04:47:37.1999398Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-04-25T04:47:37.2002576Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-04-25T04:47:37.2031050Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-04-25T04:47:37.2031454Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-04-25T04:47:37.2031937Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-04-25T04:47:37.2032684Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2033429Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-04-25T04:47:37.2033992Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-04-25T04:47:37.2034525Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-04-25T04:47:37.2035056Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-04-25T04:47:37.2035611Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-04-25T04:47:37.2039256Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-04-25T04:47:37.2043214Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2046120Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-04-25T04:47:37.2049589Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-04-25T04:47:37.2052775Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-04-25T04:47:37.2056331Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-04-25T04:47:37.2059576Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-04-25T04:47:37.2063092Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-04-25T04:47:37.2066633Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-04-25T04:47:37.2069952Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-04-25T04:47:37.2073244Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-04-25T04:47:37.2076405Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-04-25T04:47:37.2079786Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-04-25T04:47:37.2083519Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-04-25T04:47:37.2087135Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2090275Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-04-25T04:47:37.2093852Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-04-25T04:47:37.2097260Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-04-25T04:47:37.2100734Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2103893Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-04-25T04:47:37.2107247Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-04-25T04:47:37.2110680Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-04-25T04:47:37.2114237Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-04-25T04:47:37.2117453Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-04-25T04:47:37.2120815Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-04-25T04:47:37.2124052Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-04-25T04:47:37.2127589Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2130789Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-04-25T04:47:37.2134263Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2137610Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2140778Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-04-25T04:47:37.2144187Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-04-25T04:47:37.2147389Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-04-25T04:47:37.2150719Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-04-25T04:47:37.2154236Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-04-25T04:47:37.2157755Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2160967Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-04-25T04:47:37.2164401Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-04-25T04:47:37.2167464Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-04-25T04:47:37.2170891Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-04-25T04:47:37.2174246Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-04-25T04:47:37.2177705Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2181063Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-04-25T04:47:37.2184348Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-04-25T04:47:37.2187492Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-04-25T04:47:37.2190937Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-04-25T04:47:37.2194181Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-04-25T04:47:37.2197650Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2200856Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-04-25T04:47:37.2204034Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-04-25T04:47:37.2207424Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-04-25T04:47:37.2210805Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-04-25T04:47:37.2214243Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-04-25T04:47:37.2217725Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2221038Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-04-25T04:47:37.2224340Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-04-25T04:47:37.2227543Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-04-25T04:47:37.2230987Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-04-25T04:47:37.2234540Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2237801Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-04-25T04:47:37.2241062Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-04-25T04:47:37.2244285Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-04-25T04:47:37.2247722Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-04-25T04:47:37.2251066Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-04-25T04:47:37.2254420Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-04-25T04:47:37.2257602Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-04-25T04:47:37.2261187Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-04-25T04:47:37.2264449Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-04-25T04:47:37.2267918Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2270950Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-04-25T04:47:37.2274439Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-04-25T04:47:37.2277689Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-04-25T04:47:37.2281482Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2284746Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-04-25T04:47:37.2287821Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-04-25T04:47:37.2291339Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-04-25T04:47:37.2295147Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-04-25T04:47:37.2298859Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2302153Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-04-25T04:47:37.2305727Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-04-25T04:47:37.2309568Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-04-25T04:47:37.2313490Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2317134Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-04-25T04:47:37.2320230Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-04-25T04:47:37.2324103Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-04-25T04:47:37.2328414Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2331299Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-04-25T04:47:37.2334926Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-04-25T04:47:37.2338425Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-04-25T04:47:37.2342302Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-04-25T04:47:37.2346288Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2349444Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-04-25T04:47:37.2353134Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-04-25T04:47:37.2357761Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-04-25T04:47:37.2361062Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-04-25T04:47:37.2364940Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2368319Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-04-25T04:47:37.2371895Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-04-25T04:47:37.2375749Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-04-25T04:47:37.2379091Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-04-25T04:47:37.2382668Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-04-25T04:47:37.2386122Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2389461Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-04-25T04:47:37.2393394Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2396505Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2399652Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-04-25T04:47:37.2402992Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-04-25T04:47:37.2406384Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-04-25T04:47:37.2410307Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-04-25T04:47:37.2413323Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-04-25T04:47:37.2416808Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-04-25T04:47:37.2420158Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-04-25T04:47:37.2423640Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-04-25T04:47:37.2426949Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-04-25T04:47:37.2430359Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-04-25T04:47:37.2434309Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-04-25T04:47:37.2437498Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2440778Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-04-25T04:47:37.2444207Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-04-25T04:47:37.2447920Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2451365Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-04-25T04:47:37.2454405Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-04-25T04:47:37.2457743Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-04-25T04:47:37.2461321Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-04-25T04:47:37.2465872Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-04-25T04:47:37.2469653Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-04-25T04:47:37.2472921Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-04-25T04:47:37.2476390Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-04-25T04:47:37.2479572Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-04-25T04:47:37.2483086Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-04-25T04:47:37.2486658Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-04-25T04:47:37.2489595Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-04-25T04:47:37.2493055Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-04-25T04:47:37.2496309Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-04-25T04:47:37.2499653Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-04-25T04:47:37.2503140Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-04-25T04:47:37.2523842Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-04-25T04:47:37.2524286Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-04-25T04:47:37.2524820Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-04-25T04:47:37.2525248Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-04-25T04:47:37.2525668Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-04-25T04:47:37.2526103Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-04-25T04:47:37.2530025Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-04-25T04:47:37.2531924Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-04-25T04:47:37.2536296Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-04-25T04:47:37.2538681Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-04-25T04:47:37.2542507Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-04-25T04:47:37.2545882Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2549536Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2552540Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-04-25T04:47:37.2563890Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-04-25T04:47:37.2564377Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-04-25T04:47:37.2564861Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-04-25T04:47:37.2568596Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-04-25T04:47:37.2571528Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-04-25T04:47:37.2574876Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-04-25T04:47:37.2578204Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-04-25T04:47:37.2581650Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-04-25T04:47:37.2585017Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-04-25T04:47:37.2588415Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-04-25T04:47:37.2592049Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2595145Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-04-25T04:47:37.2598635Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-04-25T04:47:37.2601737Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-04-25T04:47:37.2604978Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-04-25T04:47:37.2608225Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-04-25T04:47:37.2611634Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-04-25T04:47:37.2615068Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-04-25T04:47:37.2618249Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-04-25T04:47:37.2621826Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-04-25T04:47:37.2625344Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-04-25T04:47:37.2628895Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2632039Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-04-25T04:47:37.2635647Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-04-25T04:47:37.2638865Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-04-25T04:47:37.2642317Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2645427Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-04-25T04:47:37.2648704Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-04-25T04:47:37.2652008Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-04-25T04:47:37.2655295Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-04-25T04:47:37.2658652Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-04-25T04:47:37.2662032Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-04-25T04:47:37.2665534Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2668588Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-04-25T04:47:37.2671952Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-04-25T04:47:37.2675197Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-04-25T04:47:37.2678628Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2681685Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-04-25T04:47:37.2685050Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-04-25T04:47:37.2688336Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-04-25T04:47:37.2691670Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-04-25T04:47:37.2695190Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2698583Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2701747Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-04-25T04:47:37.2705722Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-04-25T04:47:37.2709011Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-04-25T04:47:37.2712277Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-04-25T04:47:37.2715467Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-04-25T04:47:37.2718752Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-04-25T04:47:37.2722149Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-04-25T04:47:37.2725607Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-04-25T04:47:37.2729185Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2732739Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.2735687Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-04-25T04:47:37.2739272Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-04-25T04:47:37.2742610Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-04-25T04:47:37.2746063Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-04-25T04:47:37.2749447Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-04-25T04:47:37.2752948Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2756065Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-04-25T04:47:37.2759523Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-04-25T04:47:37.2762658Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-04-25T04:47:37.2766048Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2769083Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-04-25T04:47:37.2772384Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-04-25T04:47:37.2776063Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-04-25T04:47:37.2779781Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2783149Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-04-25T04:47:37.2786580Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-04-25T04:47:37.2789728Z adding 'torch/include/ATen/ops/_nnz.h' 2025-04-25T04:47:37.2792904Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-04-25T04:47:37.2796199Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-04-25T04:47:37.2799605Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-04-25T04:47:37.2803040Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-04-25T04:47:37.2806554Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2809616Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-04-25T04:47:37.2813235Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-04-25T04:47:37.2816702Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2820021Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-04-25T04:47:37.2823730Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-04-25T04:47:37.2827145Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-04-25T04:47:37.2830770Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2833823Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-04-25T04:47:37.2837267Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-04-25T04:47:37.2840626Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-04-25T04:47:37.2844314Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2847694Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-04-25T04:47:37.2850957Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-04-25T04:47:37.2854532Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-04-25T04:47:37.2857940Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2861286Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-04-25T04:47:37.2864681Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-04-25T04:47:37.2868277Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-04-25T04:47:37.2872389Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-04-25T04:47:37.2875476Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-04-25T04:47:37.2878696Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-04-25T04:47:37.2882054Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-04-25T04:47:37.2885479Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-04-25T04:47:37.2889488Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2892333Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-04-25T04:47:37.2895723Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-04-25T04:47:37.2899021Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-04-25T04:47:37.2902651Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-04-25T04:47:37.2905963Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-04-25T04:47:37.2909616Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2913349Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-04-25T04:47:37.2916241Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-04-25T04:47:37.2919549Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-04-25T04:47:37.2922935Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-04-25T04:47:37.2926436Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-04-25T04:47:37.2930517Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2933187Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-04-25T04:47:37.2936709Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-04-25T04:47:37.2940007Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-04-25T04:47:37.2943628Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-04-25T04:47:37.2947004Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-04-25T04:47:37.2950459Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-04-25T04:47:37.2953885Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-04-25T04:47:37.2957223Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-04-25T04:47:37.2960739Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-04-25T04:47:37.2964001Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-04-25T04:47:37.2967324Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-04-25T04:47:37.2970617Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-04-25T04:47:37.2974064Z adding 'torch/include/ATen/ops/_print.h' 2025-04-25T04:47:37.2977957Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.2980791Z adding 'torch/include/ATen/ops/_print_native.h' 2025-04-25T04:47:37.2984245Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-04-25T04:47:37.2987541Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-04-25T04:47:37.2991145Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.2994297Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-04-25T04:47:37.2997655Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-04-25T04:47:37.3024065Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-04-25T04:47:37.3024368Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3024527Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-04-25T04:47:37.3024672Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-04-25T04:47:37.3024808Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-04-25T04:47:37.3024956Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-04-25T04:47:37.3025249Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3027823Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.3030941Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-04-25T04:47:37.3034301Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-04-25T04:47:37.3037891Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-04-25T04:47:37.3041302Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-04-25T04:47:37.3044686Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-04-25T04:47:37.3048977Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-04-25T04:47:37.3051326Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-04-25T04:47:37.3054749Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-04-25T04:47:37.3058101Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3061530Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-04-25T04:47:37.3064837Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-04-25T04:47:37.3068137Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-04-25T04:47:37.3071533Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3074554Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-04-25T04:47:37.3078095Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-04-25T04:47:37.3081728Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-04-25T04:47:37.3085402Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3088647Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-04-25T04:47:37.3091808Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-04-25T04:47:37.3095291Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-04-25T04:47:37.3098616Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-04-25T04:47:37.3102207Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3105284Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-04-25T04:47:37.3108800Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-04-25T04:47:37.3112023Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-04-25T04:47:37.3115572Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3118645Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-04-25T04:47:37.3122329Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-04-25T04:47:37.3125622Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-04-25T04:47:37.3129105Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3132338Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-04-25T04:47:37.3135531Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-04-25T04:47:37.3138672Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-04-25T04:47:37.3142207Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-04-25T04:47:37.3145469Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-04-25T04:47:37.3148948Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3151995Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-04-25T04:47:37.3155256Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-04-25T04:47:37.3158709Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-04-25T04:47:37.3162211Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3165485Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-04-25T04:47:37.3168640Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-04-25T04:47:37.3172087Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-04-25T04:47:37.3175524Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-04-25T04:47:37.3178816Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-04-25T04:47:37.3182352Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-04-25T04:47:37.3186036Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-04-25T04:47:37.3189594Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-04-25T04:47:37.3192883Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-04-25T04:47:37.3196427Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-04-25T04:47:37.3199840Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-04-25T04:47:37.3203129Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-04-25T04:47:37.3206599Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-04-25T04:47:37.3209970Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-04-25T04:47:37.3213432Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-04-25T04:47:37.3216907Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-04-25T04:47:37.3220250Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-04-25T04:47:37.3223857Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-04-25T04:47:37.3227263Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-04-25T04:47:37.3230505Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-04-25T04:47:37.3233944Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-04-25T04:47:37.3237313Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-04-25T04:47:37.3240952Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-04-25T04:47:37.3244480Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-04-25T04:47:37.3248559Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-04-25T04:47:37.3252146Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-04-25T04:47:37.3255553Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-04-25T04:47:37.3260375Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-04-25T04:47:37.3264029Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-04-25T04:47:37.3267510Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-04-25T04:47:37.3270757Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-04-25T04:47:37.3274217Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-04-25T04:47:37.3277695Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-04-25T04:47:37.3280850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-04-25T04:47:37.3284267Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-04-25T04:47:37.3287524Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-04-25T04:47:37.3291026Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-04-25T04:47:37.3294488Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-04-25T04:47:37.3298215Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-04-25T04:47:37.3302309Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3305513Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-04-25T04:47:37.3308996Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-04-25T04:47:37.3312547Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3315847Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-04-25T04:47:37.3319320Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-04-25T04:47:37.3322769Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-04-25T04:47:37.3326243Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-04-25T04:47:37.3329479Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-04-25T04:47:37.3333033Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-04-25T04:47:37.3336492Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-04-25T04:47:37.3340190Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-04-25T04:47:37.3343997Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-04-25T04:47:37.3347185Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-04-25T04:47:37.3350834Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-04-25T04:47:37.3354432Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-04-25T04:47:37.3358190Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3361552Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-04-25T04:47:37.3364888Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-04-25T04:47:37.3368266Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-04-25T04:47:37.3371796Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-04-25T04:47:37.3375247Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-04-25T04:47:37.3379118Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3382172Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-04-25T04:47:37.3385587Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-04-25T04:47:37.3389924Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-04-25T04:47:37.3394025Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3397572Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.3401139Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.3404673Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-04-25T04:47:37.3408698Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-04-25T04:47:37.3412382Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-04-25T04:47:37.3416229Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-04-25T04:47:37.3419975Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-04-25T04:47:37.3423460Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-04-25T04:47:37.3427076Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-04-25T04:47:37.3430405Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-04-25T04:47:37.3434055Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3437224Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-04-25T04:47:37.3440701Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-04-25T04:47:37.3444170Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-04-25T04:47:37.3447783Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3450920Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-04-25T04:47:37.3454310Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-04-25T04:47:37.3457742Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-04-25T04:47:37.3461381Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3464569Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-04-25T04:47:37.3468054Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-04-25T04:47:37.3471318Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-04-25T04:47:37.3474972Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3478002Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-04-25T04:47:37.3481533Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-04-25T04:47:37.3484771Z adding 'torch/include/ATen/ops/_softmax.h' 2025-04-25T04:47:37.3488324Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-04-25T04:47:37.3492338Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.3495239Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-04-25T04:47:37.3498757Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-04-25T04:47:37.3502144Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-04-25T04:47:37.3523940Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-04-25T04:47:37.3524191Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-04-25T04:47:37.3524377Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-04-25T04:47:37.3524703Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.3524861Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-04-25T04:47:37.3525026Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-04-25T04:47:37.3528246Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-04-25T04:47:37.3531792Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-04-25T04:47:37.3536261Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-04-25T04:47:37.3538605Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-04-25T04:47:37.3542487Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-04-25T04:47:37.3545810Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3549104Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-04-25T04:47:37.3552593Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-04-25T04:47:37.3555953Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-04-25T04:47:37.3559976Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-04-25T04:47:37.3562948Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3566327Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.3569335Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-04-25T04:47:37.3572718Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-04-25T04:47:37.3576219Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-04-25T04:47:37.3579424Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-04-25T04:47:37.3582978Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-04-25T04:47:37.3586519Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3589695Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-04-25T04:47:37.3593125Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-04-25T04:47:37.3596515Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-04-25T04:47:37.3600002Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3603096Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-04-25T04:47:37.3615983Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-04-25T04:47:37.3616220Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-04-25T04:47:37.3616582Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3617367Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-04-25T04:47:37.3620815Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-04-25T04:47:37.3624246Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-04-25T04:47:37.3627820Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3630929Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-04-25T04:47:37.3634328Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-04-25T04:47:37.3637945Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-04-25T04:47:37.3641679Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3644852Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-04-25T04:47:37.3648230Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-04-25T04:47:37.3651725Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-04-25T04:47:37.3656024Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-04-25T04:47:37.3659798Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3663479Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-04-25T04:47:37.3666849Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-04-25T04:47:37.3670465Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-04-25T04:47:37.3674035Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3677235Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-04-25T04:47:37.3680408Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-04-25T04:47:37.3683969Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-04-25T04:47:37.3687404Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-04-25T04:47:37.3690966Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3694142Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-04-25T04:47:37.3697536Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-04-25T04:47:37.3700975Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-04-25T04:47:37.3704540Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3707624Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-04-25T04:47:37.3711121Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-04-25T04:47:37.3714416Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-04-25T04:47:37.3717948Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3720977Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-04-25T04:47:37.3724368Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-04-25T04:47:37.3727886Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-04-25T04:47:37.3731827Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3734527Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-04-25T04:47:37.3737876Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-04-25T04:47:37.3741474Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-04-25T04:47:37.3744855Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-04-25T04:47:37.3748597Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3751738Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-04-25T04:47:37.3755145Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-04-25T04:47:37.3758524Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3761870Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3765171Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-04-25T04:47:37.3768679Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-04-25T04:47:37.3772218Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-04-25T04:47:37.3776347Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3778943Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-04-25T04:47:37.3782649Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-04-25T04:47:37.3785895Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-04-25T04:47:37.3789506Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3793253Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-04-25T04:47:37.3796151Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-04-25T04:47:37.3799599Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-04-25T04:47:37.3802937Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-04-25T04:47:37.3806351Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-04-25T04:47:37.3809734Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-04-25T04:47:37.3813076Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-04-25T04:47:37.3816673Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-04-25T04:47:37.3819896Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-04-25T04:47:37.3823561Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-04-25T04:47:37.3826787Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-04-25T04:47:37.3830367Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-04-25T04:47:37.3834220Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-04-25T04:47:37.3837151Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-04-25T04:47:37.3840586Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-04-25T04:47:37.3843994Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-04-25T04:47:37.3847337Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-04-25T04:47:37.3850641Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-04-25T04:47:37.3853975Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-04-25T04:47:37.3857582Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-04-25T04:47:37.3860842Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-04-25T04:47:37.3864381Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-04-25T04:47:37.3867610Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-04-25T04:47:37.3871316Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-04-25T04:47:37.3875073Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-04-25T04:47:37.3878034Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-04-25T04:47:37.3881359Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-04-25T04:47:37.3884710Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-04-25T04:47:37.3888102Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-04-25T04:47:37.3891472Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-04-25T04:47:37.3894764Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-04-25T04:47:37.3898162Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-04-25T04:47:37.3901852Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-04-25T04:47:37.3905478Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-04-25T04:47:37.3909097Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3912289Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-04-25T04:47:37.3915709Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-04-25T04:47:37.3919326Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3922911Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3925982Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-04-25T04:47:37.3929640Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-04-25T04:47:37.3933021Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-04-25T04:47:37.3936688Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3940390Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-04-25T04:47:37.3943453Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-04-25T04:47:37.3947002Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-04-25T04:47:37.3950431Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-04-25T04:47:37.3954381Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3957933Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-04-25T04:47:37.3961100Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-04-25T04:47:37.3964706Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3968023Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.3971227Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-04-25T04:47:37.3975365Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-04-25T04:47:37.3978430Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-04-25T04:47:37.3982221Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.3985435Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-04-25T04:47:37.3988810Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-04-25T04:47:37.3992224Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-04-25T04:47:37.3995687Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-04-25T04:47:37.3998955Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-04-25T04:47:37.4002295Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-04-25T04:47:37.4005721Z adding 'torch/include/ATen/ops/_stack.h' 2025-04-25T04:47:37.4009232Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4019555Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-04-25T04:47:37.4019681Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-04-25T04:47:37.4020169Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-04-25T04:47:37.4024377Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-04-25T04:47:37.4027327Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4032099Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-04-25T04:47:37.4034137Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-04-25T04:47:37.4038215Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-04-25T04:47:37.4041000Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4045213Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-04-25T04:47:37.4048566Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-04-25T04:47:37.4051738Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-04-25T04:47:37.4055659Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-04-25T04:47:37.4058538Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-04-25T04:47:37.4062153Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-04-25T04:47:37.4065467Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-04-25T04:47:37.4068870Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4072116Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-04-25T04:47:37.4075491Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-04-25T04:47:37.4078926Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-04-25T04:47:37.4082284Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4085612Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4088670Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-04-25T04:47:37.4092165Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-04-25T04:47:37.4095452Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-04-25T04:47:37.4098877Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4103290Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-04-25T04:47:37.4105902Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4109334Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4112342Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-04-25T04:47:37.4115713Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-04-25T04:47:37.4118890Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-04-25T04:47:37.4122157Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-04-25T04:47:37.4125293Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-04-25T04:47:37.4128766Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4131757Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-04-25T04:47:37.4135028Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-04-25T04:47:37.4138322Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-04-25T04:47:37.4142020Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4145186Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-04-25T04:47:37.4148487Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-04-25T04:47:37.4151891Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-04-25T04:47:37.4155330Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-04-25T04:47:37.4159436Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4162594Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-04-25T04:47:37.4166034Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-04-25T04:47:37.4169485Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-04-25T04:47:37.4172801Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-04-25T04:47:37.4176438Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4179646Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-04-25T04:47:37.4182963Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-04-25T04:47:37.4186410Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-04-25T04:47:37.4189734Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-04-25T04:47:37.4193221Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4196386Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-04-25T04:47:37.4199533Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-04-25T04:47:37.4202889Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-04-25T04:47:37.4206146Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-04-25T04:47:37.4209570Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4212617Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-04-25T04:47:37.4215950Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-04-25T04:47:37.4219196Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-04-25T04:47:37.4222809Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4225882Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-04-25T04:47:37.4229193Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-04-25T04:47:37.4232419Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-04-25T04:47:37.4235916Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4239011Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-04-25T04:47:37.4242350Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-04-25T04:47:37.4245591Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-04-25T04:47:37.4249028Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4252086Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-04-25T04:47:37.4255402Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-04-25T04:47:37.4258799Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-04-25T04:47:37.4262587Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4265718Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-04-25T04:47:37.4269382Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-04-25T04:47:37.4272781Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-04-25T04:47:37.4276425Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4279650Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-04-25T04:47:37.4283141Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-04-25T04:47:37.4286737Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-04-25T04:47:37.4290337Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-04-25T04:47:37.4293980Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4297647Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-04-25T04:47:37.4300751Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-04-25T04:47:37.4304425Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-04-25T04:47:37.4307941Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4311347Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-04-25T04:47:37.4315184Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-04-25T04:47:37.4318298Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-04-25T04:47:37.4322000Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-04-25T04:47:37.4325426Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-04-25T04:47:37.4329064Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4332761Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-04-25T04:47:37.4336144Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4339552Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-04-25T04:47:37.4342966Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-04-25T04:47:37.4346721Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-04-25T04:47:37.4350280Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-04-25T04:47:37.4353602Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-04-25T04:47:37.4357221Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4360499Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-04-25T04:47:37.4364202Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-04-25T04:47:37.4368213Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-04-25T04:47:37.4371506Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-04-25T04:47:37.4375254Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4378507Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-04-25T04:47:37.4382372Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-04-25T04:47:37.4385832Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-04-25T04:47:37.4389279Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4392528Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-04-25T04:47:37.4395852Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-04-25T04:47:37.4399314Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-04-25T04:47:37.4402911Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4406068Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-04-25T04:47:37.4409618Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-04-25T04:47:37.4413094Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-04-25T04:47:37.4416781Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-04-25T04:47:37.4420751Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4423875Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-04-25T04:47:37.4427316Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-04-25T04:47:37.4430501Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-04-25T04:47:37.4434121Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-04-25T04:47:37.4437545Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-04-25T04:47:37.4441247Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4444518Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-04-25T04:47:37.4447808Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-04-25T04:47:37.4451125Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-04-25T04:47:37.4454556Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-04-25T04:47:37.4458190Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4462017Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-04-25T04:47:37.4464908Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-04-25T04:47:37.4468507Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4471719Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-04-25T04:47:37.4475165Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-04-25T04:47:37.4479055Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-04-25T04:47:37.4481949Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-04-25T04:47:37.4485374Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-04-25T04:47:37.4488966Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4492297Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-04-25T04:47:37.4495598Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-04-25T04:47:37.4498980Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-04-25T04:47:37.4502869Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-04-25T04:47:37.4506059Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-04-25T04:47:37.4509609Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-04-25T04:47:37.4513062Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-04-25T04:47:37.4522110Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-04-25T04:47:37.4522351Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-04-25T04:47:37.4523969Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-04-25T04:47:37.4528340Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-04-25T04:47:37.4530885Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-04-25T04:47:37.4534692Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4537863Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-04-25T04:47:37.4541554Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-04-25T04:47:37.4544797Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-04-25T04:47:37.4548595Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-04-25T04:47:37.4552288Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-04-25T04:47:37.4556032Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4559546Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-04-25T04:47:37.4562964Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-04-25T04:47:37.4566518Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-04-25T04:47:37.4570328Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-04-25T04:47:37.4573897Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-04-25T04:47:37.4577486Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4580980Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4584025Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-04-25T04:47:37.4587661Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-04-25T04:47:37.4591096Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-04-25T04:47:37.4594679Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4597975Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-04-25T04:47:37.4601268Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-04-25T04:47:37.4604896Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-04-25T04:47:37.4608367Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-04-25T04:47:37.4611939Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4615095Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-04-25T04:47:37.4618293Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-04-25T04:47:37.4621935Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-04-25T04:47:37.4625207Z adding 'torch/include/ATen/ops/_unique.h' 2025-04-25T04:47:37.4628524Z adding 'torch/include/ATen/ops/_unique2.h' 2025-04-25T04:47:37.4632070Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4635219Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-04-25T04:47:37.4638518Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-04-25T04:47:37.4641655Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-04-25T04:47:37.4645139Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-04-25T04:47:37.4648703Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4651877Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-04-25T04:47:37.4655097Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-04-25T04:47:37.4658261Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-04-25T04:47:37.4662101Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-04-25T04:47:37.4665476Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-04-25T04:47:37.4669057Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4672129Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-04-25T04:47:37.4675423Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-04-25T04:47:37.4678661Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-04-25T04:47:37.4682086Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4685129Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-04-25T04:47:37.4688435Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-04-25T04:47:37.4691709Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-04-25T04:47:37.4695131Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4698252Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-04-25T04:47:37.4701772Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-04-25T04:47:37.4704991Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-04-25T04:47:37.4708465Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4711549Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-04-25T04:47:37.4714902Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-04-25T04:47:37.4718261Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-04-25T04:47:37.4721755Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4724868Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-04-25T04:47:37.4728240Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-04-25T04:47:37.4731634Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-04-25T04:47:37.4735302Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.4738273Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-04-25T04:47:37.4741739Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-04-25T04:47:37.4745672Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-04-25T04:47:37.4749738Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-04-25T04:47:37.4753559Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4756931Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-04-25T04:47:37.4760361Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-04-25T04:47:37.4764168Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-04-25T04:47:37.4767448Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-04-25T04:47:37.4770945Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-04-25T04:47:37.4774553Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-04-25T04:47:37.4778231Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4782211Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4785234Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-04-25T04:47:37.4788820Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-04-25T04:47:37.4792085Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-04-25T04:47:37.4795714Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-04-25T04:47:37.4799161Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-04-25T04:47:37.4802735Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-04-25T04:47:37.4806804Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-04-25T04:47:37.4811342Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-04-25T04:47:37.4814851Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4818318Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-04-25T04:47:37.4822606Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-04-25T04:47:37.4825455Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-04-25T04:47:37.4829180Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-04-25T04:47:37.4842624Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-04-25T04:47:37.4846691Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-04-25T04:47:37.4850106Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4853558Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4856907Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-04-25T04:47:37.4860594Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-04-25T04:47:37.4864129Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-04-25T04:47:37.4867520Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-04-25T04:47:37.4871332Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-04-25T04:47:37.4875312Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-04-25T04:47:37.4879003Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-04-25T04:47:37.4883077Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-04-25T04:47:37.4887367Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4890311Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.4893968Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.4897255Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-04-25T04:47:37.4901015Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-04-25T04:47:37.4904591Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-04-25T04:47:37.4908014Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-04-25T04:47:37.4911756Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4915078Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4918560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-04-25T04:47:37.4922148Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-04-25T04:47:37.4925308Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-04-25T04:47:37.4928855Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-04-25T04:47:37.4932135Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-04-25T04:47:37.4935897Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-04-25T04:47:37.4940143Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-04-25T04:47:37.4944249Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-04-25T04:47:37.4948218Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4951862Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.4955102Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.4958529Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-04-25T04:47:37.4962048Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-04-25T04:47:37.4965517Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-04-25T04:47:37.4969322Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-04-25T04:47:37.4972747Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.4976162Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.4979501Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-04-25T04:47:37.4983307Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-04-25T04:47:37.4986745Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-04-25T04:47:37.4990218Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-04-25T04:47:37.4993691Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-04-25T04:47:37.4997271Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-04-25T04:47:37.5001538Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-04-25T04:47:37.5005760Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-04-25T04:47:37.5009700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5013133Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.5016835Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.5020734Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-04-25T04:47:37.5024667Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-04-25T04:47:37.5028270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-04-25T04:47:37.5032323Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-04-25T04:47:37.5035955Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5039345Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5042752Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-04-25T04:47:37.5046338Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-04-25T04:47:37.5049693Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-04-25T04:47:37.5053177Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-04-25T04:47:37.5056706Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-04-25T04:47:37.5060461Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-04-25T04:47:37.5063896Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-04-25T04:47:37.5067309Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-04-25T04:47:37.5070640Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-04-25T04:47:37.5074103Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-04-25T04:47:37.5077347Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-04-25T04:47:37.5080763Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5083906Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-04-25T04:47:37.5087317Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-04-25T04:47:37.5090636Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-04-25T04:47:37.5093983Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-04-25T04:47:37.5097301Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-04-25T04:47:37.5100541Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-04-25T04:47:37.5103937Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-04-25T04:47:37.5107196Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-04-25T04:47:37.5110704Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5113784Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-04-25T04:47:37.5117331Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-04-25T04:47:37.5120616Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-04-25T04:47:37.5124065Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5127307Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-04-25T04:47:37.5130603Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-04-25T04:47:37.5133987Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-04-25T04:47:37.5137503Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5140808Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-04-25T04:47:37.5144178Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-04-25T04:47:37.5147436Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-04-25T04:47:37.5150973Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5154043Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-04-25T04:47:37.5157352Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-04-25T04:47:37.5160633Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-04-25T04:47:37.5164080Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5167160Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-04-25T04:47:37.5170477Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-04-25T04:47:37.5173936Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-04-25T04:47:37.5177366Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5180763Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-04-25T04:47:37.5184305Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-04-25T04:47:37.5187511Z adding 'torch/include/ATen/ops/_values.h' 2025-04-25T04:47:37.5191006Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-04-25T04:47:37.5194852Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5198657Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5202115Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-04-25T04:47:37.5205839Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-04-25T04:47:37.5209508Z adding 'torch/include/ATen/ops/_values_native.h' 2025-04-25T04:47:37.5213406Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-04-25T04:47:37.5217099Z adding 'torch/include/ATen/ops/_version.h' 2025-04-25T04:47:37.5221031Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5224452Z adding 'torch/include/ATen/ops/_version_native.h' 2025-04-25T04:47:37.5228283Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-04-25T04:47:37.5232027Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-04-25T04:47:37.5235561Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-04-25T04:47:37.5238896Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-04-25T04:47:37.5242437Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-04-25T04:47:37.5245659Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-04-25T04:47:37.5249182Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-04-25T04:47:37.5253456Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-04-25T04:47:37.5255948Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-04-25T04:47:37.5259716Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-04-25T04:47:37.5262853Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-04-25T04:47:37.5266249Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-04-25T04:47:37.5270826Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-04-25T04:47:37.5272912Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-04-25T04:47:37.5276105Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-04-25T04:47:37.5279402Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-04-25T04:47:37.5282629Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-04-25T04:47:37.5287203Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5289449Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-04-25T04:47:37.5292920Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5296068Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-04-25T04:47:37.5299371Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-04-25T04:47:37.5302792Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-04-25T04:47:37.5306323Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-04-25T04:47:37.5309744Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5312945Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-04-25T04:47:37.5316220Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-04-25T04:47:37.5319600Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-04-25T04:47:37.5323071Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-04-25T04:47:37.5326591Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5329727Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-04-25T04:47:37.5332965Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-04-25T04:47:37.5336127Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-04-25T04:47:37.5339574Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-04-25T04:47:37.5343329Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-04-25T04:47:37.5346332Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-04-25T04:47:37.5349614Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-04-25T04:47:37.5353110Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5356156Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-04-25T04:47:37.5359486Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-04-25T04:47:37.5362862Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-04-25T04:47:37.5366357Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5369415Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-04-25T04:47:37.5372786Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-04-25T04:47:37.5376414Z adding 'torch/include/ATen/ops/abs.h' 2025-04-25T04:47:37.5384788Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5385083Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-04-25T04:47:37.5389005Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-04-25T04:47:37.5392892Z adding 'torch/include/ATen/ops/abs_native.h' 2025-04-25T04:47:37.5396313Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-04-25T04:47:37.5399579Z adding 'torch/include/ATen/ops/absolute.h' 2025-04-25T04:47:37.5402827Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5405854Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-04-25T04:47:37.5409264Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-04-25T04:47:37.5412579Z adding 'torch/include/ATen/ops/acos.h' 2025-04-25T04:47:37.5416111Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5419465Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-04-25T04:47:37.5422934Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-04-25T04:47:37.5426139Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-04-25T04:47:37.5429610Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-04-25T04:47:37.5432765Z adding 'torch/include/ATen/ops/acos_native.h' 2025-04-25T04:47:37.5436262Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-04-25T04:47:37.5439469Z adding 'torch/include/ATen/ops/acosh.h' 2025-04-25T04:47:37.5442992Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5446205Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-04-25T04:47:37.5449436Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-04-25T04:47:37.5452553Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-04-25T04:47:37.5455834Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-04-25T04:47:37.5458977Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-04-25T04:47:37.5462587Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-04-25T04:47:37.5465965Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-04-25T04:47:37.5469467Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5472767Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5475835Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-04-25T04:47:37.5479181Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-04-25T04:47:37.5482787Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-04-25T04:47:37.5486339Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5489611Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-04-25T04:47:37.5492962Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-04-25T04:47:37.5496161Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-04-25T04:47:37.5500294Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-04-25T04:47:37.5503466Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-04-25T04:47:37.5506871Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-04-25T04:47:37.5510260Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.5513528Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.5516698Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-04-25T04:47:37.5520046Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-04-25T04:47:37.5523488Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5526636Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-04-25T04:47:37.5529932Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-04-25T04:47:37.5533148Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-04-25T04:47:37.5536560Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-04-25T04:47:37.5539854Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-04-25T04:47:37.5543508Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5546546Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-04-25T04:47:37.5549862Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-04-25T04:47:37.5553274Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-04-25T04:47:37.5556638Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-04-25T04:47:37.5560234Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5563374Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.5566672Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.5569940Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-04-25T04:47:37.5573267Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-04-25T04:47:37.5576455Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-04-25T04:47:37.5579838Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-04-25T04:47:37.5583553Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5586781Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-04-25T04:47:37.5590058Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-04-25T04:47:37.5593197Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-04-25T04:47:37.5596549Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-04-25T04:47:37.5599757Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-04-25T04:47:37.5609538Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-04-25T04:47:37.5609689Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-04-25T04:47:37.5611148Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-04-25T04:47:37.5659880Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5660212Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.5660466Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.5660673Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-04-25T04:47:37.5660910Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-04-25T04:47:37.5661124Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-04-25T04:47:37.5661333Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-04-25T04:47:37.5661708Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5661907Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-04-25T04:47:37.5662117Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-04-25T04:47:37.5662349Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-04-25T04:47:37.5662549Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-04-25T04:47:37.5662736Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-04-25T04:47:37.5664257Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-04-25T04:47:37.5667803Z adding 'torch/include/ATen/ops/add.h' 2025-04-25T04:47:37.5671757Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5674933Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5678338Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-04-25T04:47:37.5681673Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-04-25T04:47:37.5685052Z adding 'torch/include/ATen/ops/add_meta.h' 2025-04-25T04:47:37.5688386Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-04-25T04:47:37.5691937Z adding 'torch/include/ATen/ops/add_native.h' 2025-04-25T04:47:37.5695832Z adding 'torch/include/ATen/ops/add_ops.h' 2025-04-25T04:47:37.5699356Z adding 'torch/include/ATen/ops/addbmm.h' 2025-04-25T04:47:37.5702903Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-04-25T04:47:37.5706262Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-04-25T04:47:37.5710098Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-04-25T04:47:37.5712962Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-04-25T04:47:37.5716556Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-04-25T04:47:37.5719956Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-04-25T04:47:37.5723477Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5726595Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-04-25T04:47:37.5729953Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-04-25T04:47:37.5733218Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-04-25T04:47:37.5736578Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-04-25T04:47:37.5739861Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-04-25T04:47:37.5743649Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-04-25T04:47:37.5747136Z adding 'torch/include/ATen/ops/addcmul.h' 2025-04-25T04:47:37.5750717Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5753772Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-04-25T04:47:37.5757102Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-04-25T04:47:37.5760360Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-04-25T04:47:37.5763671Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-04-25T04:47:37.5766771Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-04-25T04:47:37.5770203Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-04-25T04:47:37.5773664Z adding 'torch/include/ATen/ops/addmm.h' 2025-04-25T04:47:37.5777260Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5780391Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-04-25T04:47:37.5783906Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-04-25T04:47:37.5787060Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-04-25T04:47:37.5790351Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-04-25T04:47:37.5793724Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-04-25T04:47:37.5797551Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-04-25T04:47:37.5801021Z adding 'torch/include/ATen/ops/addmv.h' 2025-04-25T04:47:37.5805004Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5808143Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-04-25T04:47:37.5811424Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-04-25T04:47:37.5814607Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-04-25T04:47:37.5817905Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-04-25T04:47:37.5821289Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-04-25T04:47:37.5824809Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-04-25T04:47:37.5828123Z adding 'torch/include/ATen/ops/addr.h' 2025-04-25T04:47:37.5831617Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5834822Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-04-25T04:47:37.5838092Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-04-25T04:47:37.5841294Z adding 'torch/include/ATen/ops/addr_native.h' 2025-04-25T04:47:37.5844727Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-04-25T04:47:37.5847944Z adding 'torch/include/ATen/ops/adjoint.h' 2025-04-25T04:47:37.5851388Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5854309Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-04-25T04:47:37.5857508Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-04-25T04:47:37.5861237Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-04-25T04:47:37.5864765Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-04-25T04:47:37.5868249Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5871345Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-04-25T04:47:37.5874547Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-04-25T04:47:37.5877989Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5881040Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-04-25T04:47:37.5884542Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-04-25T04:47:37.5887683Z adding 'torch/include/ATen/ops/alias.h' 2025-04-25T04:47:37.5891021Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5894106Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-04-25T04:47:37.5898383Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.5903037Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.5961781Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-04-25T04:47:37.5966374Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-04-25T04:47:37.5970937Z adding 'torch/include/ATen/ops/alias_native.h' 2025-04-25T04:47:37.5976946Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-04-25T04:47:37.5980395Z adding 'torch/include/ATen/ops/align_as.h' 2025-04-25T04:47:37.5985267Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.5989444Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-04-25T04:47:37.5992930Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-04-25T04:47:37.5996350Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-04-25T04:47:37.6000075Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6003090Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-04-25T04:47:37.6006512Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-04-25T04:47:37.6009729Z adding 'torch/include/ATen/ops/align_to.h' 2025-04-25T04:47:37.6013520Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6016568Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-04-25T04:47:37.6020253Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-04-25T04:47:37.6029615Z adding 'torch/include/ATen/ops/all.h' 2025-04-25T04:47:37.6030049Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6031579Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6057346Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6057844Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-04-25T04:47:37.6058722Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-04-25T04:47:37.6059078Z adding 'torch/include/ATen/ops/all_meta.h' 2025-04-25T04:47:37.6059412Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-04-25T04:47:37.6059777Z adding 'torch/include/ATen/ops/all_native.h' 2025-04-25T04:47:37.6060208Z adding 'torch/include/ATen/ops/all_ops.h' 2025-04-25T04:47:37.6061510Z adding 'torch/include/ATen/ops/allclose.h' 2025-04-25T04:47:37.6065234Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6069689Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-04-25T04:47:37.6071882Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-04-25T04:47:37.6075895Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-04-25T04:47:37.6078806Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6082146Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-04-25T04:47:37.6085453Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-04-25T04:47:37.6088762Z adding 'torch/include/ATen/ops/amax.h' 2025-04-25T04:47:37.6093507Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6095681Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-04-25T04:47:37.6099029Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-04-25T04:47:37.6102320Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-04-25T04:47:37.6105627Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-04-25T04:47:37.6109622Z adding 'torch/include/ATen/ops/amax_native.h' 2025-04-25T04:47:37.6112391Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-04-25T04:47:37.6115746Z adding 'torch/include/ATen/ops/amin.h' 2025-04-25T04:47:37.6119311Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6122402Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-04-25T04:47:37.6125664Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-04-25T04:47:37.6128841Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-04-25T04:47:37.6132133Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-04-25T04:47:37.6135389Z adding 'torch/include/ATen/ops/amin_native.h' 2025-04-25T04:47:37.6139170Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-04-25T04:47:37.6142481Z adding 'torch/include/ATen/ops/aminmax.h' 2025-04-25T04:47:37.6145936Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6149092Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-04-25T04:47:37.6152411Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-04-25T04:47:37.6155635Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-04-25T04:47:37.6158901Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-04-25T04:47:37.6162051Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-04-25T04:47:37.6165478Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-04-25T04:47:37.6168712Z adding 'torch/include/ATen/ops/and.h' 2025-04-25T04:47:37.6172182Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6175276Z adding 'torch/include/ATen/ops/and_native.h' 2025-04-25T04:47:37.6178743Z adding 'torch/include/ATen/ops/and_ops.h' 2025-04-25T04:47:37.6182368Z adding 'torch/include/ATen/ops/angle.h' 2025-04-25T04:47:37.6185695Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-04-25T04:47:37.6188951Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-04-25T04:47:37.6192053Z adding 'torch/include/ATen/ops/angle_native.h' 2025-04-25T04:47:37.6195398Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-04-25T04:47:37.6199113Z adding 'torch/include/ATen/ops/any.h' 2025-04-25T04:47:37.6202657Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6206027Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6209251Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6212467Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-04-25T04:47:37.6215839Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-04-25T04:47:37.6219021Z adding 'torch/include/ATen/ops/any_meta.h' 2025-04-25T04:47:37.6222528Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-04-25T04:47:37.6225861Z adding 'torch/include/ATen/ops/any_native.h' 2025-04-25T04:47:37.6229587Z adding 'torch/include/ATen/ops/any_ops.h' 2025-04-25T04:47:37.6233350Z adding 'torch/include/ATen/ops/arange.h' 2025-04-25T04:47:37.6236984Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6240166Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-04-25T04:47:37.6243466Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-04-25T04:47:37.6246715Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-04-25T04:47:37.6249985Z adding 'torch/include/ATen/ops/arange_native.h' 2025-04-25T04:47:37.6253651Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-04-25T04:47:37.6257020Z adding 'torch/include/ATen/ops/arccos.h' 2025-04-25T04:47:37.6260550Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6263695Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-04-25T04:47:37.6267112Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-04-25T04:47:37.6270415Z adding 'torch/include/ATen/ops/arccosh.h' 2025-04-25T04:47:37.6273906Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6276977Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-04-25T04:47:37.6280331Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-04-25T04:47:37.6283633Z adding 'torch/include/ATen/ops/arcsin.h' 2025-04-25T04:47:37.6287076Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6290112Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-04-25T04:47:37.6293487Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-04-25T04:47:37.6296939Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-04-25T04:47:37.6300862Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6304607Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-04-25T04:47:37.6307572Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-04-25T04:47:37.6311074Z adding 'torch/include/ATen/ops/arctan.h' 2025-04-25T04:47:37.6314353Z adding 'torch/include/ATen/ops/arctan2.h' 2025-04-25T04:47:37.6317979Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6321116Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-04-25T04:47:37.6324629Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-04-25T04:47:37.6328225Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6331382Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-04-25T04:47:37.6334908Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-04-25T04:47:37.6338209Z adding 'torch/include/ATen/ops/arctanh.h' 2025-04-25T04:47:37.6342039Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6345276Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-04-25T04:47:37.6348679Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-04-25T04:47:37.6352200Z adding 'torch/include/ATen/ops/argmax.h' 2025-04-25T04:47:37.6355781Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6359132Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-04-25T04:47:37.6362913Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-04-25T04:47:37.6365829Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-04-25T04:47:37.6369285Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-04-25T04:47:37.6372495Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-04-25T04:47:37.6376071Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-04-25T04:47:37.6379382Z adding 'torch/include/ATen/ops/argmin.h' 2025-04-25T04:47:37.6383228Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6386792Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-04-25T04:47:37.6389880Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-04-25T04:47:37.6393250Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-04-25T04:47:37.6396524Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-04-25T04:47:37.6399926Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-04-25T04:47:37.6403783Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-04-25T04:47:37.6406890Z adding 'torch/include/ATen/ops/argsort.h' 2025-04-25T04:47:37.6410593Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6413741Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-04-25T04:47:37.6417453Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-04-25T04:47:37.6421872Z adding 'torch/include/ATen/ops/argwhere.h' 2025-04-25T04:47:37.6424541Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6428020Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-04-25T04:47:37.6431263Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-04-25T04:47:37.6434932Z adding 'torch/include/ATen/ops/as_strided.h' 2025-04-25T04:47:37.6438621Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6442251Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-04-25T04:47:37.6446119Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6449601Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6452813Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-04-25T04:47:37.6456785Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-04-25T04:47:37.6459845Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-04-25T04:47:37.6463510Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-04-25T04:47:37.6467563Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-04-25T04:47:37.6470420Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-04-25T04:47:37.6474319Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-04-25T04:47:37.6477715Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-04-25T04:47:37.6481587Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6485036Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6489080Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-04-25T04:47:37.6492864Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-04-25T04:47:37.6496178Z adding 'torch/include/ATen/ops/asin.h' 2025-04-25T04:47:37.6499862Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6503530Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-04-25T04:47:37.6506594Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-04-25T04:47:37.6509982Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-04-25T04:47:37.6513215Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-04-25T04:47:37.6516616Z adding 'torch/include/ATen/ops/asin_native.h' 2025-04-25T04:47:37.6520064Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-04-25T04:47:37.6523550Z adding 'torch/include/ATen/ops/asinh.h' 2025-04-25T04:47:37.6535991Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6536567Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-04-25T04:47:37.6536957Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-04-25T04:47:37.6537721Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-04-25T04:47:37.6544739Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-04-25T04:47:37.6545128Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-04-25T04:47:37.6548464Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-04-25T04:47:37.6552076Z adding 'torch/include/ATen/ops/atan.h' 2025-04-25T04:47:37.6555394Z adding 'torch/include/ATen/ops/atan2.h' 2025-04-25T04:47:37.6559123Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6563397Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-04-25T04:47:37.6565773Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-04-25T04:47:37.6569704Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-04-25T04:47:37.6572556Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-04-25T04:47:37.6575767Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-04-25T04:47:37.6579258Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-04-25T04:47:37.6583191Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6586330Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-04-25T04:47:37.6589592Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-04-25T04:47:37.6592730Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-04-25T04:47:37.6596010Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-04-25T04:47:37.6599599Z adding 'torch/include/ATen/ops/atan_native.h' 2025-04-25T04:47:37.6603115Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-04-25T04:47:37.6606424Z adding 'torch/include/ATen/ops/atanh.h' 2025-04-25T04:47:37.6609985Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6613107Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-04-25T04:47:37.6616389Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-04-25T04:47:37.6619554Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-04-25T04:47:37.6623010Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-04-25T04:47:37.6626246Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-04-25T04:47:37.6630294Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-04-25T04:47:37.6635794Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-04-25T04:47:37.6640788Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6644295Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-04-25T04:47:37.6647769Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-04-25T04:47:37.6651085Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-04-25T04:47:37.6654554Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6657602Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-04-25T04:47:37.6661139Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-04-25T04:47:37.6664508Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-04-25T04:47:37.6667981Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6671062Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-04-25T04:47:37.6674397Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-04-25T04:47:37.6677815Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-04-25T04:47:37.6681392Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6684862Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6687997Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-04-25T04:47:37.6691498Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-04-25T04:47:37.6695024Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-04-25T04:47:37.6698552Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-04-25T04:47:37.6702385Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6705583Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.6708921Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.6712187Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-04-25T04:47:37.6715557Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-04-25T04:47:37.6718952Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-04-25T04:47:37.6722482Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-04-25T04:47:37.6726054Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6729258Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-04-25T04:47:37.6732638Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-04-25T04:47:37.6736385Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-04-25T04:47:37.6739874Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-04-25T04:47:37.6743402Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-04-25T04:47:37.6746924Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-04-25T04:47:37.6750419Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-04-25T04:47:37.6753941Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-04-25T04:47:37.6757628Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6760828Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:47:37.6764178Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:47:37.6767406Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-04-25T04:47:37.6770772Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-04-25T04:47:37.6774138Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-04-25T04:47:37.6777702Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-04-25T04:47:37.6781471Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6785387Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-04-25T04:47:37.6794505Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-04-25T04:47:37.6795070Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-04-25T04:47:37.6795541Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-04-25T04:47:37.6798780Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-04-25T04:47:37.6802936Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-04-25T04:47:37.6805988Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-04-25T04:47:37.6809699Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.6812807Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-04-25T04:47:37.6816388Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-04-25T04:47:37.6819649Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-04-25T04:47:37.6823317Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-04-25T04:47:37.6827031Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-04-25T04:47:37.6830483Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-04-25T04:47:37.6834316Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-04-25T04:47:37.6838499Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6841332Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-04-25T04:47:37.6845090Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-04-25T04:47:37.6848452Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-04-25T04:47:37.6852039Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-04-25T04:47:37.6855877Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-04-25T04:47:37.6859437Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:47:37.6863193Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-04-25T04:47:37.6866823Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6870194Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-04-25T04:47:37.6873905Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-04-25T04:47:37.6877041Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-04-25T04:47:37.6880639Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-04-25T04:47:37.6884105Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-04-25T04:47:37.6887791Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-04-25T04:47:37.6891514Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6894788Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-04-25T04:47:37.6898197Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-04-25T04:47:37.6902571Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-04-25T04:47:37.6905635Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.6909061Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-04-25T04:47:37.6912452Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-04-25T04:47:37.6915799Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-04-25T04:47:37.6919254Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-04-25T04:47:37.6922919Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-04-25T04:47:37.6926671Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6929936Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-04-25T04:47:37.6933324Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-04-25T04:47:37.6936869Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-04-25T04:47:37.6940681Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-04-25T04:47:37.6944489Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6947853Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-04-25T04:47:37.6951128Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-04-25T04:47:37.6954790Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-04-25T04:47:37.6958108Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-04-25T04:47:37.6961763Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-04-25T04:47:37.6965032Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-04-25T04:47:37.6968706Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6971929Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-04-25T04:47:37.6975288Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-04-25T04:47:37.6979258Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-04-25T04:47:37.6982473Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-04-25T04:47:37.6986208Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.6989443Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-04-25T04:47:37.6992893Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-04-25T04:47:37.6996417Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-04-25T04:47:37.6999724Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-04-25T04:47:37.7003354Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-04-25T04:47:37.7006955Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7010533Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7013816Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-04-25T04:47:37.7017195Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-04-25T04:47:37.7020733Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-04-25T04:47:37.7024059Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-04-25T04:47:37.7028008Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-04-25T04:47:37.7041333Z adding 'torch/include/ATen/ops/bilinear.h' 2025-04-25T04:47:37.7041817Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7042321Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-04-25T04:47:37.7042693Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-04-25T04:47:37.7045873Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-04-25T04:47:37.7049550Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-04-25T04:47:37.7053940Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-04-25T04:47:37.7056689Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-04-25T04:47:37.7060192Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-04-25T04:47:37.7063768Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-04-25T04:47:37.7067323Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-04-25T04:47:37.7070690Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-04-25T04:47:37.7073895Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-04-25T04:47:37.7077632Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-04-25T04:47:37.7081438Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-04-25T04:47:37.7084994Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7088115Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-04-25T04:47:37.7091544Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-04-25T04:47:37.7095055Z adding 'torch/include/ATen/ops/bincount.h' 2025-04-25T04:47:37.7098660Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7101955Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-04-25T04:47:37.7105203Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-04-25T04:47:37.7108394Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-04-25T04:47:37.7111789Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-04-25T04:47:37.7115122Z adding 'torch/include/ATen/ops/binomial.h' 2025-04-25T04:47:37.7118562Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7121720Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-04-25T04:47:37.7125168Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-04-25T04:47:37.7128347Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-04-25T04:47:37.7131750Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-04-25T04:47:37.7135244Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-04-25T04:47:37.7138831Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7142306Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7145417Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-04-25T04:47:37.7148660Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-04-25T04:47:37.7151844Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-04-25T04:47:37.7155157Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-04-25T04:47:37.7158372Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-04-25T04:47:37.7162086Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-04-25T04:47:37.7165686Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-04-25T04:47:37.7169291Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7172691Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7175823Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-04-25T04:47:37.7179122Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-04-25T04:47:37.7182677Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-04-25T04:47:37.7186593Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-04-25T04:47:37.7189432Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-04-25T04:47:37.7193336Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-04-25T04:47:37.7196770Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-04-25T04:47:37.7200494Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7204128Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-04-25T04:47:37.7207068Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-04-25T04:47:37.7210412Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-04-25T04:47:37.7213662Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-04-25T04:47:37.7216970Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-04-25T04:47:37.7220463Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-04-25T04:47:37.7224112Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-04-25T04:47:37.7228199Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7231269Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7234505Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-04-25T04:47:37.7237787Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-04-25T04:47:37.7241166Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-04-25T04:47:37.7245102Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-04-25T04:47:37.7247854Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-04-25T04:47:37.7251851Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-04-25T04:47:37.7255337Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-04-25T04:47:37.7259153Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7263022Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7266023Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-04-25T04:47:37.7269449Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-04-25T04:47:37.7272610Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-04-25T04:47:37.7276088Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-04-25T04:47:37.7279315Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-04-25T04:47:37.7283231Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-04-25T04:47:37.7287817Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-04-25T04:47:37.7291558Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7295014Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7298718Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-04-25T04:47:37.7302164Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-04-25T04:47:37.7305511Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-04-25T04:47:37.7308856Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-04-25T04:47:37.7312345Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-04-25T04:47:37.7316246Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-04-25T04:47:37.7319929Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-04-25T04:47:37.7323722Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7327502Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-04-25T04:47:37.7330628Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-04-25T04:47:37.7334275Z adding 'torch/include/ATen/ops/block_diag.h' 2025-04-25T04:47:37.7337799Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7341200Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-04-25T04:47:37.7345080Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-04-25T04:47:37.7348225Z adding 'torch/include/ATen/ops/bmm.h' 2025-04-25T04:47:37.7351906Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7355036Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-04-25T04:47:37.7358507Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-04-25T04:47:37.7361732Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-04-25T04:47:37.7365214Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-04-25T04:47:37.7368884Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-04-25T04:47:37.7372208Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-04-25T04:47:37.7375735Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-04-25T04:47:37.7379240Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7382586Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-04-25T04:47:37.7386099Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-04-25T04:47:37.7389385Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-04-25T04:47:37.7393062Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7396131Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-04-25T04:47:37.7399610Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-04-25T04:47:37.7403629Z adding 'torch/include/ATen/ops/bucketize.h' 2025-04-25T04:47:37.7406774Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7410331Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-04-25T04:47:37.7413498Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-04-25T04:47:37.7416915Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-04-25T04:47:37.7421209Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-04-25T04:47:37.7424118Z adding 'torch/include/ATen/ops/can_cast.h' 2025-04-25T04:47:37.7427717Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7430756Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-04-25T04:47:37.7434204Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-04-25T04:47:37.7437481Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-04-25T04:47:37.7441101Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7444217Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-04-25T04:47:37.7447609Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-04-25T04:47:37.7451173Z adding 'torch/include/ATen/ops/cat.h' 2025-04-25T04:47:37.7454752Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7458185Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7461518Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-04-25T04:47:37.7464998Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-04-25T04:47:37.7468928Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-04-25T04:47:37.7472453Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-04-25T04:47:37.7475944Z adding 'torch/include/ATen/ops/cat_native.h' 2025-04-25T04:47:37.7479897Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-04-25T04:47:37.7483129Z adding 'torch/include/ATen/ops/cauchy.h' 2025-04-25T04:47:37.7486782Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7489976Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-04-25T04:47:37.7493392Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-04-25T04:47:37.7496783Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-04-25T04:47:37.7500191Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-04-25T04:47:37.7503910Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-04-25T04:47:37.7507196Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-04-25T04:47:37.7510739Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7513940Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-04-25T04:47:37.7518057Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7521616Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7524657Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-04-25T04:47:37.7528171Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-04-25T04:47:37.7531444Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-04-25T04:47:37.7535246Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-04-25T04:47:37.7542951Z adding 'torch/include/ATen/ops/cdist.h' 2025-04-25T04:47:37.7543418Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7546048Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-04-25T04:47:37.7549566Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-04-25T04:47:37.7552904Z adding 'torch/include/ATen/ops/ceil.h' 2025-04-25T04:47:37.7556898Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7560199Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-04-25T04:47:37.7563614Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-04-25T04:47:37.7567858Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-04-25T04:47:37.7570315Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-04-25T04:47:37.7573557Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-04-25T04:47:37.7577157Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-04-25T04:47:37.7580675Z adding 'torch/include/ATen/ops/celu.h' 2025-04-25T04:47:37.7584204Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7587336Z adding 'torch/include/ATen/ops/celu_native.h' 2025-04-25T04:47:37.7590765Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-04-25T04:47:37.7595313Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-04-25T04:47:37.7597952Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7601324Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-04-25T04:47:37.7604468Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-04-25T04:47:37.7607559Z adding 'torch/include/ATen/ops/chalf.h' 2025-04-25T04:47:37.7610964Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7614069Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-04-25T04:47:37.7617461Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-04-25T04:47:37.7621216Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-04-25T04:47:37.7624817Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7628224Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-04-25T04:47:37.7631505Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-04-25T04:47:37.7634699Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-04-25T04:47:37.7638095Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-04-25T04:47:37.7641391Z adding 'torch/include/ATen/ops/cholesky.h' 2025-04-25T04:47:37.7644764Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-04-25T04:47:37.7648137Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-04-25T04:47:37.7651259Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-04-25T04:47:37.7654610Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-04-25T04:47:37.7657872Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-04-25T04:47:37.7661185Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-04-25T04:47:37.7664549Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-04-25T04:47:37.7667827Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-04-25T04:47:37.7671166Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-04-25T04:47:37.7674447Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-04-25T04:47:37.7678014Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7681069Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-04-25T04:47:37.7684609Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-04-25T04:47:37.7688467Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-04-25T04:47:37.7691614Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7694969Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-04-25T04:47:37.7698343Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-04-25T04:47:37.7701862Z adding 'torch/include/ATen/ops/chunk.h' 2025-04-25T04:47:37.7705709Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7708606Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-04-25T04:47:37.7712118Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-04-25T04:47:37.7715639Z adding 'torch/include/ATen/ops/clamp.h' 2025-04-25T04:47:37.7719569Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7723663Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-04-25T04:47:37.7726401Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-04-25T04:47:37.7729991Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-04-25T04:47:37.7734325Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7737645Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-04-25T04:47:37.7741307Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-04-25T04:47:37.7744511Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-04-25T04:47:37.7748054Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-04-25T04:47:37.7751294Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-04-25T04:47:37.7755094Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-04-25T04:47:37.7758809Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-04-25T04:47:37.7762002Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-04-25T04:47:37.7765627Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-04-25T04:47:37.7769279Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7772608Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-04-25T04:47:37.7776484Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-04-25T04:47:37.7779385Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-04-25T04:47:37.7783003Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-04-25T04:47:37.7786206Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-04-25T04:47:37.7789994Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-04-25T04:47:37.7793932Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-04-25T04:47:37.7797334Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-04-25T04:47:37.7801147Z adding 'torch/include/ATen/ops/clip.h' 2025-04-25T04:47:37.7805325Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7808225Z adding 'torch/include/ATen/ops/clip_native.h' 2025-04-25T04:47:37.7812099Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-04-25T04:47:37.7815557Z adding 'torch/include/ATen/ops/clone.h' 2025-04-25T04:47:37.7819244Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7822679Z adding 'torch/include/ATen/ops/clone_native.h' 2025-04-25T04:47:37.7826250Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-04-25T04:47:37.7829942Z adding 'torch/include/ATen/ops/coalesce.h' 2025-04-25T04:47:37.7833140Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7836318Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-04-25T04:47:37.7839606Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-04-25T04:47:37.7843433Z adding 'torch/include/ATen/ops/col2im.h' 2025-04-25T04:47:37.7847161Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-04-25T04:47:37.7850636Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-04-25T04:47:37.7854018Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-04-25T04:47:37.7858190Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-04-25T04:47:37.7861097Z adding 'torch/include/ATen/ops/col_indices.h' 2025-04-25T04:47:37.7864740Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7867909Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-04-25T04:47:37.7871546Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7874935Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.7878093Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-04-25T04:47:37.7881755Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-04-25T04:47:37.7884825Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-04-25T04:47:37.7888399Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-04-25T04:47:37.7891685Z adding 'torch/include/ATen/ops/column_stack.h' 2025-04-25T04:47:37.7895349Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7898443Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-04-25T04:47:37.7902204Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-04-25T04:47:37.7905703Z adding 'torch/include/ATen/ops/combinations.h' 2025-04-25T04:47:37.7908965Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7912125Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-04-25T04:47:37.7915476Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-04-25T04:47:37.7918989Z adding 'torch/include/ATen/ops/complex.h' 2025-04-25T04:47:37.7922842Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7925808Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-04-25T04:47:37.7929339Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-04-25T04:47:37.7932533Z adding 'torch/include/ATen/ops/complex_native.h' 2025-04-25T04:47:37.7936081Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-04-25T04:47:37.7939599Z adding 'torch/include/ATen/ops/concat.h' 2025-04-25T04:47:37.7943379Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7947017Z adding 'torch/include/ATen/ops/concat_native.h' 2025-04-25T04:47:37.7950218Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-04-25T04:47:37.7954554Z adding 'torch/include/ATen/ops/concatenate.h' 2025-04-25T04:47:37.7958729Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7961420Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-04-25T04:47:37.7965061Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-04-25T04:47:37.7968387Z adding 'torch/include/ATen/ops/conj.h' 2025-04-25T04:47:37.7971997Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7975202Z adding 'torch/include/ATen/ops/conj_native.h' 2025-04-25T04:47:37.7978685Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-04-25T04:47:37.7982219Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-04-25T04:47:37.7985760Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.7989213Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.7992436Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-04-25T04:47:37.7995883Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-04-25T04:47:37.7999310Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-04-25T04:47:37.8002718Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-04-25T04:47:37.8006477Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-04-25T04:47:37.8010091Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8013358Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-04-25T04:47:37.8016855Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-04-25T04:47:37.8020145Z adding 'torch/include/ATen/ops/contiguous.h' 2025-04-25T04:47:37.8023843Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8026912Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-04-25T04:47:37.8030519Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-04-25T04:47:37.8048692Z adding 'torch/include/ATen/ops/conv1d.h' 2025-04-25T04:47:37.8048951Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8049082Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-04-25T04:47:37.8049202Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-04-25T04:47:37.8049708Z adding 'torch/include/ATen/ops/conv2d.h' 2025-04-25T04:47:37.8053543Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8056924Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-04-25T04:47:37.8061175Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-04-25T04:47:37.8064449Z adding 'torch/include/ATen/ops/conv3d.h' 2025-04-25T04:47:37.8068370Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8071667Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-04-25T04:47:37.8075281Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-04-25T04:47:37.8079172Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-04-25T04:47:37.8082924Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8087186Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-04-25T04:47:37.8090516Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-04-25T04:47:37.8093997Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-04-25T04:47:37.8097288Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-04-25T04:47:37.8100843Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-04-25T04:47:37.8104396Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8107483Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-04-25T04:47:37.8110834Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-04-25T04:47:37.8114399Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8117429Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-04-25T04:47:37.8120848Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-04-25T04:47:37.8124365Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-04-25T04:47:37.8127975Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8132229Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-04-25T04:47:37.8134710Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-04-25T04:47:37.8138226Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-04-25T04:47:37.8142053Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8145147Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-04-25T04:47:37.8148565Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-04-25T04:47:37.8152090Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-04-25T04:47:37.8155681Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8158763Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-04-25T04:47:37.8162167Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-04-25T04:47:37.8165940Z adding 'torch/include/ATen/ops/convolution.h' 2025-04-25T04:47:37.8170400Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-04-25T04:47:37.8174374Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8178342Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-04-25T04:47:37.8181821Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-04-25T04:47:37.8185448Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-04-25T04:47:37.8189760Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-04-25T04:47:37.8193958Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8197229Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-04-25T04:47:37.8200824Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-04-25T04:47:37.8204478Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8207639Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-04-25T04:47:37.8211168Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-04-25T04:47:37.8215058Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-04-25T04:47:37.8218914Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8222275Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-04-25T04:47:37.8225790Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-04-25T04:47:37.8229267Z adding 'torch/include/ATen/ops/copy.h' 2025-04-25T04:47:37.8232557Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8235930Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8239108Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-04-25T04:47:37.8242319Z adding 'torch/include/ATen/ops/copy_native.h' 2025-04-25T04:47:37.8245806Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-04-25T04:47:37.8249249Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-04-25T04:47:37.8252798Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8255948Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-04-25T04:47:37.8259090Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-04-25T04:47:37.8262721Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-04-25T04:47:37.8266157Z adding 'torch/include/ATen/ops/copysign.h' 2025-04-25T04:47:37.8269652Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8273049Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8276152Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-04-25T04:47:37.8279416Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-04-25T04:47:37.8282576Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-04-25T04:47:37.8285910Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-04-25T04:47:37.8289538Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-04-25T04:47:37.8293271Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-04-25T04:47:37.8296585Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-04-25T04:47:37.8300005Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8303184Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-04-25T04:47:37.8306490Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-04-25T04:47:37.8309813Z adding 'torch/include/ATen/ops/cos.h' 2025-04-25T04:47:37.8313294Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8316423Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-04-25T04:47:37.8319684Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-04-25T04:47:37.8322863Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-04-25T04:47:37.8326155Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-04-25T04:47:37.8329674Z adding 'torch/include/ATen/ops/cos_native.h' 2025-04-25T04:47:37.8332715Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-04-25T04:47:37.8336013Z adding 'torch/include/ATen/ops/cosh.h' 2025-04-25T04:47:37.8339500Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8342730Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-04-25T04:47:37.8346040Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-04-25T04:47:37.8349214Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-04-25T04:47:37.8352446Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-04-25T04:47:37.8355627Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-04-25T04:47:37.8359027Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-04-25T04:47:37.8362391Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-04-25T04:47:37.8365894Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8368958Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-04-25T04:47:37.8372416Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-04-25T04:47:37.8375651Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-04-25T04:47:37.8379138Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8382476Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-04-25T04:47:37.8385799Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-04-25T04:47:37.8389083Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-04-25T04:47:37.8392825Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8396091Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-04-25T04:47:37.8399553Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-04-25T04:47:37.8402964Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-04-25T04:47:37.8406429Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-04-25T04:47:37.8409895Z adding 'torch/include/ATen/ops/cov.h' 2025-04-25T04:47:37.8413414Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8416650Z adding 'torch/include/ATen/ops/cov_native.h' 2025-04-25T04:47:37.8420597Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-04-25T04:47:37.8423603Z adding 'torch/include/ATen/ops/cross.h' 2025-04-25T04:47:37.8427294Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8430659Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-04-25T04:47:37.8434445Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8438093Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-04-25T04:47:37.8441070Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-04-25T04:47:37.8444760Z adding 'torch/include/ATen/ops/cross_native.h' 2025-04-25T04:47:37.8447917Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-04-25T04:47:37.8451230Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-04-25T04:47:37.8454812Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8458057Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-04-25T04:47:37.8462018Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8465203Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8468355Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-04-25T04:47:37.8471838Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-04-25T04:47:37.8475212Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-04-25T04:47:37.8478961Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-04-25T04:47:37.8482043Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-04-25T04:47:37.8485721Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8488859Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-04-25T04:47:37.8492502Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-04-25T04:47:37.8496646Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-04-25T04:47:37.8499587Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-04-25T04:47:37.8503499Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8506781Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-04-25T04:47:37.8510158Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-04-25T04:47:37.8513691Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-04-25T04:47:37.8517310Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8520777Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-04-25T04:47:37.8523882Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-04-25T04:47:37.8527370Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-04-25T04:47:37.8530843Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-04-25T04:47:37.8534800Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-04-25T04:47:37.8566484Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8566723Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:47:37.8566921Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-04-25T04:47:37.8567111Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-04-25T04:47:37.8567394Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8567577Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-04-25T04:47:37.8567825Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-04-25T04:47:37.8567969Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-04-25T04:47:37.8569594Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-04-25T04:47:37.8574326Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-04-25T04:47:37.8577869Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8581557Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-04-25T04:47:37.8584882Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-04-25T04:47:37.8588648Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-04-25T04:47:37.8593099Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-04-25T04:47:37.8595683Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-04-25T04:47:37.8599401Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-04-25T04:47:37.8603262Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-04-25T04:47:37.8607631Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8611283Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-04-25T04:47:37.8614562Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-04-25T04:47:37.8618667Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-04-25T04:47:37.8626794Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-04-25T04:47:37.8629065Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8632534Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-04-25T04:47:37.8635599Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-04-25T04:47:37.8639099Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-04-25T04:47:37.8642446Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-04-25T04:47:37.8645848Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-04-25T04:47:37.8649445Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8652678Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-04-25T04:47:37.8655851Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-04-25T04:47:37.8659529Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-04-25T04:47:37.8663259Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8666498Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-04-25T04:47:37.8669638Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-04-25T04:47:37.8673007Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-04-25T04:47:37.8676229Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-04-25T04:47:37.8679641Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8682723Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-04-25T04:47:37.8686142Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-04-25T04:47:37.8689937Z adding 'torch/include/ATen/ops/cummax.h' 2025-04-25T04:47:37.8694062Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8696625Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8699846Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-04-25T04:47:37.8703564Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-04-25T04:47:37.8706934Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-04-25T04:47:37.8710381Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8713479Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-04-25T04:47:37.8717075Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-04-25T04:47:37.8720512Z adding 'torch/include/ATen/ops/cummin.h' 2025-04-25T04:47:37.8724023Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8727417Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8730538Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-04-25T04:47:37.8734090Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-04-25T04:47:37.8737617Z adding 'torch/include/ATen/ops/cumprod.h' 2025-04-25T04:47:37.8741112Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-04-25T04:47:37.8744651Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8747713Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-04-25T04:47:37.8751070Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-04-25T04:47:37.8754611Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8757969Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8761135Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-04-25T04:47:37.8764415Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-04-25T04:47:37.8767804Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-04-25T04:47:37.8771135Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-04-25T04:47:37.8774422Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-04-25T04:47:37.8778111Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-04-25T04:47:37.8781893Z adding 'torch/include/ATen/ops/cumsum.h' 2025-04-25T04:47:37.8785540Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8788833Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8791989Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-04-25T04:47:37.8795264Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-04-25T04:47:37.8798459Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-04-25T04:47:37.8801763Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-04-25T04:47:37.8804986Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-04-25T04:47:37.8808629Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-04-25T04:47:37.8812090Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-04-25T04:47:37.8815616Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8818879Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-04-25T04:47:37.8822435Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-04-25T04:47:37.8826803Z adding 'torch/include/ATen/ops/data.h' 2025-04-25T04:47:37.8829555Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8863166Z adding 'torch/include/ATen/ops/data_native.h' 2025-04-25T04:47:37.8863294Z adding 'torch/include/ATen/ops/data_ops.h' 2025-04-25T04:47:37.8863408Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-04-25T04:47:37.8863666Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8863941Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-04-25T04:47:37.8864074Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-04-25T04:47:37.8864184Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-04-25T04:47:37.8864450Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8864593Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-04-25T04:47:37.8866288Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-04-25T04:47:37.8870157Z adding 'torch/include/ATen/ops/dequantize.h' 2025-04-25T04:47:37.8873459Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8886879Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-04-25T04:47:37.8887059Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-04-25T04:47:37.8887201Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-04-25T04:47:37.8888858Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-04-25T04:47:37.8893052Z adding 'torch/include/ATen/ops/det.h' 2025-04-25T04:47:37.8895855Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8899253Z adding 'torch/include/ATen/ops/det_native.h' 2025-04-25T04:47:37.8902571Z adding 'torch/include/ATen/ops/det_ops.h' 2025-04-25T04:47:37.8906081Z adding 'torch/include/ATen/ops/detach.h' 2025-04-25T04:47:37.8909539Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8912855Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-04-25T04:47:37.8916351Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8919685Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8922903Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-04-25T04:47:37.8926334Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-04-25T04:47:37.8930021Z adding 'torch/include/ATen/ops/detach_native.h' 2025-04-25T04:47:37.8933230Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-04-25T04:47:37.8936420Z adding 'torch/include/ATen/ops/diag.h' 2025-04-25T04:47:37.8940129Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8943477Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-04-25T04:47:37.8946963Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8950341Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.8953335Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-04-25T04:47:37.8956770Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-04-25T04:47:37.8959951Z adding 'torch/include/ATen/ops/diag_native.h' 2025-04-25T04:47:37.8963328Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-04-25T04:47:37.8966712Z adding 'torch/include/ATen/ops/diagflat.h' 2025-04-25T04:47:37.8970165Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.8973260Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-04-25T04:47:37.8976524Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-04-25T04:47:37.8979779Z adding 'torch/include/ATen/ops/diagonal.h' 2025-04-25T04:47:37.8983620Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-04-25T04:47:37.8987801Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.8990809Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-04-25T04:47:37.8994163Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-04-25T04:47:37.8997625Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9000899Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9004113Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-04-25T04:47:37.9008346Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9011214Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9014027Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-04-25T04:47:37.9017417Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-04-25T04:47:37.9021346Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-04-25T04:47:37.9025239Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-04-25T04:47:37.9028982Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-04-25T04:47:37.9032501Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9036146Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9039380Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-04-25T04:47:37.9042831Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-04-25T04:47:37.9083951Z adding 'torch/include/ATen/ops/diff.h' 2025-04-25T04:47:37.9084221Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9084341Z adding 'torch/include/ATen/ops/diff_native.h' 2025-04-25T04:47:37.9084456Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-04-25T04:47:37.9084580Z adding 'torch/include/ATen/ops/digamma.h' 2025-04-25T04:47:37.9084906Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9085054Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-04-25T04:47:37.9085213Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-04-25T04:47:37.9085330Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-04-25T04:47:37.9085551Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-04-25T04:47:37.9085675Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-04-25T04:47:37.9087192Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-04-25T04:47:37.9090658Z adding 'torch/include/ATen/ops/dist.h' 2025-04-25T04:47:37.9094184Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9097782Z adding 'torch/include/ATen/ops/dist_native.h' 2025-04-25T04:47:37.9101259Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-04-25T04:47:37.9105034Z adding 'torch/include/ATen/ops/div.h' 2025-04-25T04:47:37.9108620Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9112278Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9116523Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-04-25T04:47:37.9119092Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-04-25T04:47:37.9122759Z adding 'torch/include/ATen/ops/div_meta.h' 2025-04-25T04:47:37.9125973Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-04-25T04:47:37.9129373Z adding 'torch/include/ATen/ops/div_native.h' 2025-04-25T04:47:37.9133975Z adding 'torch/include/ATen/ops/div_ops.h' 2025-04-25T04:47:37.9137452Z adding 'torch/include/ATen/ops/divide.h' 2025-04-25T04:47:37.9141163Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9144336Z adding 'torch/include/ATen/ops/divide_native.h' 2025-04-25T04:47:37.9148212Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-04-25T04:47:37.9151920Z adding 'torch/include/ATen/ops/dot.h' 2025-04-25T04:47:37.9155391Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9158572Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-04-25T04:47:37.9161842Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-04-25T04:47:37.9164967Z adding 'torch/include/ATen/ops/dot_native.h' 2025-04-25T04:47:37.9168331Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-04-25T04:47:37.9171630Z adding 'torch/include/ATen/ops/dropout.h' 2025-04-25T04:47:37.9175106Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9178276Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-04-25T04:47:37.9181847Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-04-25T04:47:37.9185087Z adding 'torch/include/ATen/ops/dsplit.h' 2025-04-25T04:47:37.9188519Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9191621Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-04-25T04:47:37.9195026Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-04-25T04:47:37.9198510Z adding 'torch/include/ATen/ops/dstack.h' 2025-04-25T04:47:37.9202019Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9205146Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-04-25T04:47:37.9208547Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-04-25T04:47:37.9211852Z adding 'torch/include/ATen/ops/einsum.h' 2025-04-25T04:47:37.9215261Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9218370Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-04-25T04:47:37.9221820Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-04-25T04:47:37.9225201Z adding 'torch/include/ATen/ops/elu.h' 2025-04-25T04:47:37.9228627Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-04-25T04:47:37.9232239Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9235404Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-04-25T04:47:37.9238994Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-04-25T04:47:37.9242234Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-04-25T04:47:37.9245759Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-04-25T04:47:37.9249560Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-04-25T04:47:37.9252660Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-04-25T04:47:37.9256359Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9259561Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-04-25T04:47:37.9263212Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-04-25T04:47:37.9266984Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-04-25T04:47:37.9270084Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-04-25T04:47:37.9273319Z adding 'torch/include/ATen/ops/elu_native.h' 2025-04-25T04:47:37.9276817Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-04-25T04:47:37.9280738Z adding 'torch/include/ATen/ops/embedding.h' 2025-04-25T04:47:37.9284805Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-04-25T04:47:37.9288059Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9291377Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-04-25T04:47:37.9294711Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-04-25T04:47:37.9298253Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-04-25T04:47:37.9302624Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9305353Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-04-25T04:47:37.9309104Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-04-25T04:47:37.9312703Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9316423Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-04-25T04:47:37.9320303Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9323609Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-04-25T04:47:37.9327067Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-04-25T04:47:37.9330342Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-04-25T04:47:37.9334032Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-04-25T04:47:37.9337670Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-04-25T04:47:37.9341112Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-04-25T04:47:37.9344687Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-04-25T04:47:37.9348124Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9351470Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-04-25T04:47:37.9355332Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-04-25T04:47:37.9358260Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-04-25T04:47:37.9361621Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-04-25T04:47:37.9365089Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-04-25T04:47:37.9368586Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-04-25T04:47:37.9372132Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9375358Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-04-25T04:47:37.9379232Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-04-25T04:47:37.9383004Z adding 'torch/include/ATen/ops/empty.h' 2025-04-25T04:47:37.9387050Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9390607Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9393914Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-04-25T04:47:37.9397409Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-04-25T04:47:37.9400901Z adding 'torch/include/ATen/ops/empty_like.h' 2025-04-25T04:47:37.9404801Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9408224Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-04-25T04:47:37.9411853Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-04-25T04:47:37.9415450Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-04-25T04:47:37.9418895Z adding 'torch/include/ATen/ops/empty_native.h' 2025-04-25T04:47:37.9422970Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-04-25T04:47:37.9427106Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-04-25T04:47:37.9431001Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9434309Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-04-25T04:47:37.9438036Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-04-25T04:47:37.9441631Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-04-25T04:47:37.9445320Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9448449Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-04-25T04:47:37.9452179Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-04-25T04:47:37.9456586Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-04-25T04:47:37.9460471Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9463901Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-04-25T04:47:37.9467375Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-04-25T04:47:37.9470752Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-04-25T04:47:37.9474265Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-04-25T04:47:37.9477785Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-04-25T04:47:37.9481325Z adding 'torch/include/ATen/ops/eq.h' 2025-04-25T04:47:37.9485183Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9488215Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-04-25T04:47:37.9491697Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-04-25T04:47:37.9494906Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-04-25T04:47:37.9498449Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-04-25T04:47:37.9502401Z adding 'torch/include/ATen/ops/eq_native.h' 2025-04-25T04:47:37.9505950Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-04-25T04:47:37.9509359Z adding 'torch/include/ATen/ops/equal.h' 2025-04-25T04:47:37.9512589Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-04-25T04:47:37.9516018Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-04-25T04:47:37.9519996Z adding 'torch/include/ATen/ops/equal_native.h' 2025-04-25T04:47:37.9522722Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-04-25T04:47:37.9526107Z adding 'torch/include/ATen/ops/erf.h' 2025-04-25T04:47:37.9529618Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9532925Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-04-25T04:47:37.9536210Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-04-25T04:47:37.9539539Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-04-25T04:47:37.9548876Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-04-25T04:47:37.9548993Z adding 'torch/include/ATen/ops/erf_native.h' 2025-04-25T04:47:37.9550310Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-04-25T04:47:37.9555126Z adding 'torch/include/ATen/ops/erfc.h' 2025-04-25T04:47:37.9557422Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9561346Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-04-25T04:47:37.9564038Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-04-25T04:47:37.9567557Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-04-25T04:47:37.9570712Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-04-25T04:47:37.9574093Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-04-25T04:47:37.9577508Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-04-25T04:47:37.9581001Z adding 'torch/include/ATen/ops/erfinv.h' 2025-04-25T04:47:37.9584698Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9587874Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-04-25T04:47:37.9591149Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-04-25T04:47:37.9594326Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-04-25T04:47:37.9597610Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-04-25T04:47:37.9601453Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-04-25T04:47:37.9604444Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-04-25T04:47:37.9607726Z adding 'torch/include/ATen/ops/exp.h' 2025-04-25T04:47:37.9610985Z adding 'torch/include/ATen/ops/exp2.h' 2025-04-25T04:47:37.9614520Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9617627Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-04-25T04:47:37.9621070Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-04-25T04:47:37.9624276Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-04-25T04:47:37.9627554Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-04-25T04:47:37.9630705Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-04-25T04:47:37.9634389Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-04-25T04:47:37.9637915Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9641080Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-04-25T04:47:37.9644378Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-04-25T04:47:37.9647506Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-04-25T04:47:37.9650791Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-04-25T04:47:37.9653948Z adding 'torch/include/ATen/ops/exp_native.h' 2025-04-25T04:47:37.9657344Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-04-25T04:47:37.9660777Z adding 'torch/include/ATen/ops/expand.h' 2025-04-25T04:47:37.9663962Z adding 'torch/include/ATen/ops/expand_as.h' 2025-04-25T04:47:37.9667380Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9670423Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-04-25T04:47:37.9673811Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-04-25T04:47:37.9677384Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9680707Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-04-25T04:47:37.9685516Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9689149Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9692199Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-04-25T04:47:37.9695662Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-04-25T04:47:37.9699000Z adding 'torch/include/ATen/ops/expand_native.h' 2025-04-25T04:47:37.9702618Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-04-25T04:47:37.9705904Z adding 'torch/include/ATen/ops/expm1.h' 2025-04-25T04:47:37.9709388Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:37.9712507Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-04-25T04:47:37.9715918Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-04-25T04:47:37.9719074Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-04-25T04:47:37.9722368Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-04-25T04:47:37.9725646Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-04-25T04:47:37.9729052Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-04-25T04:47:37.9732402Z adding 'torch/include/ATen/ops/exponential.h' 2025-04-25T04:47:37.9735977Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9739129Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-04-25T04:47:37.9742536Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-04-25T04:47:37.9745769Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-04-25T04:47:37.9748922Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-04-25T04:47:37.9752402Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-04-25T04:47:37.9756437Z adding 'torch/include/ATen/ops/eye.h' 2025-04-25T04:47:37.9760337Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9763576Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-04-25T04:47:37.9766931Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-04-25T04:47:37.9770205Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-04-25T04:47:37.9773406Z adding 'torch/include/ATen/ops/eye_native.h' 2025-04-25T04:47:37.9776944Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-04-25T04:47:37.9780610Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-04-25T04:47:37.9784149Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-04-25T04:47:37.9787524Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-04-25T04:47:37.9791454Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9794666Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-04-25T04:47:37.9797925Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-04-25T04:47:37.9801504Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9804757Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-04-25T04:47:37.9808085Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-04-25T04:47:37.9811352Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-04-25T04:47:37.9814820Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-04-25T04:47:37.9818322Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9821825Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-04-25T04:47:37.9825118Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-04-25T04:47:37.9828448Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-04-25T04:47:37.9831883Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-04-25T04:47:37.9835241Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-04-25T04:47:37.9838723Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9841763Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-04-25T04:47:37.9845109Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-04-25T04:47:37.9848581Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:37.9851850Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-04-25T04:47:37.9855185Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-04-25T04:47:37.9858417Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-04-25T04:47:37.9862046Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-04-25T04:47:37.9865547Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9868687Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-04-25T04:47:37.9872180Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-04-25T04:47:37.9875451Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-04-25T04:47:37.9879354Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9882615Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-04-25T04:47:37.9886056Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9889103Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-04-25T04:47:37.9892527Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-04-25T04:47:37.9895713Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-04-25T04:47:37.9899003Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-04-25T04:47:37.9902500Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-04-25T04:47:37.9906008Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9909231Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-04-25T04:47:37.9912727Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9915856Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-04-25T04:47:37.9919275Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-04-25T04:47:37.9922500Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-04-25T04:47:37.9925873Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-04-25T04:47:37.9929163Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-04-25T04:47:37.9932658Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9935793Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-04-25T04:47:37.9939110Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-04-25T04:47:37.9942558Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-04-25T04:47:37.9946095Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9949055Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-04-25T04:47:37.9952375Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-04-25T04:47:37.9963770Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-04-25T04:47:37.9964263Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9964496Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-04-25T04:47:37.9965539Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-04-25T04:47:37.9968718Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-04-25T04:47:37.9972097Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9975132Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-04-25T04:47:37.9979584Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-04-25T04:47:37.9983116Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-04-25T04:47:37.9986570Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:37.9989686Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-04-25T04:47:37.9993330Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-04-25T04:47:37.9996802Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-04-25T04:47:38.0000586Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-04-25T04:47:38.0004340Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0007467Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-04-25T04:47:38.0010890Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-04-25T04:47:38.0014479Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0017600Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-04-25T04:47:38.0021192Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-04-25T04:47:38.0024588Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-04-25T04:47:38.0028158Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0031284Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-04-25T04:47:38.0034735Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-04-25T04:47:38.0038408Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-04-25T04:47:38.0042070Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0045189Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-04-25T04:47:38.0048614Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-04-25T04:47:38.0051928Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-04-25T04:47:38.0055337Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0058396Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-04-25T04:47:38.0061832Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-04-25T04:47:38.0065408Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-04-25T04:47:38.0069144Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-04-25T04:47:38.0072810Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0075931Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-04-25T04:47:38.0079394Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-04-25T04:47:38.0082977Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0086052Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-04-25T04:47:38.0089455Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-04-25T04:47:38.0095609Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-04-25T04:47:38.0097193Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0145912Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-04-25T04:47:38.0146062Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-04-25T04:47:38.0146172Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-04-25T04:47:38.0146280Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-04-25T04:47:38.0146541Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0146665Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-04-25T04:47:38.0146783Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-04-25T04:47:38.0147029Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0147207Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-04-25T04:47:38.0147326Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-04-25T04:47:38.0147432Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-04-25T04:47:38.0147689Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0148315Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-04-25T04:47:38.0152003Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-04-25T04:47:38.0155415Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-04-25T04:47:38.0159085Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0162154Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-04-25T04:47:38.0165681Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-04-25T04:47:38.0170340Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-04-25T04:47:38.0173222Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-04-25T04:47:38.0176920Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0181628Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-04-25T04:47:38.0183886Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-04-25T04:47:38.0187490Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0190604Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-04-25T04:47:38.0194035Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-04-25T04:47:38.0197878Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-04-25T04:47:38.0201742Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0205084Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-04-25T04:47:38.0208581Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-04-25T04:47:38.0212200Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-04-25T04:47:38.0215979Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-04-25T04:47:38.0219656Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0223046Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-04-25T04:47:38.0226583Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-04-25T04:47:38.0230220Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0233370Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-04-25T04:47:38.0236753Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-04-25T04:47:38.0240415Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-04-25T04:47:38.0244134Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0247300Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-04-25T04:47:38.0250772Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-04-25T04:47:38.0254425Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-04-25T04:47:38.0258173Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-04-25T04:47:38.0262034Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0265167Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-04-25T04:47:38.0268590Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-04-25T04:47:38.0272200Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0275471Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-04-25T04:47:38.0278814Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-04-25T04:47:38.0282395Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-04-25T04:47:38.0285853Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0288905Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-04-25T04:47:38.0292303Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-04-25T04:47:38.0295964Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-04-25T04:47:38.0299641Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0303158Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-04-25T04:47:38.0306497Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-04-25T04:47:38.0309961Z adding 'torch/include/ATen/ops/fill.h' 2025-04-25T04:47:38.0313472Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0316583Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-04-25T04:47:38.0319849Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-04-25T04:47:38.0322943Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-04-25T04:47:38.0326307Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0329308Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-04-25T04:47:38.0332558Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-04-25T04:47:38.0335778Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-04-25T04:47:38.0338965Z adding 'torch/include/ATen/ops/fill_native.h' 2025-04-25T04:47:38.0342712Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-04-25T04:47:38.0346131Z adding 'torch/include/ATen/ops/fix.h' 2025-04-25T04:47:38.0349552Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0352634Z adding 'torch/include/ATen/ops/fix_native.h' 2025-04-25T04:47:38.0356012Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-04-25T04:47:38.0359367Z adding 'torch/include/ATen/ops/flatten.h' 2025-04-25T04:47:38.0363259Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0366462Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-04-25T04:47:38.0369935Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0372991Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-04-25T04:47:38.0376289Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-04-25T04:47:38.0379490Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-04-25T04:47:38.0383390Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-04-25T04:47:38.0387144Z adding 'torch/include/ATen/ops/flip.h' 2025-04-25T04:47:38.0390376Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0393716Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-04-25T04:47:38.0396963Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-04-25T04:47:38.0400348Z adding 'torch/include/ATen/ops/flip_native.h' 2025-04-25T04:47:38.0404165Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-04-25T04:47:38.0407243Z adding 'torch/include/ATen/ops/fliplr.h' 2025-04-25T04:47:38.0411041Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0413863Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-04-25T04:47:38.0417302Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-04-25T04:47:38.0420695Z adding 'torch/include/ATen/ops/flipud.h' 2025-04-25T04:47:38.0424255Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0427991Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-04-25T04:47:38.0430807Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-04-25T04:47:38.0434410Z adding 'torch/include/ATen/ops/float_power.h' 2025-04-25T04:47:38.0438262Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0441447Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-04-25T04:47:38.0445571Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-04-25T04:47:38.0448837Z adding 'torch/include/ATen/ops/floor.h' 2025-04-25T04:47:38.0452550Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0455685Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-04-25T04:47:38.0459073Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-04-25T04:47:38.0463169Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-04-25T04:47:38.0466353Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0469727Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-04-25T04:47:38.0473072Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-04-25T04:47:38.0477278Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-04-25T04:47:38.0480758Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-04-25T04:47:38.0484367Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-04-25T04:47:38.0487834Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-04-25T04:47:38.0491211Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-04-25T04:47:38.0494608Z adding 'torch/include/ATen/ops/floor_native.h' 2025-04-25T04:47:38.0498382Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-04-25T04:47:38.0501602Z adding 'torch/include/ATen/ops/fmax.h' 2025-04-25T04:47:38.0505283Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0508442Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-04-25T04:47:38.0511868Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-04-25T04:47:38.0515086Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-04-25T04:47:38.0518535Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-04-25T04:47:38.0522253Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-04-25T04:47:38.0525275Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-04-25T04:47:38.0528719Z adding 'torch/include/ATen/ops/fmin.h' 2025-04-25T04:47:38.0532233Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0535524Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-04-25T04:47:38.0539349Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-04-25T04:47:38.0542290Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-04-25T04:47:38.0545749Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-04-25T04:47:38.0548968Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-04-25T04:47:38.0566175Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-04-25T04:47:38.0566288Z adding 'torch/include/ATen/ops/fmod.h' 2025-04-25T04:47:38.0566524Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0566838Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0567470Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-04-25T04:47:38.0570823Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-04-25T04:47:38.0579522Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-04-25T04:47:38.0579670Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-04-25T04:47:38.0581749Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-04-25T04:47:38.0585971Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-04-25T04:47:38.0589397Z adding 'torch/include/ATen/ops/frac.h' 2025-04-25T04:47:38.0593156Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0596289Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-04-25T04:47:38.0599789Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-04-25T04:47:38.0602974Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-04-25T04:47:38.0606519Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-04-25T04:47:38.0609889Z adding 'torch/include/ATen/ops/frac_native.h' 2025-04-25T04:47:38.0613122Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-04-25T04:47:38.0616788Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-04-25T04:47:38.0620329Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-04-25T04:47:38.0624033Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0627208Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.0630571Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.0634030Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-04-25T04:47:38.0637429Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-04-25T04:47:38.0640688Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-04-25T04:47:38.0644144Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-04-25T04:47:38.0647701Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0650842Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-04-25T04:47:38.0654187Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-04-25T04:47:38.0657410Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-04-25T04:47:38.0660899Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-04-25T04:47:38.0664254Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-04-25T04:47:38.0667731Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-04-25T04:47:38.0671150Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-04-25T04:47:38.0674548Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-04-25T04:47:38.0677965Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.0688416Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.0692516Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-04-25T04:47:38.0695936Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-04-25T04:47:38.0699281Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0702900Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-04-25T04:47:38.0706065Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-04-25T04:47:38.0710518Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-04-25T04:47:38.0714401Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-04-25T04:47:38.0719528Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-04-25T04:47:38.0725889Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-04-25T04:47:38.0729250Z adding 'torch/include/ATen/ops/frexp.h' 2025-04-25T04:47:38.0732785Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0735971Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-04-25T04:47:38.0739303Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-04-25T04:47:38.0742696Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-04-25T04:47:38.0746084Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-04-25T04:47:38.0749462Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-04-25T04:47:38.0753088Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0756163Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-04-25T04:47:38.0759550Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-04-25T04:47:38.0763431Z adding 'torch/include/ATen/ops/from_blob.h' 2025-04-25T04:47:38.0767130Z adding 'torch/include/ATen/ops/from_file.h' 2025-04-25T04:47:38.0770659Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0773826Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-04-25T04:47:38.0777021Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-04-25T04:47:38.0780726Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-04-25T04:47:38.0784744Z adding 'torch/include/ATen/ops/full.h' 2025-04-25T04:47:38.0788621Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0792080Z adding 'torch/include/ATen/ops/full_like.h' 2025-04-25T04:47:38.0795677Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.0798803Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-04-25T04:47:38.0802338Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-04-25T04:47:38.0805649Z adding 'torch/include/ATen/ops/full_native.h' 2025-04-25T04:47:38.0809292Z adding 'torch/include/ATen/ops/full_ops.h' 2025-04-25T04:47:38.0812892Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-04-25T04:47:38.0816978Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0820204Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-04-25T04:47:38.0823748Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-04-25T04:47:38.0827141Z adding 'torch/include/ATen/ops/gather.h' 2025-04-25T04:47:38.0830482Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-04-25T04:47:38.0833937Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0837083Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-04-25T04:47:38.0840375Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-04-25T04:47:38.0843873Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0847234Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.0850392Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-04-25T04:47:38.0853656Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-04-25T04:47:38.0856878Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-04-25T04:47:38.0860304Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-04-25T04:47:38.0863613Z adding 'torch/include/ATen/ops/gather_native.h' 2025-04-25T04:47:38.0867463Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-04-25T04:47:38.0870831Z adding 'torch/include/ATen/ops/gcd.h' 2025-04-25T04:47:38.0874373Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0877534Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-04-25T04:47:38.0880782Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-04-25T04:47:38.0884000Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-04-25T04:47:38.0887327Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-04-25T04:47:38.0890448Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-04-25T04:47:38.0893905Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-04-25T04:47:38.0897333Z adding 'torch/include/ATen/ops/ge.h' 2025-04-25T04:47:38.0901094Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0904310Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-04-25T04:47:38.0907665Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-04-25T04:47:38.0910916Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-04-25T04:47:38.0914272Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-04-25T04:47:38.0917595Z adding 'torch/include/ATen/ops/ge_native.h' 2025-04-25T04:47:38.0921178Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-04-25T04:47:38.0924593Z adding 'torch/include/ATen/ops/gelu.h' 2025-04-25T04:47:38.0928465Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-04-25T04:47:38.0932016Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0935059Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-04-25T04:47:38.0938236Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-04-25T04:47:38.0941656Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-04-25T04:47:38.0946997Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-04-25T04:47:38.0950385Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-04-25T04:47:38.0953864Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-04-25T04:47:38.0957451Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.0960602Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-04-25T04:47:38.0964111Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-04-25T04:47:38.0967270Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-04-25T04:47:38.0973209Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-04-25T04:47:38.0974551Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-04-25T04:47:38.0978577Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-04-25T04:47:38.0981734Z adding 'torch/include/ATen/ops/geometric.h' 2025-04-25T04:47:38.0985515Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1028982Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-04-25T04:47:38.1029425Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-04-25T04:47:38.1029852Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-04-25T04:47:38.1030240Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-04-25T04:47:38.1030754Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-04-25T04:47:38.1031108Z adding 'torch/include/ATen/ops/geqrf.h' 2025-04-25T04:47:38.1031455Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-04-25T04:47:38.1031845Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-04-25T04:47:38.1032224Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-04-25T04:47:38.1032552Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-04-25T04:47:38.1032865Z adding 'torch/include/ATen/ops/ger.h' 2025-04-25T04:47:38.1033308Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1034225Z adding 'torch/include/ATen/ops/ger_native.h' 2025-04-25T04:47:38.1038185Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-04-25T04:47:38.1041750Z adding 'torch/include/ATen/ops/glu.h' 2025-04-25T04:47:38.1045145Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-04-25T04:47:38.1048750Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1052098Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1055663Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-04-25T04:47:38.1059182Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1062515Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-04-25T04:47:38.1066013Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-04-25T04:47:38.1069196Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-04-25T04:47:38.1072622Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-04-25T04:47:38.1075888Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-04-25T04:47:38.1079304Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-04-25T04:47:38.1083122Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1087063Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-04-25T04:47:38.1089680Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-04-25T04:47:38.1092977Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-04-25T04:47:38.1096429Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1099584Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-04-25T04:47:38.1103127Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-04-25T04:47:38.1106128Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-04-25T04:47:38.1109756Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-04-25T04:47:38.1112974Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-04-25T04:47:38.1116267Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-04-25T04:47:38.1119400Z adding 'torch/include/ATen/ops/glu_native.h' 2025-04-25T04:47:38.1122713Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-04-25T04:47:38.1126224Z adding 'torch/include/ATen/ops/gradient.h' 2025-04-25T04:47:38.1129788Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1132976Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-04-25T04:47:38.1136841Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-04-25T04:47:38.1140529Z adding 'torch/include/ATen/ops/greater.h' 2025-04-25T04:47:38.1144290Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1147599Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-04-25T04:47:38.1151269Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1154250Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-04-25T04:47:38.1157833Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-04-25T04:47:38.1161341Z adding 'torch/include/ATen/ops/greater_native.h' 2025-04-25T04:47:38.1164959Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-04-25T04:47:38.1168351Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-04-25T04:47:38.1171648Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-04-25T04:47:38.1175227Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-04-25T04:47:38.1178770Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1182157Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1185529Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1188764Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-04-25T04:47:38.1192364Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-04-25T04:47:38.1195797Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1198988Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-04-25T04:47:38.1202551Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-04-25T04:47:38.1205718Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-04-25T04:47:38.1209195Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-04-25T04:47:38.1212795Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-04-25T04:47:38.1216284Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-04-25T04:47:38.1219861Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1223275Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1226620Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1229872Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-04-25T04:47:38.1233410Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-04-25T04:47:38.1236914Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1240115Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-04-25T04:47:38.1243472Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-04-25T04:47:38.1246689Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-04-25T04:47:38.1250160Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-04-25T04:47:38.1254244Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1258041Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-04-25T04:47:38.1260998Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-04-25T04:47:38.1264435Z adding 'torch/include/ATen/ops/group_norm.h' 2025-04-25T04:47:38.1267918Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1270996Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-04-25T04:47:38.1274349Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-04-25T04:47:38.1277660Z adding 'torch/include/ATen/ops/gru.h' 2025-04-25T04:47:38.1280931Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-04-25T04:47:38.1285196Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1288352Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-04-25T04:47:38.1291731Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-04-25T04:47:38.1295194Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1298332Z adding 'torch/include/ATen/ops/gru_native.h' 2025-04-25T04:47:38.1301960Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-04-25T04:47:38.1305380Z adding 'torch/include/ATen/ops/gt.h' 2025-04-25T04:47:38.1308961Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1312141Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-04-25T04:47:38.1315624Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-04-25T04:47:38.1318820Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-04-25T04:47:38.1322162Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-04-25T04:47:38.1325530Z adding 'torch/include/ATen/ops/gt_native.h' 2025-04-25T04:47:38.1328989Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-04-25T04:47:38.1333053Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-04-25T04:47:38.1336926Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1340197Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-04-25T04:47:38.1344109Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-04-25T04:47:38.1347794Z adding 'torch/include/ATen/ops/hann_window.h' 2025-04-25T04:47:38.1351460Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1354580Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-04-25T04:47:38.1358189Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-04-25T04:47:38.1361548Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-04-25T04:47:38.1365030Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-04-25T04:47:38.1368727Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1372012Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1375302Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1422371Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-04-25T04:47:38.1422879Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-04-25T04:47:38.1423387Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-04-25T04:47:38.1423834Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-04-25T04:47:38.1424444Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1425058Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-04-25T04:47:38.1425486Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-04-25T04:47:38.1425877Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-04-25T04:47:38.1426282Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-04-25T04:47:38.1426691Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-04-25T04:47:38.1427105Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-04-25T04:47:38.1427556Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-04-25T04:47:38.1428136Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-04-25T04:47:38.1428799Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1431061Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1434593Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1437622Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-04-25T04:47:38.1441189Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-04-25T04:47:38.1444419Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-04-25T04:47:38.1448048Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-04-25T04:47:38.1451530Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1454624Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-04-25T04:47:38.1458035Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-04-25T04:47:38.1461464Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-04-25T04:47:38.1464734Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-04-25T04:47:38.1467947Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-04-25T04:47:38.1471347Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-04-25T04:47:38.1475267Z adding 'torch/include/ATen/ops/hardswish.h' 2025-04-25T04:47:38.1478677Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-04-25T04:47:38.1482213Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1485469Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1488692Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1491792Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-04-25T04:47:38.1495170Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-04-25T04:47:38.1498496Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-04-25T04:47:38.1502051Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-04-25T04:47:38.1505286Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-04-25T04:47:38.1508402Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-04-25T04:47:38.1511765Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-04-25T04:47:38.1515109Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-04-25T04:47:38.1518586Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-04-25T04:47:38.1521999Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1525309Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1528453Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-04-25T04:47:38.1531866Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-04-25T04:47:38.1535164Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-04-25T04:47:38.1538659Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-04-25T04:47:38.1542082Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-04-25T04:47:38.1545263Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-04-25T04:47:38.1548718Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-04-25T04:47:38.1552022Z adding 'torch/include/ATen/ops/heaviside.h' 2025-04-25T04:47:38.1555535Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1558843Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-04-25T04:47:38.1562150Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-04-25T04:47:38.1565317Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-04-25T04:47:38.1568551Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-04-25T04:47:38.1571695Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-04-25T04:47:38.1575165Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-04-25T04:47:38.1579335Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-04-25T04:47:38.1582309Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1585325Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-04-25T04:47:38.1588924Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-04-25T04:47:38.1592203Z adding 'torch/include/ATen/ops/histc.h' 2025-04-25T04:47:38.1595511Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-04-25T04:47:38.1598796Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-04-25T04:47:38.1601993Z adding 'torch/include/ATen/ops/histc_native.h' 2025-04-25T04:47:38.1605491Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-04-25T04:47:38.1609021Z adding 'torch/include/ATen/ops/histogram.h' 2025-04-25T04:47:38.1612563Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-04-25T04:47:38.1615844Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-04-25T04:47:38.1619455Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-04-25T04:47:38.1623163Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-04-25T04:47:38.1626761Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1629883Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-04-25T04:47:38.1633427Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-04-25T04:47:38.1636738Z adding 'torch/include/ATen/ops/hsplit.h' 2025-04-25T04:47:38.1640212Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1643313Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-04-25T04:47:38.1646869Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-04-25T04:47:38.1650154Z adding 'torch/include/ATen/ops/hspmm.h' 2025-04-25T04:47:38.1653721Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-04-25T04:47:38.1657140Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-04-25T04:47:38.1660693Z adding 'torch/include/ATen/ops/hstack.h' 2025-04-25T04:47:38.1664273Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1667352Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-04-25T04:47:38.1670703Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-04-25T04:47:38.1674051Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-04-25T04:47:38.1677378Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-04-25T04:47:38.1680910Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1684134Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:38.1687682Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:38.1690913Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-04-25T04:47:38.1694375Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-04-25T04:47:38.1697727Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-04-25T04:47:38.1701242Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-04-25T04:47:38.1704431Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-04-25T04:47:38.1708059Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-04-25T04:47:38.1711368Z adding 'torch/include/ATen/ops/hypot.h' 2025-04-25T04:47:38.1714921Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1718232Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-04-25T04:47:38.1721488Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-04-25T04:47:38.1724655Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-04-25T04:47:38.1727920Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-04-25T04:47:38.1731059Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-04-25T04:47:38.1734526Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-04-25T04:47:38.1737784Z adding 'torch/include/ATen/ops/i0.h' 2025-04-25T04:47:38.1741603Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1744528Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-04-25T04:47:38.1747762Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-04-25T04:47:38.1750938Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-04-25T04:47:38.1754191Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-04-25T04:47:38.1757339Z adding 'torch/include/ATen/ops/i0_native.h' 2025-04-25T04:47:38.1760997Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-04-25T04:47:38.1764752Z adding 'torch/include/ATen/ops/igamma.h' 2025-04-25T04:47:38.1768197Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1771316Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-04-25T04:47:38.1774522Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-04-25T04:47:38.1777667Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-04-25T04:47:38.1781082Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-04-25T04:47:38.1784248Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-04-25T04:47:38.1787705Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-04-25T04:47:38.1791036Z adding 'torch/include/ATen/ops/igammac.h' 2025-04-25T04:47:38.1794578Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1797689Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-04-25T04:47:38.1800979Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-04-25T04:47:38.1804114Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-04-25T04:47:38.1807379Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-04-25T04:47:38.1810659Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-04-25T04:47:38.1814113Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-04-25T04:47:38.1817511Z adding 'torch/include/ATen/ops/im2col.h' 2025-04-25T04:47:38.1821082Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-04-25T04:47:38.1824382Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-04-25T04:47:38.1827609Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-04-25T04:47:38.1831044Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-04-25T04:47:38.1834329Z adding 'torch/include/ATen/ops/imag.h' 2025-04-25T04:47:38.1837768Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1840848Z adding 'torch/include/ATen/ops/imag_native.h' 2025-04-25T04:47:38.1844071Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-04-25T04:47:38.1847283Z adding 'torch/include/ATen/ops/index.h' 2025-04-25T04:47:38.1850640Z adding 'torch/include/ATen/ops/index_add.h' 2025-04-25T04:47:38.1854149Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1857432Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1860851Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-04-25T04:47:38.1864116Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-04-25T04:47:38.1867642Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-04-25T04:47:38.1871090Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-04-25T04:47:38.1917301Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-04-25T04:47:38.1917669Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-04-25T04:47:38.1918205Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1918746Z adding 'torch/include/ATen/ops/index_copy.h' 2025-04-25T04:47:38.1919288Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1920002Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1920532Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-04-25T04:47:38.1920972Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-04-25T04:47:38.1921523Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-04-25T04:47:38.1921927Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-04-25T04:47:38.1922393Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-04-25T04:47:38.1922818Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-04-25T04:47:38.1923192Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-04-25T04:47:38.1924574Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-04-25T04:47:38.1929456Z adding 'torch/include/ATen/ops/index_fill.h' 2025-04-25T04:47:38.1931970Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1935597Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.1938841Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-04-25T04:47:38.1942447Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-04-25T04:47:38.1945749Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-04-25T04:47:38.1949028Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-04-25T04:47:38.1953375Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-04-25T04:47:38.1957009Z adding 'torch/include/ATen/ops/index_meta.h' 2025-04-25T04:47:38.1960328Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-04-25T04:47:38.1963552Z adding 'torch/include/ATen/ops/index_native.h' 2025-04-25T04:47:38.1966956Z adding 'torch/include/ATen/ops/index_ops.h' 2025-04-25T04:47:38.1970561Z adding 'torch/include/ATen/ops/index_put.h' 2025-04-25T04:47:38.1974204Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.1977322Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-04-25T04:47:38.1980951Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-04-25T04:47:38.1985065Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-04-25T04:47:38.1988123Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.1991342Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-04-25T04:47:38.1994626Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-04-25T04:47:38.1998136Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-04-25T04:47:38.2001520Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-04-25T04:47:38.2004765Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-04-25T04:47:38.2008282Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-04-25T04:47:38.2011689Z adding 'torch/include/ATen/ops/index_select.h' 2025-04-25T04:47:38.2015111Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-04-25T04:47:38.2018766Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2022002Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-04-25T04:47:38.2025377Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-04-25T04:47:38.2028818Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2032003Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-04-25T04:47:38.2035286Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-04-25T04:47:38.2038521Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-04-25T04:47:38.2042028Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-04-25T04:47:38.2045184Z adding 'torch/include/ATen/ops/indices.h' 2025-04-25T04:47:38.2048563Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2052219Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-04-25T04:47:38.2055386Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2058696Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2061738Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-04-25T04:47:38.2065213Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-04-25T04:47:38.2068257Z adding 'torch/include/ATen/ops/indices_native.h' 2025-04-25T04:47:38.2072322Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-04-25T04:47:38.2075791Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-04-25T04:47:38.2079273Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2082321Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-04-25T04:47:38.2085663Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-04-25T04:47:38.2088814Z adding 'torch/include/ATen/ops/inner.h' 2025-04-25T04:47:38.2092264Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2095306Z adding 'torch/include/ATen/ops/inner_native.h' 2025-04-25T04:47:38.2098648Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-04-25T04:47:38.2102572Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-04-25T04:47:38.2106034Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2109186Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-04-25T04:47:38.2112615Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-04-25T04:47:38.2115894Z adding 'torch/include/ATen/ops/int_repr.h' 2025-04-25T04:47:38.2119343Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2122421Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-04-25T04:47:38.2125846Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-04-25T04:47:38.2129061Z adding 'torch/include/ATen/ops/inverse.h' 2025-04-25T04:47:38.2132483Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2135641Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-04-25T04:47:38.2139001Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-04-25T04:47:38.2142381Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-04-25T04:47:38.2145808Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2148830Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-04-25T04:47:38.2157214Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-04-25T04:47:38.2157569Z adding 'torch/include/ATen/ops/is_complex.h' 2025-04-25T04:47:38.2159411Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2162590Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-04-25T04:47:38.2207855Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-04-25T04:47:38.2208215Z adding 'torch/include/ATen/ops/is_conj.h' 2025-04-25T04:47:38.2208673Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2209166Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-04-25T04:47:38.2209507Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-04-25T04:47:38.2209870Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-04-25T04:47:38.2210366Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2210913Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-04-25T04:47:38.2211311Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-04-25T04:47:38.2211683Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-04-25T04:47:38.2212205Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2212824Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-04-25T04:47:38.2213305Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-04-25T04:47:38.2214283Z adding 'torch/include/ATen/ops/is_inference.h' 2025-04-25T04:47:38.2217745Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2221104Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-04-25T04:47:38.2224565Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-04-25T04:47:38.2227728Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-04-25T04:47:38.2231337Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2234394Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-04-25T04:47:38.2237673Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-04-25T04:47:38.2240867Z adding 'torch/include/ATen/ops/is_neg.h' 2025-04-25T04:47:38.2244461Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2247529Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-04-25T04:47:38.2250748Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-04-25T04:47:38.2253929Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-04-25T04:47:38.2257281Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2260580Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-04-25T04:47:38.2263949Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-04-25T04:47:38.2267088Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-04-25T04:47:38.2270508Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2273559Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-04-25T04:47:38.2276875Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-04-25T04:47:38.2280105Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-04-25T04:47:38.2283610Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2286660Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-04-25T04:47:38.2290126Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-04-25T04:47:38.2293319Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-04-25T04:47:38.2296655Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-04-25T04:47:38.2299877Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-04-25T04:47:38.2303123Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-04-25T04:47:38.2306382Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-04-25T04:47:38.2309560Z adding 'torch/include/ATen/ops/is_signed.h' 2025-04-25T04:47:38.2312970Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2315982Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-04-25T04:47:38.2319265Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-04-25T04:47:38.2322421Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-04-25T04:47:38.2325837Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2328910Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-04-25T04:47:38.2332206Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-04-25T04:47:38.2335479Z adding 'torch/include/ATen/ops/isclose.h' 2025-04-25T04:47:38.2338863Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2342093Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-04-25T04:47:38.2345939Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-04-25T04:47:38.2348811Z adding 'torch/include/ATen/ops/isfinite.h' 2025-04-25T04:47:38.2352312Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2355321Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-04-25T04:47:38.2358599Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-04-25T04:47:38.2362129Z adding 'torch/include/ATen/ops/isin.h' 2025-04-25T04:47:38.2365737Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2368937Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-04-25T04:47:38.2372310Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-04-25T04:47:38.2375564Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-04-25T04:47:38.2379027Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-04-25T04:47:38.2382573Z adding 'torch/include/ATen/ops/isin_native.h' 2025-04-25T04:47:38.2386217Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-04-25T04:47:38.2389596Z adding 'torch/include/ATen/ops/isinf.h' 2025-04-25T04:47:38.2393075Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2396166Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-04-25T04:47:38.2399526Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-04-25T04:47:38.2402851Z adding 'torch/include/ATen/ops/isnan.h' 2025-04-25T04:47:38.2406307Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2409537Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-04-25T04:47:38.2412706Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-04-25T04:47:38.2415853Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-04-25T04:47:38.2419212Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-04-25T04:47:38.2422631Z adding 'torch/include/ATen/ops/isneginf.h' 2025-04-25T04:47:38.2426119Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2429191Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-04-25T04:47:38.2432591Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-04-25T04:47:38.2435735Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-04-25T04:47:38.2439017Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-04-25T04:47:38.2442210Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-04-25T04:47:38.2445608Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-04-25T04:47:38.2458260Z adding 'torch/include/ATen/ops/isposinf.h' 2025-04-25T04:47:38.2458972Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2459715Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-04-25T04:47:38.2460253Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-04-25T04:47:38.2462214Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-04-25T04:47:38.2465459Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-04-25T04:47:38.2468642Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-04-25T04:47:38.2472020Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-04-25T04:47:38.2475247Z adding 'torch/include/ATen/ops/isreal.h' 2025-04-25T04:47:38.2478647Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2481778Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-04-25T04:47:38.2485050Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-04-25T04:47:38.2488401Z adding 'torch/include/ATen/ops/istft.h' 2025-04-25T04:47:38.2491909Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2495066Z adding 'torch/include/ATen/ops/istft_native.h' 2025-04-25T04:47:38.2498509Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-04-25T04:47:38.2501898Z adding 'torch/include/ATen/ops/item.h' 2025-04-25T04:47:38.2505345Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2508377Z adding 'torch/include/ATen/ops/item_native.h' 2025-04-25T04:47:38.2512135Z adding 'torch/include/ATen/ops/item_ops.h' 2025-04-25T04:47:38.2515873Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-04-25T04:47:38.2519803Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2523015Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-04-25T04:47:38.2526752Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-04-25T04:47:38.2530178Z adding 'torch/include/ATen/ops/kl_div.h' 2025-04-25T04:47:38.2533599Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2536644Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-04-25T04:47:38.2540027Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-04-25T04:47:38.2543422Z adding 'torch/include/ATen/ops/kron.h' 2025-04-25T04:47:38.2547151Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2550192Z adding 'torch/include/ATen/ops/kron_native.h' 2025-04-25T04:47:38.2553580Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-04-25T04:47:38.2557035Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-04-25T04:47:38.2560544Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2563873Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2567066Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-04-25T04:47:38.2570377Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-04-25T04:47:38.2573596Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-04-25T04:47:38.2577185Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-04-25T04:47:38.2580659Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-04-25T04:47:38.2584110Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2587183Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-04-25T04:47:38.2590484Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-04-25T04:47:38.2593976Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-04-25T04:47:38.2597567Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2600639Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-04-25T04:47:38.2604024Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-04-25T04:47:38.2607306Z adding 'torch/include/ATen/ops/lcm.h' 2025-04-25T04:47:38.2610812Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2613947Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-04-25T04:47:38.2617170Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-04-25T04:47:38.2620465Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-04-25T04:47:38.2623804Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-04-25T04:47:38.2626974Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-04-25T04:47:38.2630408Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-04-25T04:47:38.2633774Z adding 'torch/include/ATen/ops/ldexp.h' 2025-04-25T04:47:38.2637242Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2640296Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-04-25T04:47:38.2643738Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-04-25T04:47:38.2647217Z adding 'torch/include/ATen/ops/le.h' 2025-04-25T04:47:38.2657103Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2657233Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-04-25T04:47:38.2658398Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-04-25T04:47:38.2706968Z adding 'torch/include/ATen/ops/le_meta.h' 2025-04-25T04:47:38.2707107Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-04-25T04:47:38.2707217Z adding 'torch/include/ATen/ops/le_native.h' 2025-04-25T04:47:38.2707337Z adding 'torch/include/ATen/ops/le_ops.h' 2025-04-25T04:47:38.2707458Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-04-25T04:47:38.2707599Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-04-25T04:47:38.2707982Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2708182Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-04-25T04:47:38.2708390Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-04-25T04:47:38.2708558Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-04-25T04:47:38.2708756Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-04-25T04:47:38.2708934Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-04-25T04:47:38.2709102Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-04-25T04:47:38.2711656Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2715189Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-04-25T04:47:38.2719073Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-04-25T04:47:38.2721715Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-04-25T04:47:38.2725191Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-04-25T04:47:38.2728422Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-04-25T04:47:38.2732126Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-04-25T04:47:38.2735599Z adding 'torch/include/ATen/ops/lerp.h' 2025-04-25T04:47:38.2739539Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2743036Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-04-25T04:47:38.2746366Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-04-25T04:47:38.2749624Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-04-25T04:47:38.2752934Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-04-25T04:47:38.2756117Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-04-25T04:47:38.2760025Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-04-25T04:47:38.2763503Z adding 'torch/include/ATen/ops/less.h' 2025-04-25T04:47:38.2767055Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2770342Z adding 'torch/include/ATen/ops/less_equal.h' 2025-04-25T04:47:38.2773861Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2776928Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-04-25T04:47:38.2780646Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-04-25T04:47:38.2783973Z adding 'torch/include/ATen/ops/less_native.h' 2025-04-25T04:47:38.2787737Z adding 'torch/include/ATen/ops/less_ops.h' 2025-04-25T04:47:38.2791232Z adding 'torch/include/ATen/ops/lgamma.h' 2025-04-25T04:47:38.2794731Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2797822Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-04-25T04:47:38.2801055Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-04-25T04:47:38.2804214Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-04-25T04:47:38.2807728Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-04-25T04:47:38.2810899Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-04-25T04:47:38.2814316Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-04-25T04:47:38.2817612Z adding 'torch/include/ATen/ops/lift.h' 2025-04-25T04:47:38.2821280Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2824416Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-04-25T04:47:38.2827856Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2830945Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-04-25T04:47:38.2834366Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.2837697Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2840737Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-04-25T04:47:38.2844465Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-04-25T04:47:38.2847436Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-04-25T04:47:38.2851536Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-04-25T04:47:38.2854876Z adding 'torch/include/ATen/ops/lift_native.h' 2025-04-25T04:47:38.2858242Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-04-25T04:47:38.2861750Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-04-25T04:47:38.2865331Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2868567Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-04-25T04:47:38.2872231Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2875554Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-04-25T04:47:38.2878708Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-04-25T04:47:38.2881796Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-04-25T04:47:38.2885122Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-04-25T04:47:38.2888309Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-04-25T04:47:38.2891710Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-04-25T04:47:38.2894985Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-04-25T04:47:38.2898405Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-04-25T04:47:38.2902061Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-04-25T04:47:38.2905623Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2908683Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-04-25T04:47:38.2912165Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-04-25T04:47:38.2915529Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-04-25T04:47:38.2919107Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.2922273Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-04-25T04:47:38.2925576Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-04-25T04:47:38.2928780Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-04-25T04:47:38.2932155Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-04-25T04:47:38.2935381Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-04-25T04:47:38.2938721Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-04-25T04:47:38.2942191Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-04-25T04:47:38.2946192Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2949016Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-04-25T04:47:38.2952605Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-04-25T04:47:38.2955883Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-04-25T04:47:38.2959596Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.2963196Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-04-25T04:47:38.2966158Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-04-25T04:47:38.2969658Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-04-25T04:47:38.2973646Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-04-25T04:47:38.2985094Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-04-25T04:47:38.2988242Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-04-25T04:47:38.2991707Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-04-25T04:47:38.2995205Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-04-25T04:47:38.2998812Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3044318Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-04-25T04:47:38.3044462Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-04-25T04:47:38.3044605Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-04-25T04:47:38.3044894Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3045072Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-04-25T04:47:38.3045252Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-04-25T04:47:38.3045413Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-04-25T04:47:38.3045553Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-04-25T04:47:38.3045682Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-04-25T04:47:38.3045977Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3046134Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-04-25T04:47:38.3046446Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-04-25T04:47:38.3046635Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-04-25T04:47:38.3050146Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-04-25T04:47:38.3053577Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-04-25T04:47:38.3057354Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-04-25T04:47:38.3060227Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-04-25T04:47:38.3063678Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-04-25T04:47:38.3067184Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3070407Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-04-25T04:47:38.3074989Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3077410Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-04-25T04:47:38.3080668Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-04-25T04:47:38.3083825Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-04-25T04:47:38.3087154Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-04-25T04:47:38.3091033Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-04-25T04:47:38.3093919Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-04-25T04:47:38.3097044Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-04-25T04:47:38.3100888Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-04-25T04:47:38.3103954Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-04-25T04:47:38.3107372Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3110583Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-04-25T04:47:38.3114701Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3118247Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-04-25T04:47:38.3121138Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-04-25T04:47:38.3124329Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-04-25T04:47:38.3127641Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-04-25T04:47:38.3130958Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-04-25T04:47:38.3134396Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-04-25T04:47:38.3137504Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-04-25T04:47:38.3141007Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-04-25T04:47:38.3144333Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-04-25T04:47:38.3148026Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3151140Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-04-25T04:47:38.3154305Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-04-25T04:47:38.3157461Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-04-25T04:47:38.3160744Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-04-25T04:47:38.3164159Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-04-25T04:47:38.3168007Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-04-25T04:47:38.3171351Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-04-25T04:47:38.3175152Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3178816Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-04-25T04:47:38.3182865Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-04-25T04:47:38.3186032Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-04-25T04:47:38.3220507Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-04-25T04:47:38.3220804Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-04-25T04:47:38.3221148Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3221323Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-04-25T04:47:38.3221490Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-04-25T04:47:38.3221630Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-04-25T04:47:38.3221925Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3222072Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-04-25T04:47:38.3222505Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3223454Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-04-25T04:47:38.3226881Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-04-25T04:47:38.3230053Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-04-25T04:47:38.3233549Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-04-25T04:47:38.3236786Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-04-25T04:47:38.3240570Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-04-25T04:47:38.3243870Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-04-25T04:47:38.3247040Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-04-25T04:47:38.3250388Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-04-25T04:47:38.3253738Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-04-25T04:47:38.3257207Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-04-25T04:47:38.3260905Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-04-25T04:47:38.3264105Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-04-25T04:47:38.3267765Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3270878Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-04-25T04:47:38.3274434Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-04-25T04:47:38.3277636Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-04-25T04:47:38.3280998Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-04-25T04:47:38.3284679Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-04-25T04:47:38.3287690Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-04-25T04:47:38.3291282Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-04-25T04:47:38.3294726Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3297902Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-04-25T04:47:38.3301942Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-04-25T04:47:38.3304762Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-04-25T04:47:38.3308465Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3311625Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-04-25T04:47:38.3315016Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-04-25T04:47:38.3318129Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-04-25T04:47:38.3321447Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-04-25T04:47:38.3325081Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-04-25T04:47:38.3328679Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3331838Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-04-25T04:47:38.3335460Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-04-25T04:47:38.3338773Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-04-25T04:47:38.3342603Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3345818Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-04-25T04:47:38.3349010Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-04-25T04:47:38.3352539Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-04-25T04:47:38.3356301Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3359526Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-04-25T04:47:38.3363336Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-04-25T04:47:38.3366739Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-04-25T04:47:38.3370179Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3373376Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-04-25T04:47:38.3376669Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-04-25T04:47:38.3380184Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-04-25T04:47:38.3383941Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3387056Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-04-25T04:47:38.3390580Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-04-25T04:47:38.3394586Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-04-25T04:47:38.3397885Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3401475Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3404762Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3407935Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-04-25T04:47:38.3411772Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-04-25T04:47:38.3415154Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-04-25T04:47:38.3418649Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3422058Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-04-25T04:47:38.3425395Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-04-25T04:47:38.3428552Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-04-25T04:47:38.3431820Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-04-25T04:47:38.3434940Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-04-25T04:47:38.3438303Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-04-25T04:47:38.3441704Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-04-25T04:47:38.3445168Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3448064Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-04-25T04:47:38.3451430Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-04-25T04:47:38.3454796Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-04-25T04:47:38.3458211Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3461378Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-04-25T04:47:38.3464841Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3467872Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-04-25T04:47:38.3471439Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-04-25T04:47:38.3474616Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-04-25T04:47:38.3477856Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-04-25T04:47:38.3481173Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-04-25T04:47:38.3484482Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-04-25T04:47:38.3487863Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-04-25T04:47:38.3490984Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-04-25T04:47:38.3494306Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-04-25T04:47:38.3497528Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-04-25T04:47:38.3501198Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3504329Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-04-25T04:47:38.3507772Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-04-25T04:47:38.3510988Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-04-25T04:47:38.3514362Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3517365Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-04-25T04:47:38.3520822Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-04-25T04:47:38.3524071Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-04-25T04:47:38.3527437Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3530664Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-04-25T04:47:38.3534276Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-04-25T04:47:38.3537575Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-04-25T04:47:38.3541317Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3544286Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-04-25T04:47:38.3547733Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-04-25T04:47:38.3551160Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-04-25T04:47:38.3554759Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3558247Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-04-25T04:47:38.3561170Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-04-25T04:47:38.3564465Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-04-25T04:47:38.3567932Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3571158Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-04-25T04:47:38.3592373Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-04-25T04:47:38.3592531Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-04-25T04:47:38.3592922Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3593123Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-04-25T04:47:38.3593323Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-04-25T04:47:38.3593940Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-04-25T04:47:38.3642404Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-04-25T04:47:38.3642617Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-04-25T04:47:38.3642785Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-04-25T04:47:38.3642894Z adding 'torch/include/ATen/ops/linear.h' 2025-04-25T04:47:38.3643028Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-04-25T04:47:38.3643338Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3643490Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-04-25T04:47:38.3643632Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-04-25T04:47:38.3643882Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3644137Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3644256Z adding 'torch/include/ATen/ops/linear_native.h' 2025-04-25T04:47:38.3644370Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-04-25T04:47:38.3644496Z adding 'torch/include/ATen/ops/linspace.h' 2025-04-25T04:47:38.3646585Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3650773Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-04-25T04:47:38.3655024Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-04-25T04:47:38.3657759Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-04-25T04:47:38.3661130Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-04-25T04:47:38.3665113Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-04-25T04:47:38.3668801Z adding 'torch/include/ATen/ops/log.h' 2025-04-25T04:47:38.3672047Z adding 'torch/include/ATen/ops/log10.h' 2025-04-25T04:47:38.3675555Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3678779Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-04-25T04:47:38.3682005Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-04-25T04:47:38.3685184Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-04-25T04:47:38.3688402Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-04-25T04:47:38.3691581Z adding 'torch/include/ATen/ops/log10_native.h' 2025-04-25T04:47:38.3695125Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-04-25T04:47:38.3698400Z adding 'torch/include/ATen/ops/log1p.h' 2025-04-25T04:47:38.3701997Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3705059Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-04-25T04:47:38.3708268Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-04-25T04:47:38.3711666Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-04-25T04:47:38.3714781Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-04-25T04:47:38.3717833Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-04-25T04:47:38.3721184Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-04-25T04:47:38.3725427Z adding 'torch/include/ATen/ops/log2.h' 2025-04-25T04:47:38.3728155Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3731400Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-04-25T04:47:38.3734597Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-04-25T04:47:38.3737588Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-04-25T04:47:38.3740943Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-04-25T04:47:38.3744072Z adding 'torch/include/ATen/ops/log2_native.h' 2025-04-25T04:47:38.3747500Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-04-25T04:47:38.3750997Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3753990Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-04-25T04:47:38.3757173Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-04-25T04:47:38.3760276Z adding 'torch/include/ATen/ops/log_meta.h' 2025-04-25T04:47:38.3763499Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-04-25T04:47:38.3766668Z adding 'torch/include/ATen/ops/log_native.h' 2025-04-25T04:47:38.3770052Z adding 'torch/include/ATen/ops/log_normal.h' 2025-04-25T04:47:38.3773356Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3776474Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-04-25T04:47:38.3779648Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-04-25T04:47:38.3783012Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-04-25T04:47:38.3786119Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-04-25T04:47:38.3789815Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-04-25T04:47:38.3792993Z adding 'torch/include/ATen/ops/log_ops.h' 2025-04-25T04:47:38.3796241Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-04-25T04:47:38.3799516Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-04-25T04:47:38.3803247Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-04-25T04:47:38.3806516Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-04-25T04:47:38.3809660Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-04-25T04:47:38.3812977Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-04-25T04:47:38.3816996Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3819598Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-04-25T04:47:38.3823055Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-04-25T04:47:38.3826279Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-04-25T04:47:38.3829597Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-04-25T04:47:38.3832937Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-04-25T04:47:38.3836044Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-04-25T04:47:38.3839363Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-04-25T04:47:38.3842641Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-04-25T04:47:38.3846115Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3849449Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3852538Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-04-25T04:47:38.3855952Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-04-25T04:47:38.3859229Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-04-25T04:47:38.3862635Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-04-25T04:47:38.3866174Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3869182Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-04-25T04:47:38.3872491Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-04-25T04:47:38.3875626Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-04-25T04:47:38.3878913Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-04-25T04:47:38.3882045Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-04-25T04:47:38.3885779Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-04-25T04:47:38.3889077Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.3892068Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-04-25T04:47:38.3895418Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-04-25T04:47:38.3898642Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-04-25T04:47:38.3902289Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-04-25T04:47:38.3905408Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-04-25T04:47:38.3909026Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-04-25T04:47:38.3912399Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-04-25T04:47:38.3915824Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3919181Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3922249Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-04-25T04:47:38.3925977Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-04-25T04:47:38.3929738Z adding 'torch/include/ATen/ops/logdet.h' 2025-04-25T04:47:38.3932741Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.3936079Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-04-25T04:47:38.3939182Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-04-25T04:47:38.3942723Z adding 'torch/include/ATen/ops/logical_and.h' 2025-04-25T04:47:38.3946216Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3949532Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-04-25T04:47:38.3953375Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-04-25T04:47:38.3956099Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-04-25T04:47:38.3959647Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-04-25T04:47:38.3962889Z adding 'torch/include/ATen/ops/logical_not.h' 2025-04-25T04:47:38.3966488Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3969794Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-04-25T04:47:38.3972988Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-04-25T04:47:38.3976528Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-04-25T04:47:38.3979619Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-04-25T04:47:38.3983233Z adding 'torch/include/ATen/ops/logical_or.h' 2025-04-25T04:47:38.3986699Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.3989993Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-04-25T04:47:38.3993240Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-04-25T04:47:38.3996517Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-04-25T04:47:38.4000383Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-04-25T04:47:38.4003430Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-04-25T04:47:38.4007023Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4010189Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-04-25T04:47:38.4013594Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-04-25T04:47:38.4016824Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-04-25T04:47:38.4020380Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-04-25T04:47:38.4036616Z adding 'torch/include/ATen/ops/logit.h' 2025-04-25T04:47:38.4036746Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-04-25T04:47:38.4037118Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4037298Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-04-25T04:47:38.4038873Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-04-25T04:47:38.4058923Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-04-25T04:47:38.4059111Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-04-25T04:47:38.4059269Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-04-25T04:47:38.4059418Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-04-25T04:47:38.4059559Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-04-25T04:47:38.4060601Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-04-25T04:47:38.4065152Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-04-25T04:47:38.4067268Z adding 'torch/include/ATen/ops/logit_native.h' 2025-04-25T04:47:38.4071324Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-04-25T04:47:38.4074768Z adding 'torch/include/ATen/ops/logspace.h' 2025-04-25T04:47:38.4078833Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4082046Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-04-25T04:47:38.4085495Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-04-25T04:47:38.4088739Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-04-25T04:47:38.4092015Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-04-25T04:47:38.4096203Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-04-25T04:47:38.4099752Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-04-25T04:47:38.4103326Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4106686Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4111303Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4113142Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-04-25T04:47:38.4116678Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-04-25T04:47:38.4120033Z adding 'torch/include/ATen/ops/lshift.h' 2025-04-25T04:47:38.4123516Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4126559Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-04-25T04:47:38.4129720Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-04-25T04:47:38.4133618Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-04-25T04:47:38.4136117Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-04-25T04:47:38.4139636Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-04-25T04:47:38.4143363Z adding 'torch/include/ATen/ops/lstm.h' 2025-04-25T04:47:38.4146646Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-04-25T04:47:38.4150149Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4153106Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-04-25T04:47:38.4156404Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-04-25T04:47:38.4159813Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4163337Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-04-25T04:47:38.4166903Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4170036Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-04-25T04:47:38.4173641Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-04-25T04:47:38.4177768Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-04-25T04:47:38.4180582Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-04-25T04:47:38.4183943Z adding 'torch/include/ATen/ops/lt.h' 2025-04-25T04:47:38.4187455Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4190618Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-04-25T04:47:38.4193881Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-04-25T04:47:38.4197041Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-04-25T04:47:38.4200854Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-04-25T04:47:38.4203940Z adding 'torch/include/ATen/ops/lt_native.h' 2025-04-25T04:47:38.4207438Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-04-25T04:47:38.4210689Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-04-25T04:47:38.4214147Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4217147Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-04-25T04:47:38.4220651Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-04-25T04:47:38.4224019Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-04-25T04:47:38.4227539Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4230622Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-04-25T04:47:38.4234053Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-04-25T04:47:38.4237630Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-04-25T04:47:38.4241076Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-04-25T04:47:38.4244155Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-04-25T04:47:38.4247568Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-04-25T04:47:38.4250716Z adding 'torch/include/ATen/ops/mH.h' 2025-04-25T04:47:38.4254080Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4257224Z adding 'torch/include/ATen/ops/mH_native.h' 2025-04-25T04:47:38.4260502Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-04-25T04:47:38.4263532Z adding 'torch/include/ATen/ops/mT.h' 2025-04-25T04:47:38.4266925Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4269896Z adding 'torch/include/ATen/ops/mT_native.h' 2025-04-25T04:47:38.4273091Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-04-25T04:47:38.4276366Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-04-25T04:47:38.4279936Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4282971Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-04-25T04:47:38.4286122Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-04-25T04:47:38.4289456Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-04-25T04:47:38.4293641Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4296302Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-04-25T04:47:38.4300088Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-04-25T04:47:38.4302844Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-04-25T04:47:38.4306098Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-04-25T04:47:38.4309919Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-04-25T04:47:38.4313302Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-04-25T04:47:38.4316525Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-04-25T04:47:38.4320125Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4323236Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-04-25T04:47:38.4326550Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-04-25T04:47:38.4329962Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4332884Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-04-25T04:47:38.4336042Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-04-25T04:47:38.4339174Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-04-25T04:47:38.4342444Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-04-25T04:47:38.4345950Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-04-25T04:47:38.4349164Z adding 'torch/include/ATen/ops/masked_select.h' 2025-04-25T04:47:38.4352399Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-04-25T04:47:38.4355903Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4358769Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-04-25T04:47:38.4362157Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-04-25T04:47:38.4365368Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-04-25T04:47:38.4368480Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-04-25T04:47:38.4371623Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-04-25T04:47:38.4374928Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-04-25T04:47:38.4378314Z adding 'torch/include/ATen/ops/matmul.h' 2025-04-25T04:47:38.4381750Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-04-25T04:47:38.4385091Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4388091Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-04-25T04:47:38.4391556Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-04-25T04:47:38.4394940Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4398058Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-04-25T04:47:38.4401667Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-04-25T04:47:38.4404792Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-04-25T04:47:38.4413954Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4414107Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-04-25T04:47:38.4415455Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-04-25T04:47:38.4425947Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-04-25T04:47:38.4429278Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-04-25T04:47:38.4469014Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4469205Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-04-25T04:47:38.4469386Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-04-25T04:47:38.4469655Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4469791Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-04-25T04:47:38.4469912Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-04-25T04:47:38.4470788Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-04-25T04:47:38.4471072Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4471217Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-04-25T04:47:38.4471352Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-04-25T04:47:38.4471455Z adding 'torch/include/ATen/ops/max.h' 2025-04-25T04:47:38.4473468Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4477269Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4482097Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-04-25T04:47:38.4484099Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-04-25T04:47:38.4488524Z adding 'torch/include/ATen/ops/max_meta.h' 2025-04-25T04:47:38.4490976Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-04-25T04:47:38.4494302Z adding 'torch/include/ATen/ops/max_native.h' 2025-04-25T04:47:38.4498088Z adding 'torch/include/ATen/ops/max_ops.h' 2025-04-25T04:47:38.4501889Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-04-25T04:47:38.4507333Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4508753Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-04-25T04:47:38.4513191Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-04-25T04:47:38.4515559Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-04-25T04:47:38.4519189Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4522278Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-04-25T04:47:38.4526206Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-04-25T04:47:38.4528975Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-04-25T04:47:38.4533740Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-04-25T04:47:38.4536207Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4539220Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-04-25T04:47:38.4542919Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-04-25T04:47:38.4546577Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4549645Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-04-25T04:47:38.4553088Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-04-25T04:47:38.4557064Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-04-25T04:47:38.4560448Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-04-25T04:47:38.4563922Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4567236Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-04-25T04:47:38.4570739Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-04-25T04:47:38.4574461Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-04-25T04:47:38.4577613Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-04-25T04:47:38.4615955Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-04-25T04:47:38.4616181Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-04-25T04:47:38.4616584Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4616806Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-04-25T04:47:38.4617038Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-04-25T04:47:38.4617217Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-04-25T04:47:38.4617438Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-04-25T04:47:38.4617801Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-04-25T04:47:38.4617992Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-04-25T04:47:38.4618122Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-04-25T04:47:38.4618389Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4622108Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-04-25T04:47:38.4625038Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-04-25T04:47:38.4628658Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-04-25T04:47:38.4632299Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-04-25T04:47:38.4635961Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-04-25T04:47:38.4639253Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-04-25T04:47:38.4642692Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-04-25T04:47:38.4646229Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-04-25T04:47:38.4649684Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-04-25T04:47:38.4653182Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-04-25T04:47:38.4656532Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-04-25T04:47:38.4659873Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-04-25T04:47:38.4664078Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-04-25T04:47:38.4668377Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-04-25T04:47:38.4670994Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-04-25T04:47:38.4674115Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-04-25T04:47:38.4677448Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-04-25T04:47:38.4681196Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-04-25T04:47:38.4684720Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-04-25T04:47:38.4687929Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-04-25T04:47:38.4691148Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-04-25T04:47:38.4694546Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-04-25T04:47:38.4698015Z adding 'torch/include/ATen/ops/maximum.h' 2025-04-25T04:47:38.4701745Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4704675Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-04-25T04:47:38.4707908Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-04-25T04:47:38.4711036Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-04-25T04:47:38.4714443Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-04-25T04:47:38.4717547Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-04-25T04:47:38.4720731Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-04-25T04:47:38.4724196Z adding 'torch/include/ATen/ops/mean.h' 2025-04-25T04:47:38.4727807Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4731162Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4734230Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4737409Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-04-25T04:47:38.4741004Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-04-25T04:47:38.4744191Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-04-25T04:47:38.4747569Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-04-25T04:47:38.4750790Z adding 'torch/include/ATen/ops/mean_native.h' 2025-04-25T04:47:38.4754381Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-04-25T04:47:38.4758108Z adding 'torch/include/ATen/ops/median.h' 2025-04-25T04:47:38.4761796Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4765239Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4768121Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-04-25T04:47:38.4771280Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-04-25T04:47:38.4774458Z adding 'torch/include/ATen/ops/median_native.h' 2025-04-25T04:47:38.4778128Z adding 'torch/include/ATen/ops/median_ops.h' 2025-04-25T04:47:38.4781522Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-04-25T04:47:38.4785031Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4788010Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-04-25T04:47:38.4791298Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-04-25T04:47:38.4794903Z adding 'torch/include/ATen/ops/min.h' 2025-04-25T04:47:38.4798399Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4801632Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.4804819Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-04-25T04:47:38.4808054Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-04-25T04:47:38.4811419Z adding 'torch/include/ATen/ops/min_meta.h' 2025-04-25T04:47:38.4814657Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-04-25T04:47:38.4817904Z adding 'torch/include/ATen/ops/min_native.h' 2025-04-25T04:47:38.4821844Z adding 'torch/include/ATen/ops/min_ops.h' 2025-04-25T04:47:38.4825444Z adding 'torch/include/ATen/ops/minimum.h' 2025-04-25T04:47:38.4828836Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.4831820Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-04-25T04:47:38.4835088Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-04-25T04:47:38.4838144Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-04-25T04:47:38.4841415Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-04-25T04:47:38.4844548Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-04-25T04:47:38.4847816Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-04-25T04:47:38.4851234Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-04-25T04:47:38.4854755Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-04-25T04:47:38.4858693Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4862219Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:47:38.4865329Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-04-25T04:47:38.4868888Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-04-25T04:47:38.4872422Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4875540Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-04-25T04:47:38.4878866Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-04-25T04:47:38.4882338Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-04-25T04:47:38.4886012Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-04-25T04:47:38.4889707Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-04-25T04:47:38.4893142Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-04-25T04:47:38.4896366Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-04-25T04:47:38.4899726Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-04-25T04:47:38.4903377Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4906586Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-04-25T04:47:38.4909795Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-04-25T04:47:38.4913389Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-04-25T04:47:38.4917160Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-04-25T04:47:38.4920496Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-04-25T04:47:38.4923543Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-04-25T04:47:38.4926838Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-04-25T04:47:38.4930886Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-04-25T04:47:38.4934681Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4937823Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-04-25T04:47:38.4941251Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-04-25T04:47:38.4944705Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-04-25T04:47:38.4948553Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-04-25T04:47:38.4952275Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4955553Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-04-25T04:47:38.4958798Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-04-25T04:47:38.4962417Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-04-25T04:47:38.4966093Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-04-25T04:47:38.4969897Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-04-25T04:47:38.4973637Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4977141Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-04-25T04:47:38.4980703Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-04-25T04:47:38.4984499Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-04-25T04:47:38.4988359Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.4991630Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-04-25T04:47:38.4995005Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-04-25T04:47:38.4998674Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-04-25T04:47:38.5002254Z adding 'torch/include/ATen/ops/mish.h' 2025-04-25T04:47:38.5005500Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-04-25T04:47:38.5008927Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5012162Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5015432Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5018607Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-04-25T04:47:38.5021999Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-04-25T04:47:38.5025662Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5028754Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-04-25T04:47:38.5031997Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-04-25T04:47:38.5035311Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-04-25T04:47:38.5038705Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-04-25T04:47:38.5042448Z adding 'torch/include/ATen/ops/mish_native.h' 2025-04-25T04:47:38.5045879Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-04-25T04:47:38.5049407Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-04-25T04:47:38.5052968Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-04-25T04:47:38.5056355Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5059544Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-04-25T04:47:38.5063194Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-04-25T04:47:38.5066620Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-04-25T04:47:38.5070532Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-04-25T04:47:38.5073762Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-04-25T04:47:38.5077626Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5080723Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-04-25T04:47:38.5084373Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-04-25T04:47:38.5125536Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-04-25T04:47:38.5125701Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-04-25T04:47:38.5126117Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5126302Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-04-25T04:47:38.5126639Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5126851Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-04-25T04:47:38.5127057Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-04-25T04:47:38.5127239Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-04-25T04:47:38.5127412Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-04-25T04:47:38.5127613Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-04-25T04:47:38.5127957Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5129153Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-04-25T04:47:38.5132728Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-04-25T04:47:38.5136445Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5139645Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-04-25T04:47:38.5144236Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-04-25T04:47:38.5146749Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-04-25T04:47:38.5150434Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-04-25T04:47:38.5154001Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5157077Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-04-25T04:47:38.5161672Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-04-25T04:47:38.5164283Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5167361Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-04-25T04:47:38.5170850Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-04-25T04:47:38.5174252Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-04-25T04:47:38.5177877Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-04-25T04:47:38.5181550Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5184659Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-04-25T04:47:38.5188120Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-04-25T04:47:38.5191586Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5194645Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-04-25T04:47:38.5198066Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-04-25T04:47:38.5201957Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-04-25T04:47:38.5205665Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5208978Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-04-25T04:47:38.5212438Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-04-25T04:47:38.5216386Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-04-25T04:47:38.5220082Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5224089Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-04-25T04:47:38.5227592Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-04-25T04:47:38.5231160Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-04-25T04:47:38.5235036Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-04-25T04:47:38.5238815Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5242146Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5245617Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-04-25T04:47:38.5249562Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-04-25T04:47:38.5253123Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5256377Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-04-25T04:47:38.5259645Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-04-25T04:47:38.5263499Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-04-25T04:47:38.5267144Z adding 'torch/include/ATen/ops/mm.h' 2025-04-25T04:47:38.5270613Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5273667Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-04-25T04:47:38.5276938Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-04-25T04:47:38.5280105Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-04-25T04:47:38.5283349Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-04-25T04:47:38.5286559Z adding 'torch/include/ATen/ops/mm_native.h' 2025-04-25T04:47:38.5290015Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-04-25T04:47:38.5293446Z adding 'torch/include/ATen/ops/mode.h' 2025-04-25T04:47:38.5296948Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5300260Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5303519Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-04-25T04:47:38.5306757Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-04-25T04:47:38.5309879Z adding 'torch/include/ATen/ops/mode_native.h' 2025-04-25T04:47:38.5313397Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-04-25T04:47:38.5316703Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-04-25T04:47:38.5320079Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5323055Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-04-25T04:47:38.5326388Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-04-25T04:47:38.5329606Z adding 'torch/include/ATen/ops/movedim.h' 2025-04-25T04:47:38.5333038Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5336054Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-04-25T04:47:38.5339335Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-04-25T04:47:38.5343459Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-04-25T04:47:38.5354945Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5355169Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-04-25T04:47:38.5356530Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-04-25T04:47:38.5360572Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-04-25T04:47:38.5364593Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5367879Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-04-25T04:47:38.5371588Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-04-25T04:47:38.5374752Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-04-25T04:47:38.5378024Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-04-25T04:47:38.5381628Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5384904Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5388376Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-04-25T04:47:38.5391406Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-04-25T04:47:38.5394877Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5398019Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-04-25T04:47:38.5401150Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-04-25T04:47:38.5404339Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-04-25T04:47:38.5407631Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-04-25T04:47:38.5410774Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-04-25T04:47:38.5414081Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-04-25T04:47:38.5417315Z adding 'torch/include/ATen/ops/msort.h' 2025-04-25T04:47:38.5420845Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5423894Z adding 'torch/include/ATen/ops/msort_native.h' 2025-04-25T04:47:38.5427209Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-04-25T04:47:38.5430869Z adding 'torch/include/ATen/ops/mul.h' 2025-04-25T04:47:38.5434376Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5437680Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5440726Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-04-25T04:47:38.5443937Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-04-25T04:47:38.5447048Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-04-25T04:47:38.5450228Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-04-25T04:47:38.5453522Z adding 'torch/include/ATen/ops/mul_native.h' 2025-04-25T04:47:38.5457221Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-04-25T04:47:38.5460994Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-04-25T04:47:38.5464274Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-04-25T04:47:38.5468044Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5471153Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5474522Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-04-25T04:47:38.5478019Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-04-25T04:47:38.5481597Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-04-25T04:47:38.5485556Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-04-25T04:47:38.5488553Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-04-25T04:47:38.5492086Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-04-25T04:47:38.5495228Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-04-25T04:47:38.5498774Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-04-25T04:47:38.5502312Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5505817Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5509284Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-04-25T04:47:38.5512651Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-04-25T04:47:38.5516278Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5519436Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-04-25T04:47:38.5523062Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-04-25T04:47:38.5526891Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-04-25T04:47:38.5529703Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-04-25T04:47:38.5533257Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-04-25T04:47:38.5536479Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-04-25T04:47:38.5540063Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-04-25T04:47:38.5544233Z adding 'torch/include/ATen/ops/multinomial.h' 2025-04-25T04:47:38.5547369Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-04-25T04:47:38.5550910Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-04-25T04:47:38.5554091Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-04-25T04:47:38.5557629Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-04-25T04:47:38.5561018Z adding 'torch/include/ATen/ops/multiply.h' 2025-04-25T04:47:38.5564609Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5568009Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-04-25T04:47:38.5571552Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-04-25T04:47:38.5575018Z adding 'torch/include/ATen/ops/mv.h' 2025-04-25T04:47:38.5578530Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5581874Z adding 'torch/include/ATen/ops/mv_native.h' 2025-04-25T04:47:38.5585488Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-04-25T04:47:38.5588619Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-04-25T04:47:38.5592204Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5595323Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-04-25T04:47:38.5625639Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-04-25T04:47:38.5625790Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-04-25T04:47:38.5625926Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-04-25T04:47:38.5626046Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-04-25T04:47:38.5626318Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5626475Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-04-25T04:47:38.5626635Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-04-25T04:47:38.5626768Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-04-25T04:47:38.5628423Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-04-25T04:47:38.5632003Z adding 'torch/include/ATen/ops/nanmean.h' 2025-04-25T04:47:38.5635541Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5638790Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-04-25T04:47:38.5642181Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-04-25T04:47:38.5645916Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-04-25T04:47:38.5650605Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5652950Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5656149Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-04-25T04:47:38.5659382Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-04-25T04:47:38.5662980Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-04-25T04:47:38.5666720Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-04-25T04:47:38.5670215Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-04-25T04:47:38.5673777Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5678002Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-04-25T04:47:38.5680600Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-04-25T04:47:38.5684038Z adding 'torch/include/ATen/ops/nansum.h' 2025-04-25T04:47:38.5687423Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-04-25T04:47:38.5690836Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-04-25T04:47:38.5693864Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-04-25T04:47:38.5697237Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-04-25T04:47:38.5700781Z adding 'torch/include/ATen/ops/narrow.h' 2025-04-25T04:47:38.5704254Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5707731Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-04-25T04:47:38.5711433Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5714596Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-04-25T04:47:38.5717898Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-04-25T04:47:38.5721190Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-04-25T04:47:38.5724379Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-04-25T04:47:38.5727740Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-04-25T04:47:38.5731187Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-04-25T04:47:38.5734735Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-04-25T04:47:38.5738318Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5741687Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5744993Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5748245Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-04-25T04:47:38.5751810Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-04-25T04:47:38.5755420Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-04-25T04:47:38.5758788Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-04-25T04:47:38.5762077Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-04-25T04:47:38.5765751Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-04-25T04:47:38.5769131Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-04-25T04:47:38.5772725Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5775893Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-04-25T04:47:38.5779259Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-04-25T04:47:38.5783086Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-04-25T04:47:38.5786070Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-04-25T04:47:38.5789991Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-04-25T04:47:38.5793553Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5796845Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5800194Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5803311Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-04-25T04:47:38.5806918Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-04-25T04:47:38.5810351Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5813699Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-04-25T04:47:38.5816914Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-04-25T04:47:38.5820331Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-04-25T04:47:38.5824055Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-04-25T04:47:38.5828140Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-04-25T04:47:38.5832429Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-04-25T04:47:38.5836431Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5839806Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5843312Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5847058Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-04-25T04:47:38.5850202Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-04-25T04:47:38.5853996Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5857267Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-04-25T04:47:38.5860860Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-04-25T04:47:38.5864553Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-04-25T04:47:38.5867835Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-04-25T04:47:38.5871690Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-04-25T04:47:38.5876280Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-04-25T04:47:38.5879855Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5883300Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-04-25T04:47:38.5886623Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-04-25T04:47:38.5890227Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-04-25T04:47:38.5894241Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-04-25T04:47:38.5897693Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5901268Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-04-25T04:47:38.5904591Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-04-25T04:47:38.5908013Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-04-25T04:47:38.5911740Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-04-25T04:47:38.5915147Z adding 'torch/include/ATen/ops/native_norm.h' 2025-04-25T04:47:38.5918879Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.5922014Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-04-25T04:47:38.5925745Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-04-25T04:47:38.5929273Z adding 'torch/include/ATen/ops/ne.h' 2025-04-25T04:47:38.5932798Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5936083Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-04-25T04:47:38.5939388Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-04-25T04:47:38.5942921Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-04-25T04:47:38.5946829Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-04-25T04:47:38.5949681Z adding 'torch/include/ATen/ops/ne_native.h' 2025-04-25T04:47:38.5953400Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-04-25T04:47:38.5956790Z adding 'torch/include/ATen/ops/neg.h' 2025-04-25T04:47:38.5960481Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.5963948Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-04-25T04:47:38.5966958Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-04-25T04:47:38.5970274Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-04-25T04:47:38.5973532Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-04-25T04:47:38.5977367Z adding 'torch/include/ATen/ops/neg_native.h' 2025-04-25T04:47:38.5980572Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-04-25T04:47:38.5983945Z adding 'torch/include/ATen/ops/negative.h' 2025-04-25T04:47:38.5987711Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.5990525Z adding 'torch/include/ATen/ops/negative_native.h' 2025-04-25T04:47:38.5994051Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-04-25T04:47:38.5997338Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-04-25T04:47:38.6001167Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6004149Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-04-25T04:47:38.6007674Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-04-25T04:47:38.6011414Z adding 'torch/include/ATen/ops/new_empty.h' 2025-04-25T04:47:38.6015064Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6019120Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-04-25T04:47:38.6023139Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-04-25T04:47:38.6026666Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-04-25T04:47:38.6030495Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6034571Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6037132Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-04-25T04:47:38.6040714Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-04-25T04:47:38.6044388Z adding 'torch/include/ATen/ops/new_full.h' 2025-04-25T04:47:38.6048304Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6051863Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-04-25T04:47:38.6055081Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-04-25T04:47:38.6058851Z adding 'torch/include/ATen/ops/new_ones.h' 2025-04-25T04:47:38.6062604Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6065913Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-04-25T04:47:38.6069877Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-04-25T04:47:38.6073185Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-04-25T04:47:38.6077339Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6080230Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-04-25T04:47:38.6083926Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-04-25T04:47:38.6087443Z adding 'torch/include/ATen/ops/nextafter.h' 2025-04-25T04:47:38.6090861Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6094010Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-04-25T04:47:38.6097281Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-04-25T04:47:38.6126049Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-04-25T04:47:38.6126455Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-04-25T04:47:38.6126858Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-04-25T04:47:38.6127240Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-04-25T04:47:38.6127582Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-04-25T04:47:38.6135554Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-04-25T04:47:38.6135925Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-04-25T04:47:38.6136396Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.6136935Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.6137502Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-04-25T04:47:38.6138906Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-04-25T04:47:38.6142962Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6146514Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-04-25T04:47:38.6150107Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-04-25T04:47:38.6153740Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-04-25T04:47:38.6156989Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-04-25T04:47:38.6160424Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-04-25T04:47:38.6163867Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-04-25T04:47:38.6167484Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-04-25T04:47:38.6171133Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-04-25T04:47:38.6174821Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6178003Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:38.6181887Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:38.6185124Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-04-25T04:47:38.6188532Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-04-25T04:47:38.6191928Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-04-25T04:47:38.6195521Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-04-25T04:47:38.6198891Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6202449Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-04-25T04:47:38.6206103Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6210374Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-04-25T04:47:38.6213627Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-04-25T04:47:38.6216958Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-04-25T04:47:38.6220479Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-04-25T04:47:38.6223742Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-04-25T04:47:38.6227142Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-04-25T04:47:38.6230369Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-04-25T04:47:38.6233754Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-04-25T04:47:38.6237238Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6240298Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-04-25T04:47:38.6243643Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-04-25T04:47:38.6247105Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-04-25T04:47:38.6250389Z adding 'torch/include/ATen/ops/nonzero.h' 2025-04-25T04:47:38.6253648Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-04-25T04:47:38.6257410Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-04-25T04:47:38.6260380Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-04-25T04:47:38.6263532Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-04-25T04:47:38.6267242Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6270140Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-04-25T04:47:38.6273338Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-04-25T04:47:38.6276813Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-04-25T04:47:38.6280284Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-04-25T04:47:38.6283745Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-04-25T04:47:38.6286978Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-04-25T04:47:38.6290123Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-04-25T04:47:38.6293460Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-04-25T04:47:38.6297201Z adding 'torch/include/ATen/ops/norm.h' 2025-04-25T04:47:38.6301022Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6304404Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6307633Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6310829Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-04-25T04:47:38.6314163Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-04-25T04:47:38.6317379Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-04-25T04:47:38.6320932Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6324264Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-04-25T04:47:38.6327112Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-04-25T04:47:38.6330197Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-04-25T04:47:38.6333505Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-04-25T04:47:38.6336944Z adding 'torch/include/ATen/ops/norm_native.h' 2025-04-25T04:47:38.6341213Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-04-25T04:47:38.6345676Z adding 'torch/include/ATen/ops/normal.h' 2025-04-25T04:47:38.6349630Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6352983Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-04-25T04:47:38.6356350Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-04-25T04:47:38.6359715Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-04-25T04:47:38.6363154Z adding 'torch/include/ATen/ops/normal_native.h' 2025-04-25T04:47:38.6367814Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-04-25T04:47:38.6371140Z adding 'torch/include/ATen/ops/not_equal.h' 2025-04-25T04:47:38.6374694Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6377787Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-04-25T04:47:38.6381742Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-04-25T04:47:38.6385630Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-04-25T04:47:38.6388943Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6392161Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-04-25T04:47:38.6395635Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-04-25T04:47:38.6399031Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-04-25T04:47:38.6402753Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6405754Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-04-25T04:47:38.6409342Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-04-25T04:47:38.6412161Z adding 'torch/include/ATen/ops/one_hot.h' 2025-04-25T04:47:38.6415820Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6418866Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-04-25T04:47:38.6422746Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-04-25T04:47:38.6426831Z adding 'torch/include/ATen/ops/ones.h' 2025-04-25T04:47:38.6430630Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6433934Z adding 'torch/include/ATen/ops/ones_like.h' 2025-04-25T04:47:38.6437568Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6440782Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-04-25T04:47:38.6444337Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-04-25T04:47:38.6447718Z adding 'torch/include/ATen/ops/ones_native.h' 2025-04-25T04:47:38.6451520Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-04-25T04:47:38.6454877Z adding 'torch/include/ATen/ops/or.h' 2025-04-25T04:47:38.6458357Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6461610Z adding 'torch/include/ATen/ops/or_native.h' 2025-04-25T04:47:38.6465157Z adding 'torch/include/ATen/ops/or_ops.h' 2025-04-25T04:47:38.6468513Z adding 'torch/include/ATen/ops/orgqr.h' 2025-04-25T04:47:38.6472046Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6475063Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-04-25T04:47:38.6478402Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-04-25T04:47:38.6482079Z adding 'torch/include/ATen/ops/ormqr.h' 2025-04-25T04:47:38.6485451Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-04-25T04:47:38.6488796Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-04-25T04:47:38.6492063Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-04-25T04:47:38.6496017Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-04-25T04:47:38.6498849Z adding 'torch/include/ATen/ops/outer.h' 2025-04-25T04:47:38.6502375Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6505562Z adding 'torch/include/ATen/ops/outer_native.h' 2025-04-25T04:47:38.6509009Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-04-25T04:47:38.6512284Z adding 'torch/include/ATen/ops/output_nr.h' 2025-04-25T04:47:38.6515600Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6518751Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-04-25T04:47:38.6522489Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-04-25T04:47:38.6525422Z adding 'torch/include/ATen/ops/pad.h' 2025-04-25T04:47:38.6528997Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6532180Z adding 'torch/include/ATen/ops/pad_native.h' 2025-04-25T04:47:38.6535638Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-04-25T04:47:38.6538892Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-04-25T04:47:38.6542537Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6545872Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-04-25T04:47:38.6549060Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-04-25T04:47:38.6552598Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-04-25T04:47:38.6556058Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6559178Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-04-25T04:47:38.6562511Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-04-25T04:47:38.6565832Z adding 'torch/include/ATen/ops/pdist.h' 2025-04-25T04:47:38.6569312Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6572316Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-04-25T04:47:38.6575713Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-04-25T04:47:38.6578994Z adding 'torch/include/ATen/ops/permute.h' 2025-04-25T04:47:38.6582776Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6585896Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-04-25T04:47:38.6589345Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6592778Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6595810Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-04-25T04:47:38.6599206Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-04-25T04:47:38.6602389Z adding 'torch/include/ATen/ops/permute_native.h' 2025-04-25T04:47:38.6605904Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-04-25T04:47:38.6609364Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-04-25T04:47:38.6613142Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6616549Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-04-25T04:47:38.6620291Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-04-25T04:47:38.6624560Z adding 'torch/include/ATen/ops/pinverse.h' 2025-04-25T04:47:38.6629061Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6632966Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-04-25T04:47:38.6638427Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-04-25T04:47:38.6642010Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-04-25T04:47:38.6645516Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6648956Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6652385Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-04-25T04:47:38.6655501Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-04-25T04:47:38.6659493Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-04-25T04:47:38.6662675Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-04-25T04:47:38.6666067Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6669256Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6672359Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-04-25T04:47:38.6675597Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-04-25T04:47:38.6678910Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-04-25T04:47:38.6682165Z adding 'torch/include/ATen/ops/poisson.h' 2025-04-25T04:47:38.6685681Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6688955Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-04-25T04:47:38.6692206Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-04-25T04:47:38.6695189Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-04-25T04:47:38.6698363Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-04-25T04:47:38.6701902Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6705034Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-04-25T04:47:38.6708297Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-04-25T04:47:38.6711628Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-04-25T04:47:38.6714860Z adding 'torch/include/ATen/ops/polar.h' 2025-04-25T04:47:38.6718237Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6721346Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-04-25T04:47:38.6724632Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-04-25T04:47:38.6727577Z adding 'torch/include/ATen/ops/polar_native.h' 2025-04-25T04:47:38.6731065Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-04-25T04:47:38.6734277Z adding 'torch/include/ATen/ops/polygamma.h' 2025-04-25T04:47:38.6737543Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6740901Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6743979Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-04-25T04:47:38.6747268Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-04-25T04:47:38.6750353Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-04-25T04:47:38.6753693Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-04-25T04:47:38.6756770Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-04-25T04:47:38.6760128Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-04-25T04:47:38.6763390Z adding 'torch/include/ATen/ops/positive.h' 2025-04-25T04:47:38.6766887Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6769991Z adding 'torch/include/ATen/ops/positive_native.h' 2025-04-25T04:47:38.6773509Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-04-25T04:47:38.6776932Z adding 'torch/include/ATen/ops/pow.h' 2025-04-25T04:47:38.6780547Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6784219Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-04-25T04:47:38.6787165Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-04-25T04:47:38.6790537Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-04-25T04:47:38.6793881Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-04-25T04:47:38.6797491Z adding 'torch/include/ATen/ops/pow_native.h' 2025-04-25T04:47:38.6801323Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-04-25T04:47:38.6804540Z adding 'torch/include/ATen/ops/prelu.h' 2025-04-25T04:47:38.6808028Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6811861Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-04-25T04:47:38.6815820Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-04-25T04:47:38.6818781Z adding 'torch/include/ATen/ops/prod.h' 2025-04-25T04:47:38.6822570Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6826164Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.6829464Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6832608Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-04-25T04:47:38.6835881Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-04-25T04:47:38.6839181Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-04-25T04:47:38.6842553Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-04-25T04:47:38.6845808Z adding 'torch/include/ATen/ops/prod_native.h' 2025-04-25T04:47:38.6849545Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-04-25T04:47:38.6852989Z adding 'torch/include/ATen/ops/promote_types.h' 2025-04-25T04:47:38.6856640Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6859583Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-04-25T04:47:38.6862963Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-04-25T04:47:38.6866204Z adding 'torch/include/ATen/ops/put.h' 2025-04-25T04:47:38.6869753Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6872899Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-04-25T04:47:38.6876153Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-04-25T04:47:38.6879541Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-04-25T04:47:38.6882775Z adding 'torch/include/ATen/ops/put_native.h' 2025-04-25T04:47:38.6886315Z adding 'torch/include/ATen/ops/put_ops.h' 2025-04-25T04:47:38.6889505Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-04-25T04:47:38.6892749Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-04-25T04:47:38.6896045Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-04-25T04:47:38.6899365Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-04-25T04:47:38.6903118Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6906185Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-04-25T04:47:38.6909811Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-04-25T04:47:38.6913144Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-04-25T04:47:38.6916676Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6919582Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-04-25T04:47:38.6923007Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-04-25T04:47:38.6926757Z adding 'torch/include/ATen/ops/q_scale.h' 2025-04-25T04:47:38.6929467Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-04-25T04:47:38.6933148Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-04-25T04:47:38.6936172Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-04-25T04:47:38.6939723Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-04-25T04:47:38.6943114Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-04-25T04:47:38.6946514Z adding 'torch/include/ATen/ops/qr.h' 2025-04-25T04:47:38.6950301Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6953150Z adding 'torch/include/ATen/ops/qr_native.h' 2025-04-25T04:47:38.6956610Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-04-25T04:47:38.6959924Z adding 'torch/include/ATen/ops/qscheme.h' 2025-04-25T04:47:38.6963257Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-04-25T04:47:38.6966375Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-04-25T04:47:38.6970011Z adding 'torch/include/ATen/ops/quantile.h' 2025-04-25T04:47:38.6974141Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.6977350Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-04-25T04:47:38.6980625Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-04-25T04:47:38.6984127Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-04-25T04:47:38.6987756Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.6991118Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-04-25T04:47:38.6994339Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-04-25T04:47:38.6997618Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-04-25T04:47:38.7001038Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-04-25T04:47:38.7005030Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-04-25T04:47:38.7008899Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7011889Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-04-25T04:47:38.7015373Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-04-25T04:47:38.7018632Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-04-25T04:47:38.7022449Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7026466Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-04-25T04:47:38.7029258Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-04-25T04:47:38.7032860Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-04-25T04:47:38.7035828Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-04-25T04:47:38.7039200Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-04-25T04:47:38.7043020Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-04-25T04:47:38.7046854Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-04-25T04:47:38.7050662Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7053518Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-04-25T04:47:38.7057131Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-04-25T04:47:38.7060628Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-04-25T04:47:38.7064625Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7068634Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-04-25T04:47:38.7072161Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-04-25T04:47:38.7075692Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-04-25T04:47:38.7079688Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7082405Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-04-25T04:47:38.7085988Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-04-25T04:47:38.7089621Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-04-25T04:47:38.7093284Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7096598Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-04-25T04:47:38.7099795Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-04-25T04:47:38.7103349Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-04-25T04:47:38.7106913Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7110102Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-04-25T04:47:38.7113698Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-04-25T04:47:38.7117048Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-04-25T04:47:38.7120578Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7125112Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-04-25T04:47:38.7127293Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-04-25T04:47:38.7130609Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-04-25T04:47:38.7134318Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7137400Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-04-25T04:47:38.7140910Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-04-25T04:47:38.7144214Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-04-25T04:47:38.7147698Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7150821Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-04-25T04:47:38.7154228Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-04-25T04:47:38.7157635Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-04-25T04:47:38.7161087Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7164198Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-04-25T04:47:38.7167555Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-04-25T04:47:38.7172701Z adding 'torch/include/ATen/ops/rand.h' 2025-04-25T04:47:38.7177070Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7180476Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7183812Z adding 'torch/include/ATen/ops/rand_like.h' 2025-04-25T04:47:38.7187452Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7190602Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-04-25T04:47:38.7194057Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-04-25T04:47:38.7197312Z adding 'torch/include/ATen/ops/rand_native.h' 2025-04-25T04:47:38.7201181Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-04-25T04:47:38.7206448Z adding 'torch/include/ATen/ops/randint.h' 2025-04-25T04:47:38.7212002Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7215556Z adding 'torch/include/ATen/ops/randint_like.h' 2025-04-25T04:47:38.7219553Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7222960Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-04-25T04:47:38.7226595Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-04-25T04:47:38.7229966Z adding 'torch/include/ATen/ops/randint_native.h' 2025-04-25T04:47:38.7233924Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-04-25T04:47:38.7239031Z adding 'torch/include/ATen/ops/randn.h' 2025-04-25T04:47:38.7243421Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7246803Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7250184Z adding 'torch/include/ATen/ops/randn_like.h' 2025-04-25T04:47:38.7253928Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7257247Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:47:38.7260276Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-04-25T04:47:38.7263884Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-04-25T04:47:38.7267188Z adding 'torch/include/ATen/ops/randn_native.h' 2025-04-25T04:47:38.7271030Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-04-25T04:47:38.7274618Z adding 'torch/include/ATen/ops/random.h' 2025-04-25T04:47:38.7278360Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7281562Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-04-25T04:47:38.7284799Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-04-25T04:47:38.7288089Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-04-25T04:47:38.7291726Z adding 'torch/include/ATen/ops/random_native.h' 2025-04-25T04:47:38.7295998Z adding 'torch/include/ATen/ops/random_ops.h' 2025-04-25T04:47:38.7299702Z adding 'torch/include/ATen/ops/randperm.h' 2025-04-25T04:47:38.7303739Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7307114Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-04-25T04:47:38.7310386Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-04-25T04:47:38.7313388Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-04-25T04:47:38.7316947Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-04-25T04:47:38.7320635Z adding 'torch/include/ATen/ops/range.h' 2025-04-25T04:47:38.7324228Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7327261Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-04-25T04:47:38.7330486Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-04-25T04:47:38.7333747Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-04-25T04:47:38.7337021Z adding 'torch/include/ATen/ops/range_native.h' 2025-04-25T04:47:38.7340757Z adding 'torch/include/ATen/ops/range_ops.h' 2025-04-25T04:47:38.7343964Z adding 'torch/include/ATen/ops/ravel.h' 2025-04-25T04:47:38.7347378Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7350364Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-04-25T04:47:38.7353662Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-04-25T04:47:38.7356818Z adding 'torch/include/ATen/ops/real.h' 2025-04-25T04:47:38.7360079Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7363021Z adding 'torch/include/ATen/ops/real_native.h' 2025-04-25T04:47:38.7366279Z adding 'torch/include/ATen/ops/real_ops.h' 2025-04-25T04:47:38.7369564Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-04-25T04:47:38.7373075Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7375998Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-04-25T04:47:38.7379202Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-04-25T04:47:38.7382460Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-04-25T04:47:38.7385671Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-04-25T04:47:38.7389007Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-04-25T04:47:38.7392297Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-04-25T04:47:38.7395417Z adding 'torch/include/ATen/ops/record_stream.h' 2025-04-25T04:47:38.7398619Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-04-25T04:47:38.7401678Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-04-25T04:47:38.7405038Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-04-25T04:47:38.7408110Z adding 'torch/include/ATen/ops/refine_names.h' 2025-04-25T04:47:38.7411335Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7414410Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-04-25T04:47:38.7417580Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-04-25T04:47:38.7421525Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-04-25T04:47:38.7425537Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-04-25T04:47:38.7428996Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7432265Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.7435811Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.7439204Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-04-25T04:47:38.7442607Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-04-25T04:47:38.7445771Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-04-25T04:47:38.7450249Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-04-25T04:47:38.7453399Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7456761Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-04-25T04:47:38.7460655Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-04-25T04:47:38.7463416Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-04-25T04:47:38.7466896Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-04-25T04:47:38.7470098Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-04-25T04:47:38.7473785Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-04-25T04:47:38.7477437Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-04-25T04:47:38.7481033Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-04-25T04:47:38.7484776Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.7488313Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.7491584Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-04-25T04:47:38.7494985Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-04-25T04:47:38.7498339Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-04-25T04:47:38.7501961Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-04-25T04:47:38.7505272Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-04-25T04:47:38.7508783Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-04-25T04:47:38.7512554Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-04-25T04:47:38.7516071Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-04-25T04:47:38.7519942Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7523154Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.7526505Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.7530129Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-04-25T04:47:38.7533183Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-04-25T04:47:38.7536665Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-04-25T04:47:38.7540329Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-04-25T04:47:38.7544086Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7547657Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-04-25T04:47:38.7550694Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-04-25T04:47:38.7554009Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-04-25T04:47:38.7557348Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-04-25T04:47:38.7560699Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-04-25T04:47:38.7564094Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-04-25T04:47:38.7567422Z adding 'torch/include/ATen/ops/relu.h' 2025-04-25T04:47:38.7570942Z adding 'torch/include/ATen/ops/relu6.h' 2025-04-25T04:47:38.7574239Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7577431Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-04-25T04:47:38.7580904Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-04-25T04:47:38.7584620Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7587654Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-04-25T04:47:38.7590884Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-04-25T04:47:38.7594417Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-04-25T04:47:38.7597394Z adding 'torch/include/ATen/ops/relu_native.h' 2025-04-25T04:47:38.7601171Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-04-25T04:47:38.7605524Z adding 'torch/include/ATen/ops/remainder.h' 2025-04-25T04:47:38.7608951Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7616567Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7617216Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-04-25T04:47:38.7619321Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-04-25T04:47:38.7622928Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-04-25T04:47:38.7626543Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-04-25T04:47:38.7630339Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-04-25T04:47:38.7634321Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-04-25T04:47:38.7637975Z adding 'torch/include/ATen/ops/rename.h' 2025-04-25T04:47:38.7641406Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7644558Z adding 'torch/include/ATen/ops/rename_native.h' 2025-04-25T04:47:38.7647952Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-04-25T04:47:38.7651311Z adding 'torch/include/ATen/ops/renorm.h' 2025-04-25T04:47:38.7654830Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7658119Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-04-25T04:47:38.7661601Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-04-25T04:47:38.7664764Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-04-25T04:47:38.7668227Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-04-25T04:47:38.7671503Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-04-25T04:47:38.7674844Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-04-25T04:47:38.7678324Z adding 'torch/include/ATen/ops/repeat.h' 2025-04-25T04:47:38.7681739Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7685573Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-04-25T04:47:38.7689431Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7692698Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7695891Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-04-25T04:47:38.7699051Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-04-25T04:47:38.7702472Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-04-25T04:47:38.7706150Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-04-25T04:47:38.7709320Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-04-25T04:47:38.7712545Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-04-25T04:47:38.7716052Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-04-25T04:47:38.7719860Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-04-25T04:47:38.7723559Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7726844Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.7730159Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.7733378Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-04-25T04:47:38.7736629Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-04-25T04:47:38.7739872Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-04-25T04:47:38.7743578Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-04-25T04:47:38.7747023Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7750002Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-04-25T04:47:38.7753518Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-04-25T04:47:38.7756789Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-04-25T04:47:38.7760117Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-04-25T04:47:38.7763379Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-04-25T04:47:38.7767067Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-04-25T04:47:38.7774909Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-04-25T04:47:38.7776105Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-04-25T04:47:38.7780121Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.7784101Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.7787367Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-04-25T04:47:38.7790496Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-04-25T04:47:38.7794291Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7797116Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-04-25T04:47:38.7800369Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-04-25T04:47:38.7803489Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-04-25T04:47:38.7806953Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-04-25T04:47:38.7810151Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-04-25T04:47:38.7813329Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-04-25T04:47:38.7816851Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-04-25T04:47:38.7820602Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-04-25T04:47:38.7824191Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-04-25T04:47:38.7827510Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-04-25T04:47:38.7830728Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-04-25T04:47:38.7834161Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-04-25T04:47:38.7837600Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.7840703Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-04-25T04:47:38.7844094Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-04-25T04:47:38.7847220Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-04-25T04:47:38.7850462Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-04-25T04:47:38.7854016Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-04-25T04:47:38.7857419Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-04-25T04:47:38.7860714Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-04-25T04:47:38.7864138Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7867135Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-04-25T04:47:38.7870275Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-04-25T04:47:38.7873589Z adding 'torch/include/ATen/ops/reshape.h' 2025-04-25T04:47:38.7876637Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-04-25T04:47:38.7880130Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7883425Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:47:38.7886256Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-04-25T04:47:38.7889479Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-04-25T04:47:38.7892888Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7896117Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:47:38.7899121Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-04-25T04:47:38.7902640Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-04-25T04:47:38.7906036Z adding 'torch/include/ATen/ops/resize.h' 2025-04-25T04:47:38.7909545Z adding 'torch/include/ATen/ops/resize_as.h' 2025-04-25T04:47:38.7913080Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7916201Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-04-25T04:47:38.7919616Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-04-25T04:47:38.7923164Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-04-25T04:47:38.7926551Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7929718Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-04-25T04:47:38.7932965Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-04-25T04:47:38.7936324Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-04-25T04:47:38.7939718Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.7943315Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-04-25T04:47:38.7946474Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-04-25T04:47:38.7949690Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-04-25T04:47:38.7952958Z adding 'torch/include/ATen/ops/resize_native.h' 2025-04-25T04:47:38.7956386Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-04-25T04:47:38.7959653Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-04-25T04:47:38.7963106Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7966308Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-04-25T04:47:38.7969588Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-04-25T04:47:38.7972742Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-04-25T04:47:38.7976037Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7978997Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-04-25T04:47:38.7982400Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-04-25T04:47:38.7985863Z adding 'torch/include/ATen/ops/result_type.h' 2025-04-25T04:47:38.7989326Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.7992309Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-04-25T04:47:38.7995751Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-04-25T04:47:38.7998906Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-04-25T04:47:38.8002456Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8005454Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-04-25T04:47:38.8008511Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-04-25T04:47:38.8011605Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-04-25T04:47:38.8014926Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8018090Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-04-25T04:47:38.8021874Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-04-25T04:47:38.8024912Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-04-25T04:47:38.8028573Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8031648Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-04-25T04:47:38.8035244Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-04-25T04:47:38.8038596Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-04-25T04:47:38.8041862Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-04-25T04:47:38.8045801Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8048488Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-04-25T04:47:38.8052120Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-04-25T04:47:38.8055636Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8058876Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-04-25T04:47:38.8062418Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-04-25T04:47:38.8065885Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-04-25T04:47:38.8069305Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-04-25T04:47:38.8072991Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8076155Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-04-25T04:47:38.8079339Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-04-25T04:47:38.8082956Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8086085Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-04-25T04:47:38.8089576Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-04-25T04:47:38.8093299Z adding 'torch/include/ATen/ops/roll.h' 2025-04-25T04:47:38.8097003Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8100333Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-04-25T04:47:38.8103622Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-04-25T04:47:38.8106830Z adding 'torch/include/ATen/ops/roll_native.h' 2025-04-25T04:47:38.8110180Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-04-25T04:47:38.8113755Z adding 'torch/include/ATen/ops/rot90.h' 2025-04-25T04:47:38.8117686Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8121069Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-04-25T04:47:38.8124967Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-04-25T04:47:38.8128853Z adding 'torch/include/ATen/ops/round.h' 2025-04-25T04:47:38.8132702Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8136111Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-04-25T04:47:38.8140050Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-04-25T04:47:38.8143642Z adding 'torch/include/ATen/ops/round_meta.h' 2025-04-25T04:47:38.8147398Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-04-25T04:47:38.8150966Z adding 'torch/include/ATen/ops/round_native.h' 2025-04-25T04:47:38.8154765Z adding 'torch/include/ATen/ops/round_ops.h' 2025-04-25T04:47:38.8158316Z adding 'torch/include/ATen/ops/row_indices.h' 2025-04-25T04:47:38.8162114Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8165426Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-04-25T04:47:38.8168847Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8172422Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8175464Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-04-25T04:47:38.8179261Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-04-25T04:47:38.8182753Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-04-25T04:47:38.8186146Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-04-25T04:47:38.8189452Z adding 'torch/include/ATen/ops/row_stack.h' 2025-04-25T04:47:38.8192857Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8196150Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-04-25T04:47:38.8199511Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-04-25T04:47:38.8202731Z adding 'torch/include/ATen/ops/rrelu.h' 2025-04-25T04:47:38.8206222Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8209381Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-04-25T04:47:38.8218399Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-04-25T04:47:38.8222329Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-04-25T04:47:38.8225930Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-04-25T04:47:38.8229703Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8232929Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-04-25T04:47:38.8236301Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-04-25T04:47:38.8239952Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8243444Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-04-25T04:47:38.8247086Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-04-25T04:47:38.8250369Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-04-25T04:47:38.8253642Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-04-25T04:47:38.8257424Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-04-25T04:47:38.8261213Z adding 'torch/include/ATen/ops/rshift.h' 2025-04-25T04:47:38.8264936Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8268219Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-04-25T04:47:38.8271512Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-04-25T04:47:38.8274738Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-04-25T04:47:38.8278048Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-04-25T04:47:38.8281762Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-04-25T04:47:38.8285198Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-04-25T04:47:38.8289356Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8292556Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-04-25T04:47:38.8295859Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-04-25T04:47:38.8299259Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-04-25T04:47:38.8302743Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-04-25T04:47:38.8305806Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-04-25T04:47:38.8309234Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-04-25T04:47:38.8312705Z adding 'torch/include/ATen/ops/rsub.h' 2025-04-25T04:47:38.8316448Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8319619Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-04-25T04:47:38.8322808Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-04-25T04:47:38.8326060Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-04-25T04:47:38.8329640Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-04-25T04:47:38.8333224Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-04-25T04:47:38.8336755Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8339979Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-04-25T04:47:38.8343604Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-04-25T04:47:38.8347202Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-04-25T04:47:38.8350778Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8353803Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-04-25T04:47:38.8357179Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-04-25T04:47:38.8360985Z adding 'torch/include/ATen/ops/scatter.h' 2025-04-25T04:47:38.8364478Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-04-25T04:47:38.8368089Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8371349Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8374569Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-04-25T04:47:38.8377935Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-04-25T04:47:38.8381291Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-04-25T04:47:38.8384659Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-04-25T04:47:38.8387934Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-04-25T04:47:38.8391525Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-04-25T04:47:38.8396021Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8399455Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8402742Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-04-25T04:47:38.8406310Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-04-25T04:47:38.8409755Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-04-25T04:47:38.8413267Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-04-25T04:47:38.8416534Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-04-25T04:47:38.8420983Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-04-25T04:47:38.8424650Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-04-25T04:47:38.8428536Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8431736Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-04-25T04:47:38.8435070Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-04-25T04:47:38.8438312Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-04-25T04:47:38.8441787Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-04-25T04:47:38.8444987Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-04-25T04:47:38.8448506Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-04-25T04:47:38.8452032Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-04-25T04:47:38.8455687Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-04-25T04:47:38.8459262Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-04-25T04:47:38.8462711Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-04-25T04:47:38.8466448Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-04-25T04:47:38.8470097Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-04-25T04:47:38.8473816Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8477267Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-04-25T04:47:38.8480559Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-04-25T04:47:38.8483768Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-04-25T04:47:38.8487345Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-04-25T04:47:38.8490709Z adding 'torch/include/ATen/ops/select.h' 2025-04-25T04:47:38.8494425Z adding 'torch/include/ATen/ops/select_backward.h' 2025-04-25T04:47:38.8497976Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8501635Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8504579Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-04-25T04:47:38.8508012Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-04-25T04:47:38.8511596Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8514898Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8518199Z adding 'torch/include/ATen/ops/select_copy.h' 2025-04-25T04:47:38.8531454Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8532222Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8532386Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-04-25T04:47:38.8532596Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-04-25T04:47:38.8535173Z adding 'torch/include/ATen/ops/select_native.h' 2025-04-25T04:47:38.8539058Z adding 'torch/include/ATen/ops/select_ops.h' 2025-04-25T04:47:38.8542544Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-04-25T04:47:38.8546510Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8550523Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8553057Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-04-25T04:47:38.8556659Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-04-25T04:47:38.8559914Z adding 'torch/include/ATen/ops/selu.h' 2025-04-25T04:47:38.8563541Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8566628Z adding 'torch/include/ATen/ops/selu_native.h' 2025-04-25T04:47:38.8570163Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-04-25T04:47:38.8574328Z adding 'torch/include/ATen/ops/set.h' 2025-04-25T04:47:38.8578290Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8581962Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8585296Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-04-25T04:47:38.8588847Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-04-25T04:47:38.8592193Z adding 'torch/include/ATen/ops/set_data.h' 2025-04-25T04:47:38.8595664Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8598852Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-04-25T04:47:38.8602152Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-04-25T04:47:38.8605627Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-04-25T04:47:38.8609033Z adding 'torch/include/ATen/ops/set_native.h' 2025-04-25T04:47:38.8613340Z adding 'torch/include/ATen/ops/set_ops.h' 2025-04-25T04:47:38.8661990Z adding 'torch/include/ATen/ops/sgn.h' 2025-04-25T04:47:38.8662319Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8662530Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-04-25T04:47:38.8662658Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-04-25T04:47:38.8662775Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-04-25T04:47:38.8662906Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-04-25T04:47:38.8663016Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-04-25T04:47:38.8663131Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-04-25T04:47:38.8663233Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-04-25T04:47:38.8663365Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-04-25T04:47:38.8663737Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8663923Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-04-25T04:47:38.8664110Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-04-25T04:47:38.8665988Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-04-25T04:47:38.8669585Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-04-25T04:47:38.8672786Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-04-25T04:47:38.8676462Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-04-25T04:47:38.8680804Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8683320Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-04-25T04:47:38.8686615Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-04-25T04:47:38.8689777Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-04-25T04:47:38.8693305Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-04-25T04:47:38.8696518Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-04-25T04:47:38.8700030Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-04-25T04:47:38.8703441Z adding 'torch/include/ATen/ops/sign.h' 2025-04-25T04:47:38.8707706Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8710947Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-04-25T04:47:38.8714237Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-04-25T04:47:38.8717566Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-04-25T04:47:38.8720716Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-04-25T04:47:38.8723933Z adding 'torch/include/ATen/ops/sign_native.h' 2025-04-25T04:47:38.8727336Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-04-25T04:47:38.8730626Z adding 'torch/include/ATen/ops/signbit.h' 2025-04-25T04:47:38.8734128Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8737244Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-04-25T04:47:38.8740816Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-04-25T04:47:38.8744018Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-04-25T04:47:38.8747362Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-04-25T04:47:38.8750664Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-04-25T04:47:38.8754032Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-04-25T04:47:38.8757338Z adding 'torch/include/ATen/ops/silu.h' 2025-04-25T04:47:38.8760662Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-04-25T04:47:38.8764260Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8767564Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8771032Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-04-25T04:47:38.8780150Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-04-25T04:47:38.8783450Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-04-25T04:47:38.8786768Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-04-25T04:47:38.8789990Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-04-25T04:47:38.8793366Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-04-25T04:47:38.8797074Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8800207Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-04-25T04:47:38.8803506Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-04-25T04:47:38.8806673Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-04-25T04:47:38.8809975Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-04-25T04:47:38.8813159Z adding 'torch/include/ATen/ops/silu_native.h' 2025-04-25T04:47:38.8816527Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-04-25T04:47:38.8819836Z adding 'torch/include/ATen/ops/sin.h' 2025-04-25T04:47:38.8823535Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8826632Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-04-25T04:47:38.8829891Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-04-25T04:47:38.8833099Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-04-25T04:47:38.8836684Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-04-25T04:47:38.8839619Z adding 'torch/include/ATen/ops/sin_native.h' 2025-04-25T04:47:38.8843068Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-04-25T04:47:38.8846360Z adding 'torch/include/ATen/ops/sinc.h' 2025-04-25T04:47:38.8849913Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8853036Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-04-25T04:47:38.8856301Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-04-25T04:47:38.8859485Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-04-25T04:47:38.8862931Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-04-25T04:47:38.8866119Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-04-25T04:47:38.8869534Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-04-25T04:47:38.8872864Z adding 'torch/include/ATen/ops/sinh.h' 2025-04-25T04:47:38.8876346Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8879465Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-04-25T04:47:38.8882874Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-04-25T04:47:38.8886017Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-04-25T04:47:38.8889209Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-04-25T04:47:38.8892455Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-04-25T04:47:38.8896079Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-04-25T04:47:38.8899375Z adding 'torch/include/ATen/ops/size.h' 2025-04-25T04:47:38.8903179Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8906268Z adding 'torch/include/ATen/ops/size_native.h' 2025-04-25T04:47:38.8909811Z adding 'torch/include/ATen/ops/size_ops.h' 2025-04-25T04:47:38.8913354Z adding 'torch/include/ATen/ops/slice.h' 2025-04-25T04:47:38.8917268Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-04-25T04:47:38.8921135Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8924323Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-04-25T04:47:38.8927931Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-04-25T04:47:38.8931481Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8935232Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-04-25T04:47:38.8939072Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8942742Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8945947Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-04-25T04:47:38.8949400Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-04-25T04:47:38.8953100Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-04-25T04:47:38.8956869Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8960051Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-04-25T04:47:38.8963566Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-04-25T04:47:38.8966819Z adding 'torch/include/ATen/ops/slice_native.h' 2025-04-25T04:47:38.8970320Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-04-25T04:47:38.8974083Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-04-25T04:47:38.8978004Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.8981757Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.8984884Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-04-25T04:47:38.8988511Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-04-25T04:47:38.8991861Z adding 'torch/include/ATen/ops/slogdet.h' 2025-04-25T04:47:38.8995537Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.8998640Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-04-25T04:47:38.9002179Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-04-25T04:47:38.9006116Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-04-25T04:47:38.9009974Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9013812Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-04-25T04:47:38.9017621Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-04-25T04:47:38.9021174Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-04-25T04:47:38.9024699Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-04-25T04:47:38.9028247Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-04-25T04:47:38.9031969Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-04-25T04:47:38.9036064Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-04-25T04:47:38.9040014Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9043399Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-04-25T04:47:38.9046778Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-04-25T04:47:38.9050425Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-04-25T04:47:38.9053780Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-04-25T04:47:38.9057949Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-04-25T04:47:38.9062030Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9065356Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-04-25T04:47:38.9068905Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-04-25T04:47:38.9072567Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-04-25T04:47:38.9075964Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-04-25T04:47:38.9080093Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-04-25T04:47:38.9084429Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9087701Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-04-25T04:47:38.9091264Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-04-25T04:47:38.9094601Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-04-25T04:47:38.9098369Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-04-25T04:47:38.9102122Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-04-25T04:47:38.9105629Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-04-25T04:47:38.9109716Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-04-25T04:47:38.9113855Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-04-25T04:47:38.9117160Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-04-25T04:47:38.9121161Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-04-25T04:47:38.9137484Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-04-25T04:47:38.9137612Z adding 'torch/include/ATen/ops/smm.h' 2025-04-25T04:47:38.9137850Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9137964Z adding 'torch/include/ATen/ops/smm_native.h' 2025-04-25T04:47:38.9139485Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-04-25T04:47:38.9143611Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-04-25T04:47:38.9146651Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-04-25T04:47:38.9150427Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9153750Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-04-25T04:47:38.9157360Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-04-25T04:47:38.9160613Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-04-25T04:47:38.9164298Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-04-25T04:47:38.9167876Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9171089Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-04-25T04:47:38.9174640Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-04-25T04:47:38.9177940Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-04-25T04:47:38.9181462Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-04-25T04:47:38.9184684Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-04-25T04:47:38.9188203Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-04-25T04:47:38.9191737Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-04-25T04:47:38.9195203Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-04-25T04:47:38.9198731Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9202126Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-04-25T04:47:38.9206880Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-04-25T04:47:38.9209798Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9212974Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-04-25T04:47:38.9216395Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-04-25T04:47:38.9220595Z adding 'torch/include/ATen/ops/softmax.h' 2025-04-25T04:47:38.9223581Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9226932Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9230145Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-04-25T04:47:38.9233615Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-04-25T04:47:38.9236937Z adding 'torch/include/ATen/ops/softplus.h' 2025-04-25T04:47:38.9240301Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-04-25T04:47:38.9243881Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9247294Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-04-25T04:47:38.9250262Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-04-25T04:47:38.9253558Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-04-25T04:47:38.9256914Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-04-25T04:47:38.9260276Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-04-25T04:47:38.9263715Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-04-25T04:47:38.9267265Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9270408Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-04-25T04:47:38.9274158Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-04-25T04:47:38.9277577Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-04-25T04:47:38.9280974Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-04-25T04:47:38.9284207Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-04-25T04:47:38.9287618Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-04-25T04:47:38.9291000Z adding 'torch/include/ATen/ops/softshrink.h' 2025-04-25T04:47:38.9294378Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-04-25T04:47:38.9297969Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9301231Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-04-25T04:47:38.9304552Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-04-25T04:47:38.9307776Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-04-25T04:47:38.9311146Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-04-25T04:47:38.9314368Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-04-25T04:47:38.9317794Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-04-25T04:47:38.9321324Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9324415Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-04-25T04:47:38.9327711Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-04-25T04:47:38.9330909Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-04-25T04:47:38.9334224Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-04-25T04:47:38.9337437Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-04-25T04:47:38.9340989Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-04-25T04:47:38.9344632Z adding 'torch/include/ATen/ops/sort.h' 2025-04-25T04:47:38.9348235Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9351671Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9355890Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9358507Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-04-25T04:47:38.9361642Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-04-25T04:47:38.9364871Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-04-25T04:47:38.9368197Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-04-25T04:47:38.9371555Z adding 'torch/include/ATen/ops/sort_native.h' 2025-04-25T04:47:38.9375369Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-04-25T04:47:38.9379304Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-04-25T04:47:38.9383130Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9386278Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-04-25T04:47:38.9389816Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-04-25T04:47:38.9393354Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-04-25T04:47:38.9397177Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9404549Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-04-25T04:47:38.9408106Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-04-25T04:47:38.9412012Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-04-25T04:47:38.9415790Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9418973Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-04-25T04:47:38.9422669Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-04-25T04:47:38.9426346Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-04-25T04:47:38.9429997Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9433395Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9436592Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-04-25T04:47:38.9440276Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-04-25T04:47:38.9443894Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-04-25T04:47:38.9447533Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9450671Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-04-25T04:47:38.9454210Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-04-25T04:47:38.9457788Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-04-25T04:47:38.9461563Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9464725Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-04-25T04:47:38.9468281Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-04-25T04:47:38.9471508Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-04-25T04:47:38.9474979Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9478556Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-04-25T04:47:38.9481657Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-04-25T04:47:38.9485056Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-04-25T04:47:38.9488618Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9491848Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-04-25T04:47:38.9495246Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-04-25T04:47:38.9498804Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-04-25T04:47:38.9502864Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-04-25T04:47:38.9506534Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9509962Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-04-25T04:47:38.9513945Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-04-25T04:47:38.9517067Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-04-25T04:47:38.9520566Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9523784Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-04-25T04:47:38.9527285Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-04-25T04:47:38.9531720Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-04-25T04:47:38.9534920Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-04-25T04:47:38.9538421Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-04-25T04:47:38.9546454Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-04-25T04:47:38.9549932Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-04-25T04:47:38.9553459Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9556762Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-04-25T04:47:38.9560535Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-04-25T04:47:38.9563361Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-04-25T04:47:38.9566885Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-04-25T04:47:38.9570094Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-04-25T04:47:38.9573633Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-04-25T04:47:38.9576931Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-04-25T04:47:38.9580789Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9584229Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-04-25T04:47:38.9587528Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-04-25T04:47:38.9590775Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-04-25T04:47:38.9594116Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-04-25T04:47:38.9597518Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-04-25T04:47:38.9600944Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-04-25T04:47:38.9604362Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-04-25T04:47:38.9608259Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9611167Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-04-25T04:47:38.9614567Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-04-25T04:47:38.9617771Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-04-25T04:47:38.9621456Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-04-25T04:47:38.9664512Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-04-25T04:47:38.9664680Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-04-25T04:47:38.9664811Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-04-25T04:47:38.9665179Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9665373Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-04-25T04:47:38.9665560Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-04-25T04:47:38.9665709Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-04-25T04:47:38.9665904Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-04-25T04:47:38.9666066Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-04-25T04:47:38.9666214Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-04-25T04:47:38.9666350Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-04-25T04:47:38.9666712Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9669018Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-04-25T04:47:38.9672674Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-04-25T04:47:38.9676972Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-04-25T04:47:38.9679223Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-04-25T04:47:38.9683125Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-04-25T04:47:38.9685991Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-04-25T04:47:38.9689683Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-04-25T04:47:38.9693291Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9696791Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9700712Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-04-25T04:47:38.9703566Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-04-25T04:47:38.9706815Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-04-25T04:47:38.9710191Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-04-25T04:47:38.9713495Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-04-25T04:47:38.9717322Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-04-25T04:47:38.9720943Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-04-25T04:47:38.9724561Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9727984Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9731137Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-04-25T04:47:38.9734468Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-04-25T04:47:38.9737613Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-04-25T04:47:38.9741124Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-04-25T04:47:38.9744325Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-04-25T04:47:38.9748589Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-04-25T04:47:38.9752222Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-04-25T04:47:38.9755839Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9759272Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9762425Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-04-25T04:47:38.9765741Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-04-25T04:47:38.9768945Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-04-25T04:47:38.9772377Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-04-25T04:47:38.9775541Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-04-25T04:47:38.9779246Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-04-25T04:47:38.9783041Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-04-25T04:47:38.9786671Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:38.9790091Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9793379Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-04-25T04:47:38.9796677Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-04-25T04:47:38.9799871Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-04-25T04:47:38.9803352Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-04-25T04:47:38.9806535Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-04-25T04:47:38.9810227Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-04-25T04:47:38.9813485Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-04-25T04:47:38.9816970Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9820084Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-04-25T04:47:38.9823548Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-04-25T04:47:38.9826853Z adding 'torch/include/ATen/ops/special_entr.h' 2025-04-25T04:47:38.9830391Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9833518Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-04-25T04:47:38.9836821Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-04-25T04:47:38.9840004Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-04-25T04:47:38.9843277Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-04-25T04:47:38.9846479Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-04-25T04:47:38.9849743Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-04-25T04:47:38.9853023Z adding 'torch/include/ATen/ops/special_erf.h' 2025-04-25T04:47:38.9856475Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9859495Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-04-25T04:47:38.9863096Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-04-25T04:47:38.9866398Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-04-25T04:47:38.9869906Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9872982Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-04-25T04:47:38.9876309Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-04-25T04:47:38.9879596Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-04-25T04:47:38.9883105Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:38.9886295Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-04-25T04:47:38.9889500Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-04-25T04:47:38.9892694Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-04-25T04:47:38.9896008Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-04-25T04:47:38.9899167Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-04-25T04:47:38.9902686Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-04-25T04:47:38.9906034Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-04-25T04:47:38.9909467Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9912558Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-04-25T04:47:38.9915918Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-04-25T04:47:38.9919208Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-04-25T04:47:38.9922725Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9925771Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-04-25T04:47:38.9929103Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-04-25T04:47:38.9932356Z adding 'torch/include/ATen/ops/special_expit.h' 2025-04-25T04:47:38.9935962Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9939045Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-04-25T04:47:38.9943139Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-04-25T04:47:38.9946567Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-04-25T04:47:38.9950199Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9953482Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-04-25T04:47:38.9956837Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-04-25T04:47:38.9960280Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-04-25T04:47:38.9963863Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9973514Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-04-25T04:47:38.9976907Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-04-25T04:47:38.9981250Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-04-25T04:47:38.9985024Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:38.9992006Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-04-25T04:47:38.9995754Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-04-25T04:47:38.9998926Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-04-25T04:47:39.0002555Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0005646Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-04-25T04:47:39.0009182Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-04-25T04:47:39.0013669Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-04-25T04:47:39.0017446Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0021151Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0024370Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-04-25T04:47:39.0027839Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-04-25T04:47:39.0031125Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-04-25T04:47:39.0034629Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-04-25T04:47:39.0037898Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-04-25T04:47:39.0041690Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-04-25T04:47:39.0045374Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-04-25T04:47:39.0049041Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0052569Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0056122Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-04-25T04:47:39.0059189Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-04-25T04:47:39.0062660Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-04-25T04:47:39.0066221Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-04-25T04:47:39.0069697Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-04-25T04:47:39.0073485Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-04-25T04:47:39.0081797Z adding 'torch/include/ATen/ops/special_i0.h' 2025-04-25T04:47:39.0085632Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0088783Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-04-25T04:47:39.0092316Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-04-25T04:47:39.0095622Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-04-25T04:47:39.0099314Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0103034Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-04-25T04:47:39.0106037Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-04-25T04:47:39.0109420Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-04-25T04:47:39.0112717Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-04-25T04:47:39.0116219Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-04-25T04:47:39.0120373Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-04-25T04:47:39.0122991Z adding 'torch/include/ATen/ops/special_i1.h' 2025-04-25T04:47:39.0145873Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0146054Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-04-25T04:47:39.0146224Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-04-25T04:47:39.0146348Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-04-25T04:47:39.0146506Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-04-25T04:47:39.0146733Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-04-25T04:47:39.0148725Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-04-25T04:47:39.0152146Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-04-25T04:47:39.0155653Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0159033Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-04-25T04:47:39.0162264Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-04-25T04:47:39.0165684Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-04-25T04:47:39.0170450Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-04-25T04:47:39.0172427Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-04-25T04:47:39.0175798Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-04-25T04:47:39.0179306Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-04-25T04:47:39.0183315Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0186828Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0189943Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-04-25T04:47:39.0193219Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-04-25T04:47:39.0196602Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-04-25T04:47:39.0199951Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-04-25T04:47:39.0203183Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-04-25T04:47:39.0206759Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-04-25T04:47:39.0210316Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-04-25T04:47:39.0213954Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0217315Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0220504Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-04-25T04:47:39.0223845Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-04-25T04:47:39.0226987Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-04-25T04:47:39.0230499Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-04-25T04:47:39.0233750Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-04-25T04:47:39.0237377Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-04-25T04:47:39.0240679Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-04-25T04:47:39.0244177Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0247184Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-04-25T04:47:39.0250476Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-04-25T04:47:39.0253686Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-04-25T04:47:39.0257318Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0260544Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-04-25T04:47:39.0263693Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-04-25T04:47:39.0266900Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-04-25T04:47:39.0270175Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-04-25T04:47:39.0273328Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-04-25T04:47:39.0276630Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-04-25T04:47:39.0280034Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-04-25T04:47:39.0283485Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0286523Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-04-25T04:47:39.0289832Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-04-25T04:47:39.0293175Z adding 'torch/include/ATen/ops/special_logit.h' 2025-04-25T04:47:39.0296623Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0299619Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-04-25T04:47:39.0303176Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-04-25T04:47:39.0306466Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-04-25T04:47:39.0310333Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0312964Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-04-25T04:47:39.0316411Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-04-25T04:47:39.0319696Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-04-25T04:47:39.0323243Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0326373Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-04-25T04:47:39.0329600Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-04-25T04:47:39.0332722Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-04-25T04:47:39.0342757Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-04-25T04:47:39.0346063Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-04-25T04:47:39.0349575Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-04-25T04:47:39.0353039Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-04-25T04:47:39.0356623Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0360001Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-04-25T04:47:39.0363284Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-04-25T04:47:39.0366503Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-04-25T04:47:39.0369866Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-04-25T04:47:39.0373069Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-04-25T04:47:39.0376490Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-04-25T04:47:39.0380269Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-04-25T04:47:39.0383933Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0392386Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-04-25T04:47:39.0392940Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-04-25T04:47:39.0396627Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-04-25T04:47:39.0400148Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-04-25T04:47:39.0403177Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-04-25T04:47:39.0406700Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-04-25T04:47:39.0409742Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-04-25T04:47:39.0413276Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0416383Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-04-25T04:47:39.0419693Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-04-25T04:47:39.0423086Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-04-25T04:47:39.0426448Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-04-25T04:47:39.0429697Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-04-25T04:47:39.0433397Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-04-25T04:47:39.0436940Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-04-25T04:47:39.0440645Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0443714Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-04-25T04:47:39.0447066Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-04-25T04:47:39.0450225Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-04-25T04:47:39.0453643Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0456654Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-04-25T04:47:39.0460076Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-04-25T04:47:39.0463533Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-04-25T04:47:39.0467251Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0470346Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-04-25T04:47:39.0473481Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-04-25T04:47:39.0476696Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-04-25T04:47:39.0479938Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-04-25T04:47:39.0483184Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-04-25T04:47:39.0486704Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-04-25T04:47:39.0489986Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-04-25T04:47:39.0493365Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0496425Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-04-25T04:47:39.0499957Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-04-25T04:47:39.0503316Z adding 'torch/include/ATen/ops/special_psi.h' 2025-04-25T04:47:39.0506685Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0509731Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-04-25T04:47:39.0513117Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-04-25T04:47:39.0516641Z adding 'torch/include/ATen/ops/special_round.h' 2025-04-25T04:47:39.0519966Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0523018Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-04-25T04:47:39.0526356Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-04-25T04:47:39.0529747Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-04-25T04:47:39.0533372Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0536552Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-04-25T04:47:39.0540089Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-04-25T04:47:39.0543733Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-04-25T04:47:39.0547049Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-04-25T04:47:39.0550347Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-04-25T04:47:39.0553704Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-04-25T04:47:39.0557167Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-04-25T04:47:39.0561008Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0563970Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-04-25T04:47:39.0567399Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-04-25T04:47:39.0570776Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-04-25T04:47:39.0574166Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-04-25T04:47:39.0577319Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-04-25T04:47:39.0581102Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-04-25T04:47:39.0584800Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-04-25T04:47:39.0588485Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0592108Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0595357Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-04-25T04:47:39.0598757Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-04-25T04:47:39.0602299Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-04-25T04:47:39.0605499Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-04-25T04:47:39.0608837Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-04-25T04:47:39.0612470Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-04-25T04:47:39.0616243Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-04-25T04:47:39.0620032Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0623517Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0627184Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-04-25T04:47:39.0630503Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-04-25T04:47:39.0634221Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-04-25T04:47:39.0637310Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-04-25T04:47:39.0640964Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-04-25T04:47:39.0645133Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-04-25T04:47:39.0649119Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-04-25T04:47:39.0653291Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0657099Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0660750Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-04-25T04:47:39.0664561Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-04-25T04:47:39.0668343Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-04-25T04:47:39.0672363Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-04-25T04:47:39.0675829Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-04-25T04:47:39.0679951Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-04-25T04:47:39.0683679Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-04-25T04:47:39.0687533Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0691001Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0694373Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-04-25T04:47:39.0697676Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-04-25T04:47:39.0701189Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-04-25T04:47:39.0704561Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-04-25T04:47:39.0708003Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-04-25T04:47:39.0711691Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-04-25T04:47:39.0714990Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-04-25T04:47:39.0718682Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0721808Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-04-25T04:47:39.0725202Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-04-25T04:47:39.0728523Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-04-25T04:47:39.0731990Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0735353Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-04-25T04:47:39.0738699Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-04-25T04:47:39.0742324Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-04-25T04:47:39.0745984Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0749054Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-04-25T04:47:39.0752360Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-04-25T04:47:39.0755623Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-04-25T04:47:39.0758969Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-04-25T04:47:39.0762168Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-04-25T04:47:39.0765727Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-04-25T04:47:39.0769202Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-04-25T04:47:39.0778945Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0782721Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0785859Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-04-25T04:47:39.0789169Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-04-25T04:47:39.0792374Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-04-25T04:47:39.0795698Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-04-25T04:47:39.0798938Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-04-25T04:47:39.0802572Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-04-25T04:47:39.0806101Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-04-25T04:47:39.0809863Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0813024Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-04-25T04:47:39.0816713Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-04-25T04:47:39.0821242Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-04-25T04:47:39.0824824Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0828198Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0831310Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-04-25T04:47:39.0834629Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-04-25T04:47:39.0837772Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-04-25T04:47:39.0841075Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-04-25T04:47:39.0844386Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-04-25T04:47:39.0848016Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-04-25T04:47:39.0851579Z adding 'torch/include/ATen/ops/split.h' 2025-04-25T04:47:39.0855409Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0858754Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0862681Z adding 'torch/include/ATen/ops/split_copy.h' 2025-04-25T04:47:39.0866377Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0869828Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0872890Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-04-25T04:47:39.0876338Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-04-25T04:47:39.0879560Z adding 'torch/include/ATen/ops/split_native.h' 2025-04-25T04:47:39.0882968Z adding 'torch/include/ATen/ops/split_ops.h' 2025-04-25T04:47:39.0886419Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-04-25T04:47:39.0890010Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0893444Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-04-25T04:47:39.0897066Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0900645Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0903778Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-04-25T04:47:39.0907008Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-04-25T04:47:39.0910571Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-04-25T04:47:39.0913915Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-04-25T04:47:39.0917241Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-04-25T04:47:39.0920494Z adding 'torch/include/ATen/ops/sqrt.h' 2025-04-25T04:47:39.0923982Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0927110Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-04-25T04:47:39.0930378Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-04-25T04:47:39.0933609Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-04-25T04:47:39.0936883Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-04-25T04:47:39.0940448Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-04-25T04:47:39.0943963Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-04-25T04:47:39.0947385Z adding 'torch/include/ATen/ops/square.h' 2025-04-25T04:47:39.0951028Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0954125Z adding 'torch/include/ATen/ops/square_native.h' 2025-04-25T04:47:39.0957767Z adding 'torch/include/ATen/ops/square_ops.h' 2025-04-25T04:47:39.0961014Z adding 'torch/include/ATen/ops/squeeze.h' 2025-04-25T04:47:39.0964726Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0968592Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.0971576Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-04-25T04:47:39.0975463Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.0978770Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.0982127Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-04-25T04:47:39.0985971Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-04-25T04:47:39.0989321Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-04-25T04:47:39.0993276Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-04-25T04:47:39.0997181Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-04-25T04:47:39.1000485Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1003864Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-04-25T04:47:39.1007183Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-04-25T04:47:39.1010586Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-04-25T04:47:39.1014781Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-04-25T04:47:39.1017599Z adding 'torch/include/ATen/ops/stack.h' 2025-04-25T04:47:39.1021408Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1024537Z adding 'torch/include/ATen/ops/stack_native.h' 2025-04-25T04:47:39.1028137Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-04-25T04:47:39.1032817Z adding 'torch/include/ATen/ops/std.h' 2025-04-25T04:47:39.1035671Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1039078Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-04-25T04:47:39.1042448Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-04-25T04:47:39.1046155Z adding 'torch/include/ATen/ops/std_mean.h' 2025-04-25T04:47:39.1050051Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1053250Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1056625Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-04-25T04:47:39.1060037Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-04-25T04:47:39.1063569Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-04-25T04:47:39.1067928Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-04-25T04:47:39.1071092Z adding 'torch/include/ATen/ops/std_native.h' 2025-04-25T04:47:39.1076293Z adding 'torch/include/ATen/ops/std_ops.h' 2025-04-25T04:47:39.1120923Z adding 'torch/include/ATen/ops/stft.h' 2025-04-25T04:47:39.1125124Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1129520Z adding 'torch/include/ATen/ops/stft_native.h' 2025-04-25T04:47:39.1134184Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-04-25T04:47:39.1138223Z adding 'torch/include/ATen/ops/stride.h' 2025-04-25T04:47:39.1142569Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1146378Z adding 'torch/include/ATen/ops/stride_native.h' 2025-04-25T04:47:39.1151154Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-04-25T04:47:39.1155969Z adding 'torch/include/ATen/ops/sub.h' 2025-04-25T04:47:39.1161158Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1165966Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1170613Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-04-25T04:47:39.1175571Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-04-25T04:47:39.1180103Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-04-25T04:47:39.1184922Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-04-25T04:47:39.1189553Z adding 'torch/include/ATen/ops/sub_native.h' 2025-04-25T04:47:39.1194606Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-04-25T04:47:39.1200231Z adding 'torch/include/ATen/ops/subtract.h' 2025-04-25T04:47:39.1205472Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1208593Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-04-25T04:47:39.1212076Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-04-25T04:47:39.1215702Z adding 'torch/include/ATen/ops/sum.h' 2025-04-25T04:47:39.1219266Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1222903Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1226259Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1229567Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-04-25T04:47:39.1233068Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-04-25T04:47:39.1236410Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-04-25T04:47:39.1239701Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-04-25T04:47:39.1243055Z adding 'torch/include/ATen/ops/sum_native.h' 2025-04-25T04:47:39.1246775Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-04-25T04:47:39.1250228Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-04-25T04:47:39.1253737Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1256866Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-04-25T04:47:39.1260366Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-04-25T04:47:39.1263734Z adding 'torch/include/ATen/ops/svd.h' 2025-04-25T04:47:39.1267300Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1270414Z adding 'torch/include/ATen/ops/svd_native.h' 2025-04-25T04:47:39.1273841Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-04-25T04:47:39.1277140Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-04-25T04:47:39.1280699Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1283703Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-04-25T04:47:39.1287380Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-04-25T04:47:39.1290676Z adding 'torch/include/ATen/ops/swapdims.h' 2025-04-25T04:47:39.1294140Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1297178Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-04-25T04:47:39.1300682Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-04-25T04:47:39.1303997Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-04-25T04:47:39.1307467Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1310711Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-04-25T04:47:39.1314213Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1317377Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-04-25T04:47:39.1320793Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-04-25T04:47:39.1323925Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-04-25T04:47:39.1327287Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-04-25T04:47:39.1330613Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-04-25T04:47:39.1333963Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1337015Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-04-25T04:47:39.1340878Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-04-25T04:47:39.1344201Z adding 'torch/include/ATen/ops/sym_size.h' 2025-04-25T04:47:39.1347680Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1350813Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-04-25T04:47:39.1354115Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-04-25T04:47:39.1357357Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-04-25T04:47:39.1360830Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1363861Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-04-25T04:47:39.1367749Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-04-25T04:47:39.1370573Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-04-25T04:47:39.1373993Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1377072Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-04-25T04:47:39.1380522Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-04-25T04:47:39.1383751Z adding 'torch/include/ATen/ops/t.h' 2025-04-25T04:47:39.1387610Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1390592Z adding 'torch/include/ATen/ops/t_copy.h' 2025-04-25T04:47:39.1394282Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1397660Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1400901Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-04-25T04:47:39.1404579Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-04-25T04:47:39.1407685Z adding 'torch/include/ATen/ops/t_native.h' 2025-04-25T04:47:39.1411201Z adding 'torch/include/ATen/ops/t_ops.h' 2025-04-25T04:47:39.1414509Z adding 'torch/include/ATen/ops/take.h' 2025-04-25T04:47:39.1418054Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-04-25T04:47:39.1422377Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1425233Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-04-25T04:47:39.1428884Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-04-25T04:47:39.1432311Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-04-25T04:47:39.1435732Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-04-25T04:47:39.1438991Z adding 'torch/include/ATen/ops/take_native.h' 2025-04-25T04:47:39.1442431Z adding 'torch/include/ATen/ops/take_ops.h' 2025-04-25T04:47:39.1445840Z adding 'torch/include/ATen/ops/tan.h' 2025-04-25T04:47:39.1449414Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1452650Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-04-25T04:47:39.1455948Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-04-25T04:47:39.1459306Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-04-25T04:47:39.1463433Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-04-25T04:47:39.1466254Z adding 'torch/include/ATen/ops/tan_native.h' 2025-04-25T04:47:39.1469794Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-04-25T04:47:39.1473135Z adding 'torch/include/ATen/ops/tanh.h' 2025-04-25T04:47:39.1476631Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-04-25T04:47:39.1480273Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1483542Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-04-25T04:47:39.1487251Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-04-25T04:47:39.1490304Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-04-25T04:47:39.1493763Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-04-25T04:47:39.1496964Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-04-25T04:47:39.1500634Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-04-25T04:47:39.1504482Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1507441Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-04-25T04:47:39.1510863Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-04-25T04:47:39.1514121Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-04-25T04:47:39.1517603Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-04-25T04:47:39.1520938Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-04-25T04:47:39.1524554Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-04-25T04:47:39.1528147Z adding 'torch/include/ATen/ops/tensor.h' 2025-04-25T04:47:39.1531863Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-04-25T04:47:39.1535591Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1539315Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-04-25T04:47:39.1542596Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-04-25T04:47:39.1546168Z adding 'torch/include/ATen/ops/tensordot.h' 2025-04-25T04:47:39.1549709Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1552962Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-04-25T04:47:39.1556544Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-04-25T04:47:39.1560416Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-04-25T04:47:39.1564355Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1567556Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-04-25T04:47:39.1571221Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-04-25T04:47:39.1575143Z adding 'torch/include/ATen/ops/threshold.h' 2025-04-25T04:47:39.1578194Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-04-25T04:47:39.1582020Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1585225Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-04-25T04:47:39.1588725Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-04-25T04:47:39.1592771Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-04-25T04:47:39.1595562Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-04-25T04:47:39.1599001Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-04-25T04:47:39.1602510Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-04-25T04:47:39.1606214Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1609974Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-04-25T04:47:39.1612898Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-04-25T04:47:39.1616252Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-04-25T04:47:39.1619648Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-04-25T04:47:39.1623171Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-04-25T04:47:39.1626637Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-04-25T04:47:39.1630197Z adding 'torch/include/ATen/ops/tile.h' 2025-04-25T04:47:39.1647188Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1647714Z adding 'torch/include/ATen/ops/tile_native.h' 2025-04-25T04:47:39.1648068Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-04-25T04:47:39.1648390Z adding 'torch/include/ATen/ops/to.h' 2025-04-25T04:47:39.1648820Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1652927Z adding 'torch/include/ATen/ops/to_dense.h' 2025-04-25T04:47:39.1655338Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-04-25T04:47:39.1659290Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1662220Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-04-25T04:47:39.1665786Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-04-25T04:47:39.1669362Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1672721Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-04-25T04:47:39.1677880Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-04-25T04:47:39.1680542Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-04-25T04:47:39.1683908Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-04-25T04:47:39.1687397Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1690665Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-04-25T04:47:39.1694241Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-04-25T04:47:39.1697590Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1700819Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-04-25T04:47:39.1705404Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-04-25T04:47:39.1707710Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-04-25T04:47:39.1711054Z adding 'torch/include/ATen/ops/to_native.h' 2025-04-25T04:47:39.1714754Z adding 'torch/include/ATen/ops/to_ops.h' 2025-04-25T04:47:39.1718466Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-04-25T04:47:39.1722095Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1725241Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-04-25T04:47:39.1728660Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-04-25T04:47:39.1731825Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-04-25T04:47:39.1735161Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-04-25T04:47:39.1738685Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1741962Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-04-25T04:47:39.1745284Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-04-25T04:47:39.1748462Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-04-25T04:47:39.1751899Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1754961Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-04-25T04:47:39.1758320Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-04-25T04:47:39.1761820Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1764938Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-04-25T04:47:39.1768314Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1771332Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-04-25T04:47:39.1774651Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-04-25T04:47:39.1777812Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-04-25T04:47:39.1781399Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1784473Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-04-25T04:47:39.1787798Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-04-25T04:47:39.1792211Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-04-25T04:47:39.1795498Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-04-25T04:47:39.1799126Z adding 'torch/include/ATen/ops/topk.h' 2025-04-25T04:47:39.1802851Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1806088Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-04-25T04:47:39.1809517Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-04-25T04:47:39.1812813Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-04-25T04:47:39.1816263Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-04-25T04:47:39.1819529Z adding 'torch/include/ATen/ops/topk_native.h' 2025-04-25T04:47:39.1823183Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-04-25T04:47:39.1826514Z adding 'torch/include/ATen/ops/trace.h' 2025-04-25T04:47:39.1829915Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-04-25T04:47:39.1833429Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1836496Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-04-25T04:47:39.1839779Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-04-25T04:47:39.1843220Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1846362Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-04-25T04:47:39.1849948Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-04-25T04:47:39.1853323Z adding 'torch/include/ATen/ops/trace_native.h' 2025-04-25T04:47:39.1856601Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-04-25T04:47:39.1867760Z adding 'torch/include/ATen/ops/transpose.h' 2025-04-25T04:47:39.1868353Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1868991Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1869714Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-04-25T04:47:39.1873370Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1876686Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1879705Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-04-25T04:47:39.1883092Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-04-25T04:47:39.1886325Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-04-25T04:47:39.1889822Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-04-25T04:47:39.1893345Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-04-25T04:47:39.1896860Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1900198Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-04-25T04:47:39.1904297Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-04-25T04:47:39.1907162Z adding 'torch/include/ATen/ops/trapz.h' 2025-04-25T04:47:39.1911147Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.1913918Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-04-25T04:47:39.1917449Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-04-25T04:47:39.1920946Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-04-25T04:47:39.1924809Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1928307Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-04-25T04:47:39.1931498Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-04-25T04:47:39.1934842Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-04-25T04:47:39.1938215Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-04-25T04:47:39.1941857Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-04-25T04:47:39.1945824Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-04-25T04:47:39.1948978Z adding 'torch/include/ATen/ops/tril.h' 2025-04-25T04:47:39.1952752Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.1955873Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-04-25T04:47:39.1959456Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-04-25T04:47:39.1963286Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-04-25T04:47:39.1966590Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.1969909Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-04-25T04:47:39.1973229Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-04-25T04:47:39.1976646Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-04-25T04:47:39.1980803Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-04-25T04:47:39.1983684Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-04-25T04:47:39.1987141Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-04-25T04:47:39.1990336Z adding 'torch/include/ATen/ops/tril_native.h' 2025-04-25T04:47:39.1993933Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-04-25T04:47:39.1997924Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-04-25T04:47:39.2001029Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2004328Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-04-25T04:47:39.2007792Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-04-25T04:47:39.2011225Z adding 'torch/include/ATen/ops/triu.h' 2025-04-25T04:47:39.2014994Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2018112Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-04-25T04:47:39.2021822Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-04-25T04:47:39.2025172Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-04-25T04:47:39.2028904Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2032164Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-04-25T04:47:39.2035671Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-04-25T04:47:39.2039613Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-04-25T04:47:39.2042663Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-04-25T04:47:39.2046075Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-04-25T04:47:39.2049249Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-04-25T04:47:39.2052668Z adding 'torch/include/ATen/ops/triu_native.h' 2025-04-25T04:47:39.2056829Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-04-25T04:47:39.2059771Z adding 'torch/include/ATen/ops/true_divide.h' 2025-04-25T04:47:39.2063583Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2067146Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-04-25T04:47:39.2070917Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-04-25T04:47:39.2074715Z adding 'torch/include/ATen/ops/trunc.h' 2025-04-25T04:47:39.2077976Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2081312Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-04-25T04:47:39.2084659Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-04-25T04:47:39.2087986Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-04-25T04:47:39.2091778Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-04-25T04:47:39.2094642Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-04-25T04:47:39.2098243Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-04-25T04:47:39.2101620Z adding 'torch/include/ATen/ops/type_as.h' 2025-04-25T04:47:39.2105252Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2108345Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-04-25T04:47:39.2111842Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-04-25T04:47:39.2115181Z adding 'torch/include/ATen/ops/unbind.h' 2025-04-25T04:47:39.2118718Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2122182Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2125342Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-04-25T04:47:39.2128993Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2132978Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2135593Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-04-25T04:47:39.2149360Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-04-25T04:47:39.2149724Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-04-25T04:47:39.2150081Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-04-25T04:47:39.2150525Z adding 'torch/include/ATen/ops/unflatten.h' 2025-04-25T04:47:39.2155666Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2157618Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-04-25T04:47:39.2162250Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2164346Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-04-25T04:47:39.2168011Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-04-25T04:47:39.2171063Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-04-25T04:47:39.2174788Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-04-25T04:47:39.2177937Z adding 'torch/include/ATen/ops/unfold.h' 2025-04-25T04:47:39.2181699Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-04-25T04:47:39.2185667Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2188908Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2192250Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2195450Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-04-25T04:47:39.2198920Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-04-25T04:47:39.2202459Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-04-25T04:47:39.2205948Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2209340Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2212337Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-04-25T04:47:39.2215724Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-04-25T04:47:39.2219015Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-04-25T04:47:39.2222891Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-04-25T04:47:39.2226278Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-04-25T04:47:39.2229406Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-04-25T04:47:39.2232982Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-04-25T04:47:39.2236385Z adding 'torch/include/ATen/ops/uniform.h' 2025-04-25T04:47:39.2239903Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2243147Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-04-25T04:47:39.2246507Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-04-25T04:47:39.2249724Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-04-25T04:47:39.2252973Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-04-25T04:47:39.2256442Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-04-25T04:47:39.2259969Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-04-25T04:47:39.2269157Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2270104Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-04-25T04:47:39.2274767Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-04-25T04:47:39.2278776Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-04-25T04:47:39.2282134Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-04-25T04:47:39.2285838Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-04-25T04:47:39.2289882Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2293276Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-04-25T04:47:39.2296999Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2300349Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-04-25T04:47:39.2303741Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-04-25T04:47:39.2306976Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-04-25T04:47:39.2310531Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-04-25T04:47:39.2313947Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-04-25T04:47:39.2317264Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-04-25T04:47:39.2320496Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-04-25T04:47:39.2324014Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-04-25T04:47:39.2327384Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-04-25T04:47:39.2330882Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2333964Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-04-25T04:47:39.2337465Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-04-25T04:47:39.2341056Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-04-25T04:47:39.2344645Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2347734Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-04-25T04:47:39.2351214Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-04-25T04:47:39.2354830Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-04-25T04:47:39.2358545Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2361696Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-04-25T04:47:39.2365166Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-04-25T04:47:39.2368397Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-04-25T04:47:39.2371883Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2374989Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-04-25T04:47:39.2378578Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2382115Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2385214Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-04-25T04:47:39.2388569Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-04-25T04:47:39.2392070Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-04-25T04:47:39.2395535Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-04-25T04:47:39.2399595Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-04-25T04:47:39.2404057Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-04-25T04:47:39.2407671Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2411166Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2415151Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2418126Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-04-25T04:47:39.2421882Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2425204Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-04-25T04:47:39.2428880Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-04-25T04:47:39.2432667Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2435933Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2439361Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-04-25T04:47:39.2442847Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-04-25T04:47:39.2446320Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-04-25T04:47:39.2450135Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-04-25T04:47:39.2453277Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-04-25T04:47:39.2456951Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-04-25T04:47:39.2461797Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-04-25T04:47:39.2465578Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-04-25T04:47:39.2469640Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2474063Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2477684Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2481109Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-04-25T04:47:39.2485341Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2488159Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-04-25T04:47:39.2491716Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-04-25T04:47:39.2495342Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2498942Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2503378Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2505864Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-04-25T04:47:39.2509426Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-04-25T04:47:39.2513090Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-04-25T04:47:39.2516705Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-04-25T04:47:39.2520407Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-04-25T04:47:39.2524228Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-04-25T04:47:39.2527900Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-04-25T04:47:39.2532433Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-04-25T04:47:39.2535854Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2539268Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2542982Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2546438Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-04-25T04:47:39.2550413Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2553456Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-04-25T04:47:39.2556992Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-04-25T04:47:39.2560576Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2565233Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2568895Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-04-25T04:47:39.2572460Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-04-25T04:47:39.2575959Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-04-25T04:47:39.2579582Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-04-25T04:47:39.2583093Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-04-25T04:47:39.2586868Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-04-25T04:47:39.2591218Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-04-25T04:47:39.2594934Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-04-25T04:47:39.2599029Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2602541Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2605989Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2609430Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-04-25T04:47:39.2613353Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2616887Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-04-25T04:47:39.2620724Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-04-25T04:47:39.2624355Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2627872Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2631945Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-04-25T04:47:39.2634822Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-04-25T04:47:39.2638185Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-04-25T04:47:39.2641662Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-04-25T04:47:39.2647930Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-04-25T04:47:39.2649127Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-04-25T04:47:39.2657668Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-04-25T04:47:39.2658120Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-04-25T04:47:39.2661884Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2665449Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2670281Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2672471Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-04-25T04:47:39.2676436Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2679431Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-04-25T04:47:39.2683149Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-04-25T04:47:39.2686796Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2690274Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2693931Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2697115Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-04-25T04:47:39.2700681Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-04-25T04:47:39.2703996Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-04-25T04:47:39.2707433Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-04-25T04:47:39.2711058Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-04-25T04:47:39.2714758Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-04-25T04:47:39.2718613Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-04-25T04:47:39.2722641Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-04-25T04:47:39.2726475Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2729811Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2733366Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2736644Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-04-25T04:47:39.2741070Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2744565Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-04-25T04:47:39.2748149Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-04-25T04:47:39.2751794Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2755100Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2758557Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-04-25T04:47:39.2761979Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-04-25T04:47:39.2765243Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-04-25T04:47:39.2768678Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-04-25T04:47:39.2772010Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-04-25T04:47:39.2775613Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-04-25T04:47:39.2779758Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-04-25T04:47:39.2783951Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-04-25T04:47:39.2787801Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2791082Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-04-25T04:47:39.2794576Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-04-25T04:47:39.2798120Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-04-25T04:47:39.2801625Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-04-25T04:47:39.2804934Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-04-25T04:47:39.2808446Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-04-25T04:47:39.2812058Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2815351Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2818683Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-04-25T04:47:39.2822360Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-04-25T04:47:39.2825700Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-04-25T04:47:39.2829097Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-04-25T04:47:39.2832469Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-04-25T04:47:39.2836035Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-04-25T04:47:39.2839747Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-04-25T04:47:39.2843306Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2846460Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-04-25T04:47:39.2849836Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-04-25T04:47:39.2852951Z adding 'torch/include/ATen/ops/values.h' 2025-04-25T04:47:39.2856357Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2859485Z adding 'torch/include/ATen/ops/values_copy.h' 2025-04-25T04:47:39.2863162Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2866535Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2869567Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-04-25T04:47:39.2873006Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-04-25T04:47:39.2876196Z adding 'torch/include/ATen/ops/values_native.h' 2025-04-25T04:47:39.2879497Z adding 'torch/include/ATen/ops/values_ops.h' 2025-04-25T04:47:39.2882773Z adding 'torch/include/ATen/ops/vander.h' 2025-04-25T04:47:39.2886262Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2889314Z adding 'torch/include/ATen/ops/vander_native.h' 2025-04-25T04:47:39.2892638Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-04-25T04:47:39.2896283Z adding 'torch/include/ATen/ops/var.h' 2025-04-25T04:47:39.2900255Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2903751Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-04-25T04:47:39.2907027Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-04-25T04:47:39.2910561Z adding 'torch/include/ATen/ops/var_mean.h' 2025-04-25T04:47:39.2914150Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2917499Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.2920756Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-04-25T04:47:39.2924117Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-04-25T04:47:39.2927608Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-04-25T04:47:39.2931226Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-04-25T04:47:39.2934703Z adding 'torch/include/ATen/ops/var_native.h' 2025-04-25T04:47:39.2938566Z adding 'torch/include/ATen/ops/var_ops.h' 2025-04-25T04:47:39.2942207Z adding 'torch/include/ATen/ops/vdot.h' 2025-04-25T04:47:39.2945697Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2948874Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-04-25T04:47:39.2952159Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-04-25T04:47:39.2955339Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-04-25T04:47:39.2958694Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-04-25T04:47:39.2962446Z adding 'torch/include/ATen/ops/view.h' 2025-04-25T04:47:39.2965639Z adding 'torch/include/ATen/ops/view_as.h' 2025-04-25T04:47:39.2968889Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-04-25T04:47:39.2972189Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-04-25T04:47:39.2975689Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.2979127Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.2982351Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-04-25T04:47:39.2985725Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-04-25T04:47:39.2989040Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-04-25T04:47:39.2992272Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-04-25T04:47:39.2995516Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-04-25T04:47:39.2999173Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-04-25T04:47:39.3002711Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-04-25T04:47:39.3006237Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.3009320Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-04-25T04:47:39.3012618Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-04-25T04:47:39.3015836Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-04-25T04:47:39.3019092Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-04-25T04:47:39.3022764Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3026139Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.3029143Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-04-25T04:47:39.3032549Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-04-25T04:47:39.3035862Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-04-25T04:47:39.3039229Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-04-25T04:47:39.3042635Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-04-25T04:47:39.3045922Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-04-25T04:47:39.3049341Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-04-25T04:47:39.3052887Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3056481Z adding 'torch/include/ATen/ops/view_copy.h' 2025-04-25T04:47:39.3060371Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3063938Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.3067009Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-04-25T04:47:39.3070558Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-04-25T04:47:39.3073903Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-04-25T04:47:39.3077163Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-04-25T04:47:39.3080407Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-04-25T04:47:39.3083728Z adding 'torch/include/ATen/ops/view_native.h' 2025-04-25T04:47:39.3086951Z adding 'torch/include/ATen/ops/view_ops.h' 2025-04-25T04:47:39.3090271Z adding 'torch/include/ATen/ops/vsplit.h' 2025-04-25T04:47:39.3093747Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.3096785Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-04-25T04:47:39.3100498Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-04-25T04:47:39.3103861Z adding 'torch/include/ATen/ops/vstack.h' 2025-04-25T04:47:39.3107565Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.3111364Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-04-25T04:47:39.3114280Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-04-25T04:47:39.3118061Z adding 'torch/include/ATen/ops/where.h' 2025-04-25T04:47:39.3121502Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.3124891Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-04-25T04:47:39.3128190Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-04-25T04:47:39.3131675Z adding 'torch/include/ATen/ops/where_native.h' 2025-04-25T04:47:39.3135599Z adding 'torch/include/ATen/ops/where_ops.h' 2025-04-25T04:47:39.3139137Z adding 'torch/include/ATen/ops/xlogy.h' 2025-04-25T04:47:39.3143168Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3188204Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-04-25T04:47:39.3188361Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-04-25T04:47:39.3188504Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-04-25T04:47:39.3188715Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-04-25T04:47:39.3188859Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-04-25T04:47:39.3188984Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-04-25T04:47:39.3189101Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-04-25T04:47:39.3189225Z adding 'torch/include/ATen/ops/xor.h' 2025-04-25T04:47:39.3189469Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-04-25T04:47:39.3189579Z adding 'torch/include/ATen/ops/xor_native.h' 2025-04-25T04:47:39.3189695Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-04-25T04:47:39.3189798Z adding 'torch/include/ATen/ops/zero.h' 2025-04-25T04:47:39.3192672Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3196020Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-04-25T04:47:39.3200416Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-04-25T04:47:39.3202857Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-04-25T04:47:39.3206661Z adding 'torch/include/ATen/ops/zero_native.h' 2025-04-25T04:47:39.3209690Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-04-25T04:47:39.3213763Z adding 'torch/include/ATen/ops/zeros.h' 2025-04-25T04:47:39.3217613Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3221171Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-04-25T04:47:39.3225020Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-04-25T04:47:39.3228555Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-04-25T04:47:39.3231632Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-04-25T04:47:39.3235255Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-04-25T04:47:39.3238587Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-04-25T04:47:39.3242444Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-04-25T04:47:39.3249592Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-04-25T04:47:39.3254809Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-04-25T04:47:39.3259399Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-04-25T04:47:39.3262687Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-04-25T04:47:39.3265919Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-04-25T04:47:39.3268867Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-04-25T04:47:39.3273424Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-04-25T04:47:39.3277028Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-04-25T04:47:39.3281207Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-04-25T04:47:39.3285181Z adding 'torch/include/THC/THCAtomics.cuh' 2025-04-25T04:47:39.3288141Z adding 'torch/include/THC/THCDeviceUtils.cuh' 2025-04-25T04:47:39.3292723Z adding 'torch/include/asmjit/arm.h' 2025-04-25T04:47:39.3296845Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-04-25T04:47:39.3300080Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-04-25T04:47:39.3303761Z adding 'torch/include/asmjit/asmjit.h' 2025-04-25T04:47:39.3346442Z adding 'torch/include/asmjit/core.h' 2025-04-25T04:47:39.3352541Z adding 'torch/include/asmjit/x86.h' 2025-04-25T04:47:39.3357171Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-04-25T04:47:39.3360647Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-04-25T04:47:39.3365537Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-04-25T04:47:39.3379431Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-04-25T04:47:39.3409335Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-04-25T04:47:39.3416104Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-04-25T04:47:39.3421162Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-04-25T04:47:39.3426201Z adding 'torch/include/asmjit/arm/a64utils.h' 2025-04-25T04:47:39.3429885Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-04-25T04:47:39.3439389Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-04-25T04:47:39.3449996Z adding 'torch/include/asmjit/core/api-config.h' 2025-04-25T04:47:39.3455681Z adding 'torch/include/asmjit/core/archcommons.h' 2025-04-25T04:47:39.3461769Z adding 'torch/include/asmjit/core/archtraits.h' 2025-04-25T04:47:39.3466268Z adding 'torch/include/asmjit/core/assembler.h' 2025-04-25T04:47:39.3483457Z adding 'torch/include/asmjit/core/builder.h' 2025-04-25T04:47:39.3488584Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-04-25T04:47:39.3505653Z adding 'torch/include/asmjit/core/codeholder.h' 2025-04-25T04:47:39.3516899Z adding 'torch/include/asmjit/core/compiler.h' 2025-04-25T04:47:39.3522771Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-04-25T04:47:39.3528045Z adding 'torch/include/asmjit/core/constpool.h' 2025-04-25T04:47:39.3538443Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-04-25T04:47:39.3552763Z adding 'torch/include/asmjit/core/emitter.h' 2025-04-25T04:47:39.3560229Z adding 'torch/include/asmjit/core/environment.h' 2025-04-25T04:47:39.3565932Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-04-25T04:47:39.3571174Z adding 'torch/include/asmjit/core/formatter.h' 2025-04-25T04:47:39.3591394Z adding 'torch/include/asmjit/core/func.h' 2025-04-25T04:47:39.3600299Z adding 'torch/include/asmjit/core/globals.h' 2025-04-25T04:47:39.3612251Z adding 'torch/include/asmjit/core/inst.h' 2025-04-25T04:47:39.3623187Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-04-25T04:47:39.3627109Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-04-25T04:47:39.3632006Z adding 'torch/include/asmjit/core/logger.h' 2025-04-25T04:47:39.3667325Z adding 'torch/include/asmjit/core/operand.h' 2025-04-25T04:47:39.3667469Z adding 'torch/include/asmjit/core/osutils.h' 2025-04-25T04:47:39.3668858Z adding 'torch/include/asmjit/core/string.h' 2025-04-25T04:47:39.3690094Z adding 'torch/include/asmjit/core/support.h' 2025-04-25T04:47:39.3695428Z adding 'torch/include/asmjit/core/target.h' 2025-04-25T04:47:39.3703075Z adding 'torch/include/asmjit/core/type.h' 2025-04-25T04:47:39.3708324Z adding 'torch/include/asmjit/core/virtmem.h' 2025-04-25T04:47:39.3717363Z adding 'torch/include/asmjit/core/zone.h' 2025-04-25T04:47:39.3722542Z adding 'torch/include/asmjit/core/zonehash.h' 2025-04-25T04:47:39.3726920Z adding 'torch/include/asmjit/core/zonelist.h' 2025-04-25T04:47:39.3731561Z adding 'torch/include/asmjit/core/zonestack.h' 2025-04-25T04:47:39.3736015Z adding 'torch/include/asmjit/core/zonestring.h' 2025-04-25T04:47:39.3741979Z adding 'torch/include/asmjit/core/zonetree.h' 2025-04-25T04:47:39.3750280Z adding 'torch/include/asmjit/core/zonevector.h' 2025-04-25T04:47:39.3763789Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-04-25T04:47:39.3771530Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-04-25T04:47:39.3782035Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-04-25T04:47:39.3848799Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-04-25T04:47:39.3888491Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-04-25T04:47:39.3901371Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-04-25T04:47:39.3915938Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-04-25T04:47:39.3927559Z adding 'torch/include/c10/core/Allocator.h' 2025-04-25T04:47:39.3931317Z adding 'torch/include/c10/core/AutogradState.h' 2025-04-25T04:47:39.3936919Z adding 'torch/include/c10/core/Backend.h' 2025-04-25T04:47:39.3940630Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-04-25T04:47:39.3944524Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-04-25T04:47:39.3948717Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-04-25T04:47:39.3952095Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-04-25T04:47:39.3956171Z adding 'torch/include/c10/core/Contiguity.h' 2025-04-25T04:47:39.3960283Z adding 'torch/include/c10/core/CopyBytes.h' 2025-04-25T04:47:39.3963069Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-04-25T04:47:39.3966585Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-04-25T04:47:39.3971480Z adding 'torch/include/c10/core/Device.h' 2025-04-25T04:47:39.3975114Z adding 'torch/include/c10/core/DeviceArray.h' 2025-04-25T04:47:39.3980444Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-04-25T04:47:39.3985093Z adding 'torch/include/c10/core/DeviceType.h' 2025-04-25T04:47:39.3999310Z adding 'torch/include/c10/core/DispatchKey.h' 2025-04-25T04:47:39.4017430Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-04-25T04:47:39.4022969Z adding 'torch/include/c10/core/DynamicCast.h' 2025-04-25T04:47:39.4032328Z adding 'torch/include/c10/core/Event.h' 2025-04-25T04:47:39.4032896Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-04-25T04:47:39.4036449Z adding 'torch/include/c10/core/GradMode.h' 2025-04-25T04:47:39.4059909Z adding 'torch/include/c10/core/InferenceMode.h' 2025-04-25T04:47:39.4060047Z adding 'torch/include/c10/core/Layout.h' 2025-04-25T04:47:39.4060169Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-04-25T04:47:39.4060287Z adding 'torch/include/c10/core/OptionalRef.h' 2025-04-25T04:47:39.4060434Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-04-25T04:47:39.4063560Z adding 'torch/include/c10/core/QEngine.h' 2025-04-25T04:47:39.4067161Z adding 'torch/include/c10/core/QScheme.h' 2025-04-25T04:47:39.4072231Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-04-25T04:47:39.4075161Z adding 'torch/include/c10/core/SafePyObject.h' 2025-04-25T04:47:39.4081937Z adding 'torch/include/c10/core/Scalar.h' 2025-04-25T04:47:39.4091264Z adding 'torch/include/c10/core/ScalarType.h' 2025-04-25T04:47:39.4095879Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-04-25T04:47:39.4100283Z adding 'torch/include/c10/core/Storage.h' 2025-04-25T04:47:39.4106426Z adding 'torch/include/c10/core/StorageImpl.h' 2025-04-25T04:47:39.4112143Z adding 'torch/include/c10/core/Stream.h' 2025-04-25T04:47:39.4116751Z adding 'torch/include/c10/core/StreamGuard.h' 2025-04-25T04:47:39.4120898Z adding 'torch/include/c10/core/SymBool.h' 2025-04-25T04:47:39.4124964Z adding 'torch/include/c10/core/SymFloat.h' 2025-04-25T04:47:39.4131807Z adding 'torch/include/c10/core/SymInt.h' 2025-04-25T04:47:39.4136023Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-04-25T04:47:39.4140877Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-04-25T04:47:39.4145714Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-04-25T04:47:39.4191013Z adding 'torch/include/c10/core/TensorImpl.h' 2025-04-25T04:47:39.4204591Z adding 'torch/include/c10/core/TensorOptions.h' 2025-04-25T04:47:39.4208465Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-04-25T04:47:39.4211853Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-04-25T04:47:39.4215094Z adding 'torch/include/c10/core/alignment.h' 2025-04-25T04:47:39.4218941Z adding 'torch/include/c10/core/thread_pool.h' 2025-04-25T04:47:39.4223818Z adding 'torch/include/c10/core/impl/COW.h' 2025-04-25T04:47:39.4227594Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-04-25T04:47:39.4234591Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-04-25T04:47:39.4238739Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-04-25T04:47:39.4242205Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-04-25T04:47:39.4245942Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-04-25T04:47:39.4253199Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-04-25T04:47:39.4257510Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-04-25T04:47:39.4263292Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-04-25T04:47:39.4268166Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-04-25T04:47:39.4274563Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-04-25T04:47:39.4280318Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-04-25T04:47:39.4283906Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-04-25T04:47:39.4288678Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-04-25T04:47:39.4292663Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-04-25T04:47:39.4296481Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-04-25T04:47:39.4299767Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-04-25T04:47:39.4304959Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-04-25T04:47:39.4308968Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-04-25T04:47:39.4316825Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-04-25T04:47:39.4321526Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-04-25T04:47:39.4326561Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-04-25T04:47:39.4330861Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-04-25T04:47:39.4335009Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-04-25T04:47:39.4338869Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-04-25T04:47:39.4344436Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-04-25T04:47:39.4348201Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-04-25T04:47:39.4352015Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-04-25T04:47:39.4355275Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-04-25T04:47:39.4361251Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-04-25T04:47:39.4365224Z adding 'torch/include/c10/cuda/driver_api.h' 2025-04-25T04:47:39.4371345Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-04-25T04:47:39.4374652Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-04-25T04:47:39.4377682Z adding 'torch/include/c10/cuda/impl/cuda_cmake_macros.h' 2025-04-25T04:47:39.4383249Z adding 'torch/include/c10/macros/Export.h' 2025-04-25T04:47:39.4391087Z adding 'torch/include/c10/macros/Macros.h' 2025-04-25T04:47:39.4394824Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-04-25T04:47:39.4399094Z adding 'torch/include/c10/metal/common.h' 2025-04-25T04:47:39.4404319Z adding 'torch/include/c10/metal/indexing.h' 2025-04-25T04:47:39.4453796Z adding 'torch/include/c10/metal/random.h' 2025-04-25T04:47:39.4453985Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-04-25T04:47:39.4454113Z adding 'torch/include/c10/metal/special_math.h' 2025-04-25T04:47:39.4454212Z adding 'torch/include/c10/metal/utils.h' 2025-04-25T04:47:39.4454381Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-04-25T04:47:39.4454690Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-04-25T04:47:39.4454877Z adding 'torch/include/c10/test/util/Macros.h' 2025-04-25T04:47:39.4458524Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-04-25T04:47:39.4503834Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-04-25T04:47:39.4503970Z adding 'torch/include/c10/util/AbortHandler.h' 2025-04-25T04:47:39.4504083Z adding 'torch/include/c10/util/AlignOf.h' 2025-04-25T04:47:39.4504231Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-04-25T04:47:39.4504328Z adding 'torch/include/c10/util/Array.h' 2025-04-25T04:47:39.4504434Z adding 'torch/include/c10/util/ArrayRef.h' 2025-04-25T04:47:39.4504678Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-04-25T04:47:39.4506634Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-04-25T04:47:39.4512695Z adding 'torch/include/c10/util/BFloat16.h' 2025-04-25T04:47:39.4514755Z adding 'torch/include/c10/util/Backtrace.h' 2025-04-25T04:47:39.4519456Z adding 'torch/include/c10/util/Bitset.h' 2025-04-25T04:47:39.4522821Z adding 'torch/include/c10/util/C++17.h' 2025-04-25T04:47:39.4527110Z adding 'torch/include/c10/util/CallOnce.h' 2025-04-25T04:47:39.4541110Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-04-25T04:47:39.4541250Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-04-25T04:47:39.4542005Z adding 'torch/include/c10/util/Deprecated.h' 2025-04-25T04:47:39.4545322Z adding 'torch/include/c10/util/DimVector.h' 2025-04-25T04:47:39.4567561Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-04-25T04:47:39.4567688Z adding 'torch/include/c10/util/Exception.h' 2025-04-25T04:47:39.4567820Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-04-25T04:47:39.4571480Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-04-25T04:47:39.4575003Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-04-25T04:47:39.4580846Z adding 'torch/include/c10/util/Flags.h' 2025-04-25T04:47:39.4584613Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-04-25T04:47:39.4589104Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-04-25T04:47:39.4594802Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-04-25T04:47:39.4599626Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-04-25T04:47:39.4604213Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-04-25T04:47:39.4609091Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-04-25T04:47:39.4613345Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-04-25T04:47:39.4618063Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-04-25T04:47:39.4622770Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-04-25T04:47:39.4627710Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-04-25T04:47:39.4631304Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-04-25T04:47:39.4634927Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-04-25T04:47:39.4639108Z adding 'torch/include/c10/util/FunctionRef.h' 2025-04-25T04:47:39.4642246Z adding 'torch/include/c10/util/Gauge.h' 2025-04-25T04:47:39.4646949Z adding 'torch/include/c10/util/Half-inl.h' 2025-04-25T04:47:39.4654668Z adding 'torch/include/c10/util/Half.h' 2025-04-25T04:47:39.4658936Z adding 'torch/include/c10/util/IdWrapper.h' 2025-04-25T04:47:39.4662933Z adding 'torch/include/c10/util/Lazy.h' 2025-04-25T04:47:39.4668050Z adding 'torch/include/c10/util/LeftRight.h' 2025-04-25T04:47:39.4671616Z adding 'torch/include/c10/util/Load.h' 2025-04-25T04:47:39.4677829Z adding 'torch/include/c10/util/Logging.h' 2025-04-25T04:47:39.4681935Z adding 'torch/include/c10/util/MathConstants.h' 2025-04-25T04:47:39.4686675Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-04-25T04:47:39.4691574Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-04-25T04:47:39.4695215Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-04-25T04:47:39.4698952Z adding 'torch/include/c10/util/Optional.h' 2025-04-25T04:47:39.4703509Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-04-25T04:47:39.4706857Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-04-25T04:47:39.4713466Z adding 'torch/include/c10/util/Registry.h' 2025-04-25T04:47:39.4716551Z adding 'torch/include/c10/util/ScopeExit.h' 2025-04-25T04:47:39.4720367Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-04-25T04:47:39.4738725Z adding 'torch/include/c10/util/SmallVector.h' 2025-04-25T04:47:39.4744640Z adding 'torch/include/c10/util/StringUtil.h' 2025-04-25T04:47:39.4748419Z adding 'torch/include/c10/util/Synchronized.h' 2025-04-25T04:47:39.4753289Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-04-25T04:47:39.4756516Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-04-25T04:47:39.4759807Z adding 'torch/include/c10/util/Type.h' 2025-04-25T04:47:39.4764101Z adding 'torch/include/c10/util/TypeCast.h' 2025-04-25T04:47:39.4768361Z adding 'torch/include/c10/util/TypeIndex.h' 2025-04-25T04:47:39.4775032Z adding 'torch/include/c10/util/TypeList.h' 2025-04-25T04:47:39.4779415Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-04-25T04:47:39.4783933Z adding 'torch/include/c10/util/TypeTraits.h' 2025-04-25T04:47:39.4787259Z adding 'torch/include/c10/util/Unicode.h' 2025-04-25T04:47:39.4791392Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-04-25T04:47:39.4794785Z adding 'torch/include/c10/util/Unroll.h' 2025-04-25T04:47:39.4798541Z adding 'torch/include/c10/util/WaitCounter.h' 2025-04-25T04:47:39.4801932Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-04-25T04:47:39.4805592Z adding 'torch/include/c10/util/accumulate.h' 2025-04-25T04:47:39.4809774Z adding 'torch/include/c10/util/bit_cast.h' 2025-04-25T04:47:39.4813120Z adding 'torch/include/c10/util/bits.h' 2025-04-25T04:47:39.4820943Z adding 'torch/include/c10/util/complex.h' 2025-04-25T04:47:39.4826481Z adding 'torch/include/c10/util/complex_math.h' 2025-04-25T04:47:39.4830176Z adding 'torch/include/c10/util/complex_utils.h' 2025-04-25T04:47:39.4840778Z adding 'torch/include/c10/util/copysign.h' 2025-04-25T04:47:39.4844129Z adding 'torch/include/c10/util/env.h' 2025-04-25T04:47:39.4847224Z adding 'torch/include/c10/util/error.h' 2025-04-25T04:47:39.4864209Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-04-25T04:47:39.4869149Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-04-25T04:47:39.4872968Z adding 'torch/include/c10/util/generic_math.h' 2025-04-25T04:47:39.4879052Z adding 'torch/include/c10/util/hash.h' 2025-04-25T04:47:39.4885551Z adding 'torch/include/c10/util/int128.h' 2025-04-25T04:47:39.4899966Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-04-25T04:47:39.4905123Z adding 'torch/include/c10/util/irange.h' 2025-04-25T04:47:39.4916092Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-04-25T04:47:39.4920873Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-04-25T04:47:39.4926029Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-04-25T04:47:39.4929430Z adding 'torch/include/c10/util/numa.h' 2025-04-25T04:47:39.4948723Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-04-25T04:47:39.4954221Z adding 'torch/include/c10/util/overflows.h' 2025-04-25T04:47:39.4957541Z adding 'torch/include/c10/util/overloaded.h' 2025-04-25T04:47:39.4960541Z adding 'torch/include/c10/util/python_stub.h' 2025-04-25T04:47:39.4963622Z adding 'torch/include/c10/util/qint32.h' 2025-04-25T04:47:39.4966933Z adding 'torch/include/c10/util/qint8.h' 2025-04-25T04:47:39.4970066Z adding 'torch/include/c10/util/quint2x4.h' 2025-04-25T04:47:39.4973394Z adding 'torch/include/c10/util/quint4x2.h' 2025-04-25T04:47:39.4977106Z adding 'torch/include/c10/util/quint8.h' 2025-04-25T04:47:39.4980410Z adding 'torch/include/c10/util/safe_numerics.h' 2025-04-25T04:47:39.4984777Z adding 'torch/include/c10/util/signal_handler.h' 2025-04-25T04:47:39.4994878Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-04-25T04:47:39.4998933Z adding 'torch/include/c10/util/ssize.h' 2025-04-25T04:47:39.5002505Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-04-25T04:47:39.5007454Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-04-25T04:47:39.5010904Z adding 'torch/include/c10/util/strides.h' 2025-04-25T04:47:39.5014222Z adding 'torch/include/c10/util/string_utils.h' 2025-04-25T04:47:39.5021476Z adding 'torch/include/c10/util/string_view.h' 2025-04-25T04:47:39.5031963Z adding 'torch/include/c10/util/strong_type.h' 2025-04-25T04:47:39.5036811Z adding 'torch/include/c10/util/tempfile.h' 2025-04-25T04:47:39.5039977Z adding 'torch/include/c10/util/thread_name.h' 2025-04-25T04:47:39.5049995Z adding 'torch/include/c10/util/typeid.h' 2025-04-25T04:47:39.5054143Z adding 'torch/include/c10/util/win32-headers.h' 2025-04-25T04:47:39.5059098Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-04-25T04:47:39.5063979Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-04-25T04:47:39.5067736Z adding 'torch/include/c10/xpu/XPUException.h' 2025-04-25T04:47:39.5071248Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-04-25T04:47:39.5074534Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-04-25T04:47:39.5079717Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-04-25T04:47:39.5085609Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-04-25T04:47:39.5090546Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-04-25T04:47:39.5095594Z adding 'torch/include/caffe2/core/common.h' 2025-04-25T04:47:39.5099969Z adding 'torch/include/caffe2/core/macros.h' 2025-04-25T04:47:39.5103071Z adding 'torch/include/caffe2/core/timer.h' 2025-04-25T04:47:39.5109094Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-04-25T04:47:39.5113673Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-04-25T04:47:39.5117670Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-04-25T04:47:39.5169042Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-04-25T04:47:39.5169196Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-04-25T04:47:39.5170164Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-04-25T04:47:39.5176180Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-04-25T04:47:39.5188386Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-04-25T04:47:39.5188581Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-04-25T04:47:39.5189646Z adding 'torch/include/caffe2/serialize/versions.h' 2025-04-25T04:47:39.5194943Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-04-25T04:47:39.5198346Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-04-25T04:47:39.5201993Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-04-25T04:47:39.5206937Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-04-25T04:47:39.5210097Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-04-25T04:47:39.5216656Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-04-25T04:47:39.5220661Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-04-25T04:47:39.5225171Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-04-25T04:47:39.5228639Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-04-25T04:47:39.5234146Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-04-25T04:47:39.5248177Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-04-25T04:47:39.5252952Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-04-25T04:47:39.5256745Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-04-25T04:47:39.5262120Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-04-25T04:47:39.5265842Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-04-25T04:47:39.5271205Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-04-25T04:47:39.5274687Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-04-25T04:47:39.5278509Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-04-25T04:47:39.5282009Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-04-25T04:47:39.5285867Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-04-25T04:47:39.5290954Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-04-25T04:47:39.5296286Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-04-25T04:47:39.5300726Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-04-25T04:47:39.5306289Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-04-25T04:47:39.5312395Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-04-25T04:47:39.5316706Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-04-25T04:47:39.5320097Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-04-25T04:47:39.5323341Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-04-25T04:47:39.5327939Z adding 'torch/include/fbgemm/Types.h' 2025-04-25T04:47:39.5333649Z adding 'torch/include/fbgemm/Utils.h' 2025-04-25T04:47:39.5337619Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-04-25T04:47:39.5341244Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-04-25T04:47:39.5344597Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-04-25T04:47:39.5350520Z adding 'torch/include/fmt/args.h' 2025-04-25T04:47:39.5390263Z adding 'torch/include/fmt/base.h' 2025-04-25T04:47:39.5421163Z adding 'torch/include/fmt/chrono.h' 2025-04-25T04:47:39.5432114Z adding 'torch/include/fmt/color.h' 2025-04-25T04:47:39.5440260Z adding 'torch/include/fmt/compile.h' 2025-04-25T04:47:39.5443938Z adding 'torch/include/fmt/core.h' 2025-04-25T04:47:39.5476368Z adding 'torch/include/fmt/format-inl.h' 2025-04-25T04:47:39.5540916Z adding 'torch/include/fmt/format.h' 2025-04-25T04:47:39.5551731Z adding 'torch/include/fmt/os.h' 2025-04-25T04:47:39.5556670Z adding 'torch/include/fmt/ostream.h' 2025-04-25T04:47:39.5566212Z adding 'torch/include/fmt/printf.h' 2025-04-25T04:47:39.5576375Z adding 'torch/include/fmt/ranges.h' 2025-04-25T04:47:39.5585856Z adding 'torch/include/fmt/std.h' 2025-04-25T04:47:39.5592343Z adding 'torch/include/fmt/xchar.h' 2025-04-25T04:47:39.5597349Z adding 'torch/include/fp16/bitcasts.h' 2025-04-25T04:47:39.5604331Z adding 'torch/include/fp16/fp16.h' 2025-04-25T04:47:39.5609219Z adding 'torch/include/fp16/psimd.h' 2025-04-25T04:47:39.5616557Z adding 'torch/include/google/protobuf/any.h' 2025-04-25T04:47:39.5623065Z adding 'torch/include/google/protobuf/any.pb.h' 2025-04-25T04:47:39.5636009Z adding 'torch/include/google/protobuf/api.pb.h' 2025-04-25T04:47:39.5650210Z adding 'torch/include/google/protobuf/arena.h' 2025-04-25T04:47:39.5658621Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-04-25T04:47:39.5666782Z adding 'torch/include/google/protobuf/arenastring.h' 2025-04-25T04:47:39.5702578Z adding 'torch/include/google/protobuf/descriptor.h' 2025-04-25T04:47:39.5789782Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-04-25T04:47:39.5810294Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-04-25T04:47:39.5815801Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-04-25T04:47:39.5822113Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-04-25T04:47:39.5827545Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-04-25T04:47:39.5851819Z adding 'torch/include/google/protobuf/extension_set.h' 2025-04-25T04:47:39.5859334Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-04-25T04:47:39.5865099Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-04-25T04:47:39.5869686Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-04-25T04:47:39.5873735Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-04-25T04:47:39.5880501Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-04-25T04:47:39.5887260Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-04-25T04:47:39.5893091Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-04-25T04:47:39.5897245Z adding 'torch/include/google/protobuf/has_bits.h' 2025-04-25T04:47:39.5902386Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-04-25T04:47:39.5907462Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-04-25T04:47:39.5926296Z adding 'torch/include/google/protobuf/map.h' 2025-04-25T04:47:39.5933169Z adding 'torch/include/google/protobuf/map_entry.h' 2025-04-25T04:47:39.5943563Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-04-25T04:47:39.5955486Z adding 'torch/include/google/protobuf/map_field.h' 2025-04-25T04:47:39.5962776Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-04-25T04:47:39.5968260Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-04-25T04:47:39.5978632Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-04-25T04:47:39.6003710Z adding 'torch/include/google/protobuf/message.h' 2025-04-25T04:47:39.6017067Z adding 'torch/include/google/protobuf/message_lite.h' 2025-04-25T04:47:39.6021680Z adding 'torch/include/google/protobuf/metadata.h' 2025-04-25T04:47:39.6027079Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-04-25T04:47:39.6039315Z adding 'torch/include/google/protobuf/parse_context.h' 2025-04-25T04:47:39.6043923Z adding 'torch/include/google/protobuf/port.h' 2025-04-25T04:47:39.6052486Z adding 'torch/include/google/protobuf/reflection.h' 2025-04-25T04:47:39.6057342Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-04-25T04:47:39.6094318Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-04-25T04:47:39.6104500Z adding 'torch/include/google/protobuf/service.h' 2025-04-25T04:47:39.6110193Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-04-25T04:47:39.6123437Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-04-25T04:47:39.6136517Z adding 'torch/include/google/protobuf/text_format.h' 2025-04-25T04:47:39.6142626Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-04-25T04:47:39.6163240Z adding 'torch/include/google/protobuf/type.pb.h' 2025-04-25T04:47:39.6172936Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-04-25T04:47:39.6181805Z adding 'torch/include/google/protobuf/wire_format.h' 2025-04-25T04:47:39.6205089Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-04-25T04:47:39.6218094Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-04-25T04:47:39.6226224Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-04-25T04:47:39.6236396Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-04-25T04:47:39.6243995Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-04-25T04:47:39.6256278Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-04-25T04:47:39.6261747Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-04-25T04:47:39.6277578Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-04-25T04:47:39.6284599Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-04-25T04:47:39.6289493Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-04-25T04:47:39.6293731Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-04-25T04:47:39.6298549Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-04-25T04:47:39.6302817Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-04-25T04:47:39.6309805Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-04-25T04:47:39.6314107Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-04-25T04:47:39.6319150Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-04-25T04:47:39.6325764Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-04-25T04:47:39.6330982Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-04-25T04:47:39.6336663Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-04-25T04:47:39.6341727Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-04-25T04:47:39.6371434Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-04-25T04:47:39.6378000Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-04-25T04:47:39.6382943Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-04-25T04:47:39.6391428Z adding 'torch/include/google/protobuf/io/printer.h' 2025-04-25T04:47:39.6395115Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-04-25T04:47:39.6403491Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-04-25T04:47:39.6409876Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-04-25T04:47:39.6416425Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-04-25T04:47:39.6424390Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-04-25T04:47:39.6431978Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-04-25T04:47:39.6438114Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-04-25T04:47:39.6443371Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-04-25T04:47:39.6448537Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-04-25T04:47:39.6457328Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-04-25T04:47:39.6457737Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-04-25T04:47:39.6463330Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-04-25T04:47:39.6468021Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-04-25T04:47:39.6478885Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-04-25T04:47:39.6484367Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-04-25T04:47:39.6488233Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-04-25T04:47:39.6492557Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-04-25T04:47:39.6498843Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-04-25T04:47:39.6503515Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-04-25T04:47:39.6508006Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-04-25T04:47:39.6516383Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-04-25T04:47:39.6531248Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-04-25T04:47:39.6536913Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-04-25T04:47:39.6542781Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-04-25T04:47:39.6548785Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-04-25T04:47:39.6555249Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-04-25T04:47:39.6560738Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-04-25T04:47:39.6580729Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-04-25T04:47:39.6587875Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-04-25T04:47:39.6592303Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-04-25T04:47:39.6596233Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-04-25T04:47:39.6601574Z adding 'torch/include/kineto/AbstractConfig.h' 2025-04-25T04:47:39.6605999Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-04-25T04:47:39.6609460Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-04-25T04:47:39.6613130Z adding 'torch/include/kineto/ActivityType.h' 2025-04-25T04:47:39.6616578Z adding 'torch/include/kineto/ClientInterface.h' 2025-04-25T04:47:39.6625357Z adding 'torch/include/kineto/Config.h' 2025-04-25T04:47:39.6631319Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-04-25T04:47:39.6636707Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-04-25T04:47:39.6641142Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-04-25T04:47:39.6644783Z adding 'torch/include/kineto/ITraceActivity.h' 2025-04-25T04:47:39.6647792Z adding 'torch/include/kineto/LoggingAPI.h' 2025-04-25T04:47:39.6651176Z adding 'torch/include/kineto/ThreadUtil.h' 2025-04-25T04:47:39.6654427Z adding 'torch/include/kineto/TraceSpan.h' 2025-04-25T04:47:39.6658934Z adding 'torch/include/kineto/libkineto.h' 2025-04-25T04:47:39.6662972Z adding 'torch/include/kineto/output_base.h' 2025-04-25T04:47:39.6666207Z adding 'torch/include/kineto/time_since_epoch.h' 2025-04-25T04:47:39.6675230Z adding 'torch/include/mimalloc-1.8/mimalloc-new-delete.h' 2025-04-25T04:47:39.6676464Z adding 'torch/include/mimalloc-1.8/mimalloc-override.h' 2025-04-25T04:47:39.6686974Z adding 'torch/include/mimalloc-1.8/mimalloc.h' 2025-04-25T04:47:39.6902194Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-04-25T04:47:39.7023060Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-04-25T04:47:39.7043496Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-04-25T04:47:39.7050812Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-04-25T04:47:39.7056612Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-04-25T04:47:39.7061612Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-04-25T04:47:39.7065700Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-04-25T04:47:39.7076643Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-04-25T04:47:39.7100137Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-04-25T04:47:39.7106377Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-04-25T04:47:39.7111036Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-04-25T04:47:39.7115374Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-04-25T04:47:39.7119696Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-04-25T04:47:39.7126661Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-04-25T04:47:39.7132718Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-04-25T04:47:39.7140032Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-04-25T04:47:39.7144282Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-04-25T04:47:39.7149144Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-04-25T04:47:39.7155837Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-04-25T04:47:39.7159821Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-04-25T04:47:39.7164012Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-04-25T04:47:39.7168204Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-04-25T04:47:39.7172203Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-04-25T04:47:39.7203820Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-04-25T04:47:39.7212066Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-04-25T04:47:39.7219191Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-04-25T04:47:39.7223836Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-04-25T04:47:39.7227320Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-04-25T04:47:39.7231388Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-04-25T04:47:39.7242982Z adding 'torch/include/pybind11/attr.h' 2025-04-25T04:47:39.7249205Z adding 'torch/include/pybind11/buffer_info.h' 2025-04-25T04:47:39.7276985Z adding 'torch/include/pybind11/cast.h' 2025-04-25T04:47:39.7283933Z adding 'torch/include/pybind11/chrono.h' 2025-04-25T04:47:39.7287453Z adding 'torch/include/pybind11/common.h' 2025-04-25T04:47:39.7291235Z adding 'torch/include/pybind11/complex.h' 2025-04-25T04:47:39.7294512Z adding 'torch/include/pybind11/eigen.h' 2025-04-25T04:47:39.7301206Z adding 'torch/include/pybind11/embed.h' 2025-04-25T04:47:39.7305619Z adding 'torch/include/pybind11/eval.h' 2025-04-25T04:47:39.7310451Z adding 'torch/include/pybind11/functional.h' 2025-04-25T04:47:39.7315551Z adding 'torch/include/pybind11/gil.h' 2025-04-25T04:47:39.7319983Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-04-25T04:47:39.7325526Z adding 'torch/include/pybind11/iostream.h' 2025-04-25T04:47:39.7354345Z adding 'torch/include/pybind11/numpy.h' 2025-04-25T04:47:39.7361295Z adding 'torch/include/pybind11/operators.h' 2025-04-25T04:47:39.7365230Z adding 'torch/include/pybind11/options.h' 2025-04-25T04:47:39.7409300Z adding 'torch/include/pybind11/pybind11.h' 2025-04-25T04:47:39.7445616Z adding 'torch/include/pybind11/pytypes.h' 2025-04-25T04:47:39.7454718Z adding 'torch/include/pybind11/stl.h' 2025-04-25T04:47:39.7465351Z adding 'torch/include/pybind11/stl_bind.h' 2025-04-25T04:47:39.7469978Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-04-25T04:47:39.7474392Z adding 'torch/include/pybind11/typing.h' 2025-04-25T04:47:39.7488234Z adding 'torch/include/pybind11/detail/class.h' 2025-04-25T04:47:39.7508834Z adding 'torch/include/pybind11/detail/common.h' 2025-04-25T04:47:39.7514016Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-04-25T04:47:39.7518583Z adding 'torch/include/pybind11/detail/descr.h' 2025-04-25T04:47:39.7522736Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-04-25T04:47:39.7530330Z adding 'torch/include/pybind11/detail/init.h' 2025-04-25T04:47:39.7543555Z adding 'torch/include/pybind11/detail/internals.h' 2025-04-25T04:47:39.7563644Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-04-25T04:47:39.7568645Z adding 'torch/include/pybind11/detail/typeid.h' 2025-04-25T04:47:39.7572436Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-04-25T04:47:39.7576734Z adding 'torch/include/pybind11/eigen/common.h' 2025-04-25T04:47:39.7589078Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-04-25T04:47:39.7596783Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-04-25T04:47:39.7602414Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-04-25T04:47:39.7612038Z adding 'torch/include/torch/custom_class.h' 2025-04-25T04:47:39.7617910Z adding 'torch/include/torch/custom_class_detail.h' 2025-04-25T04:47:39.7621511Z adding 'torch/include/torch/extension.h' 2025-04-25T04:47:39.7638157Z adding 'torch/include/torch/library.h' 2025-04-25T04:47:39.7642508Z adding 'torch/include/torch/script.h' 2025-04-25T04:47:39.7648129Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-04-25T04:47:39.7651544Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-04-25T04:47:39.7654725Z adding 'torch/include/torch/csrc/Device.h' 2025-04-25T04:47:39.7657969Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-04-25T04:47:39.7661390Z adding 'torch/include/torch/csrc/Dtype.h' 2025-04-25T04:47:39.7664787Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-04-25T04:47:39.7668119Z adding 'torch/include/torch/csrc/Event.h' 2025-04-25T04:47:39.7675121Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-04-25T04:47:39.7678638Z adding 'torch/include/torch/csrc/Export.h' 2025-04-25T04:47:39.7682135Z adding 'torch/include/torch/csrc/Generator.h' 2025-04-25T04:47:39.7685358Z adding 'torch/include/torch/csrc/Layout.h' 2025-04-25T04:47:39.7689003Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-04-25T04:47:39.7692294Z adding 'torch/include/torch/csrc/Module.h' 2025-04-25T04:47:39.7695435Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-04-25T04:47:39.7698805Z adding 'torch/include/torch/csrc/QScheme.h' 2025-04-25T04:47:39.7702164Z adding 'torch/include/torch/csrc/Size.h' 2025-04-25T04:47:39.7705814Z adding 'torch/include/torch/csrc/Storage.h' 2025-04-25T04:47:39.7708909Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-04-25T04:47:39.7712061Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-04-25T04:47:39.7715238Z adding 'torch/include/torch/csrc/Stream.h' 2025-04-25T04:47:39.7718566Z adding 'torch/include/torch/csrc/THConcat.h' 2025-04-25T04:47:39.7721763Z adding 'torch/include/torch/csrc/THP.h' 2025-04-25T04:47:39.7724914Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-04-25T04:47:39.7728137Z adding 'torch/include/torch/csrc/Types.h' 2025-04-25T04:47:39.7731449Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-04-25T04:47:39.7734456Z adding 'torch/include/torch/csrc/itt.h' 2025-04-25T04:47:39.7737542Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-04-25T04:47:39.7740701Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-04-25T04:47:39.7743947Z adding 'torch/include/torch/csrc/python_headers.h' 2025-04-25T04:47:39.7747218Z adding 'torch/include/torch/csrc/serialization.h' 2025-04-25T04:47:39.7752006Z adding 'torch/include/torch/csrc/utils.h' 2025-04-25T04:47:39.7757880Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-04-25T04:47:39.7761245Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-04-25T04:47:39.7765114Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-04-25T04:47:39.7767825Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-04-25T04:47:39.7770893Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-04-25T04:47:39.7775476Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-04-25T04:47:39.7780331Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-04-25T04:47:39.7785221Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-04-25T04:47:39.7789203Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-04-25T04:47:39.7792621Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-04-25T04:47:39.7796049Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-04-25T04:47:39.7799834Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-04-25T04:47:39.7802997Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-04-25T04:47:39.7806077Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-04-25T04:47:39.7812831Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-04-25T04:47:39.7818581Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-04-25T04:47:39.7826620Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-04-25T04:47:39.7827154Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-04-25T04:47:39.7834059Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-04-25T04:47:39.7838122Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-04-25T04:47:39.7841800Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-04-25T04:47:39.7845820Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-04-25T04:47:39.7849297Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-04-25T04:47:39.7852483Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-04-25T04:47:39.7857136Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-04-25T04:47:39.7861111Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-04-25T04:47:39.7864283Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-04-25T04:47:39.7867691Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-04-25T04:47:39.7872017Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-04-25T04:47:39.7875289Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-04-25T04:47:39.7878380Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-04-25T04:47:39.7881773Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-04-25T04:47:39.7888284Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-04-25T04:47:39.7892434Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-04-25T04:47:39.7896476Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-04-25T04:47:39.7901561Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-04-25T04:47:39.7910966Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-04-25T04:47:39.7915732Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-04-25T04:47:39.7919357Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-04-25T04:47:39.7923117Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-04-25T04:47:39.7927304Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-04-25T04:47:39.7930802Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-04-25T04:47:39.7935626Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-04-25T04:47:39.7939508Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-04-25T04:47:39.7944780Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-04-25T04:47:39.7948666Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-04-25T04:47:39.7952095Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-04-25T04:47:39.7955983Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-04-25T04:47:39.7959591Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-04-25T04:47:39.7963064Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-04-25T04:47:39.7966416Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-04-25T04:47:39.7970062Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-04-25T04:47:39.7974451Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-04-25T04:47:39.7977995Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-04-25T04:47:39.7981594Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-04-25T04:47:39.7985180Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-04-25T04:47:39.7990086Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-04-25T04:47:39.7996684Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-04-25T04:47:39.8000790Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-04-25T04:47:39.8006061Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-04-25T04:47:39.8009586Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-04-25T04:47:39.8013740Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-04-25T04:47:39.8023991Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-04-25T04:47:39.8028190Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-04-25T04:47:39.8031645Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-04-25T04:47:39.8035540Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-04-25T04:47:39.8040624Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-04-25T04:47:39.8044173Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-04-25T04:47:39.8053515Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-04-25T04:47:39.8058209Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-04-25T04:47:39.8062681Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-04-25T04:47:39.8066763Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-04-25T04:47:39.8070926Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-04-25T04:47:39.8075778Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-04-25T04:47:39.8079769Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-04-25T04:47:39.8083474Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-04-25T04:47:39.8087017Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-04-25T04:47:39.8094749Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-04-25T04:47:39.8100089Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-04-25T04:47:39.8104106Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-04-25T04:47:39.8107727Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-04-25T04:47:39.8115523Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-04-25T04:47:39.8121667Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-04-25T04:47:39.8126177Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-04-25T04:47:39.8131565Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-04-25T04:47:39.8145518Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-04-25T04:47:39.8146184Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-04-25T04:47:39.8150948Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-04-25T04:47:39.8155254Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-04-25T04:47:39.8161457Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-04-25T04:47:39.8166087Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-04-25T04:47:39.8170085Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-04-25T04:47:39.8191968Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-04-25T04:47:39.8192553Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-04-25T04:47:39.8193137Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-04-25T04:47:39.8193735Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-04-25T04:47:39.8198664Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-04-25T04:47:39.8204484Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-04-25T04:47:39.8208851Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-04-25T04:47:39.8213338Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-04-25T04:47:39.8220660Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-04-25T04:47:39.8228062Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-04-25T04:47:39.8231976Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-04-25T04:47:39.8236991Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-04-25T04:47:39.8241600Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-04-25T04:47:39.8245603Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-04-25T04:47:39.8249170Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-04-25T04:47:39.8256814Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-04-25T04:47:39.8261903Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-04-25T04:47:39.8266138Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-04-25T04:47:39.8270484Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-04-25T04:47:39.8279150Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-04-25T04:47:39.8284895Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-04-25T04:47:39.8288980Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-04-25T04:47:39.8293266Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-04-25T04:47:39.8297668Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-04-25T04:47:39.8304710Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-04-25T04:47:39.8312170Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-04-25T04:47:39.8316179Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-04-25T04:47:39.8319898Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-04-25T04:47:39.8324728Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-04-25T04:47:39.8328723Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-04-25T04:47:39.8333215Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-04-25T04:47:39.8337396Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-04-25T04:47:39.8341477Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-04-25T04:47:39.8346721Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-04-25T04:47:39.8350595Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-04-25T04:47:39.8357710Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-04-25T04:47:39.8362597Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-04-25T04:47:39.8367033Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-04-25T04:47:39.8370787Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-04-25T04:47:39.8376279Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-04-25T04:47:39.8381414Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-04-25T04:47:39.8385328Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-04-25T04:47:39.8389236Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-04-25T04:47:39.8392875Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-04-25T04:47:39.8396934Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-04-25T04:47:39.8400509Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-04-25T04:47:39.8407759Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-04-25T04:47:39.8413215Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-04-25T04:47:39.8417221Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-04-25T04:47:39.8423782Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-04-25T04:47:39.8429064Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-04-25T04:47:39.8433186Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-04-25T04:47:39.8437457Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-04-25T04:47:39.8441437Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-04-25T04:47:39.8446675Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-04-25T04:47:39.8450919Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-04-25T04:47:39.8456841Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-04-25T04:47:39.8461503Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-04-25T04:47:39.8465834Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-04-25T04:47:39.8469731Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-04-25T04:47:39.8473230Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-04-25T04:47:39.8477095Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-04-25T04:47:39.8481273Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-04-25T04:47:39.8485468Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-04-25T04:47:39.8489489Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-04-25T04:47:39.8492933Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-04-25T04:47:39.8505043Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-04-25T04:47:39.8509233Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-04-25T04:47:39.8516015Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-04-25T04:47:39.8520184Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-04-25T04:47:39.8525300Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-04-25T04:47:39.8528637Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-04-25T04:47:39.8531983Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-04-25T04:47:39.8541453Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-04-25T04:47:39.8546217Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-04-25T04:47:39.8552514Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-04-25T04:47:39.8559241Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-04-25T04:47:39.8573645Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-04-25T04:47:39.8578407Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-04-25T04:47:39.8581604Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-04-25T04:47:39.8587563Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-04-25T04:47:39.8591565Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-04-25T04:47:39.8595912Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-04-25T04:47:39.8599367Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-04-25T04:47:39.8602723Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-04-25T04:47:39.8607983Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-04-25T04:47:39.8614381Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-04-25T04:47:39.8617844Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-04-25T04:47:39.8621613Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-04-25T04:47:39.8625148Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-04-25T04:47:39.8629064Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-04-25T04:47:39.8632721Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-04-25T04:47:39.8636372Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-04-25T04:47:39.8639149Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-04-25T04:47:39.8643775Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-04-25T04:47:39.8648055Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-04-25T04:47:39.8650849Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-04-25T04:47:39.8654435Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-04-25T04:47:39.8657235Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-04-25T04:47:39.8660564Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-04-25T04:47:39.8664032Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-04-25T04:47:39.8667310Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-04-25T04:47:39.8670343Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-04-25T04:47:39.8673786Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-04-25T04:47:39.8683438Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-04-25T04:47:39.8685933Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-04-25T04:47:39.8686476Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-04-25T04:47:39.8691419Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-04-25T04:47:39.8694242Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-04-25T04:47:39.8697637Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-04-25T04:47:39.8714789Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-04-25T04:47:39.8719300Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-04-25T04:47:39.8727580Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-04-25T04:47:39.8731612Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-04-25T04:47:39.8735226Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-04-25T04:47:39.8738355Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-04-25T04:47:39.8744006Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-04-25T04:47:39.8748237Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-04-25T04:47:39.8804011Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-04-25T04:47:39.8819833Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-04-25T04:47:39.8826606Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-04-25T04:47:39.8831300Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-04-25T04:47:39.8834963Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-04-25T04:47:39.8843642Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-04-25T04:47:39.8849160Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-04-25T04:47:39.8853107Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-04-25T04:47:39.8856635Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-04-25T04:47:39.8860192Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-04-25T04:47:39.8863934Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-04-25T04:47:39.8867563Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-04-25T04:47:39.8871547Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-04-25T04:47:39.8877041Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-04-25T04:47:39.8880402Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-04-25T04:47:39.8883410Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-04-25T04:47:39.8886512Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-04-25T04:47:39.8889692Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-04-25T04:47:39.8892695Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-04-25T04:47:39.8896358Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-04-25T04:47:39.8899550Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-04-25T04:47:39.8902985Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-04-25T04:47:39.8907327Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-04-25T04:47:39.8910591Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-04-25T04:47:39.8913717Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-04-25T04:47:39.8918850Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-04-25T04:47:39.8922069Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-04-25T04:47:39.8925752Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-04-25T04:47:39.8931580Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-04-25T04:47:39.8936762Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-04-25T04:47:39.8943060Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-04-25T04:47:39.8947747Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-04-25T04:47:39.8951350Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-04-25T04:47:39.8955724Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-04-25T04:47:39.8959094Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-04-25T04:47:39.8962395Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-04-25T04:47:39.8965786Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-04-25T04:47:39.8969142Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-04-25T04:47:39.8973050Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-04-25T04:47:39.8977025Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-04-25T04:47:39.8980792Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-04-25T04:47:39.8984281Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-04-25T04:47:39.8987549Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-04-25T04:47:39.8995384Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-04-25T04:47:39.8999100Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-04-25T04:47:39.9004720Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h' 2025-04-25T04:47:39.9008950Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp' 2025-04-25T04:47:39.9012461Z adding 'torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp' 2025-04-25T04:47:39.9016778Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-04-25T04:47:39.9020503Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-04-25T04:47:39.9026146Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-04-25T04:47:39.9029561Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-04-25T04:47:39.9033204Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-04-25T04:47:39.9036216Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-04-25T04:47:39.9039877Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-04-25T04:47:39.9046521Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-04-25T04:47:39.9050684Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-04-25T04:47:39.9054793Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-04-25T04:47:39.9058870Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-04-25T04:47:39.9069364Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-04-25T04:47:39.9077182Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-04-25T04:47:39.9082897Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-04-25T04:47:39.9106177Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-04-25T04:47:39.9113315Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-04-25T04:47:39.9118076Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-04-25T04:47:39.9123459Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-04-25T04:47:39.9127702Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-04-25T04:47:39.9132414Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-04-25T04:47:39.9137078Z adding 'torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp' 2025-04-25T04:47:39.9142092Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-04-25T04:47:39.9146066Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-04-25T04:47:39.9151930Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-04-25T04:47:39.9156775Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-04-25T04:47:39.9160709Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-04-25T04:47:39.9165601Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-04-25T04:47:39.9169301Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-04-25T04:47:39.9178630Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-04-25T04:47:39.9182913Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-04-25T04:47:39.9223552Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-04-25T04:47:39.9223999Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-04-25T04:47:39.9224536Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-04-25T04:47:39.9224967Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-04-25T04:47:39.9225484Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-04-25T04:47:39.9226003Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-04-25T04:47:39.9226447Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-04-25T04:47:39.9226959Z adding 'torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp' 2025-04-25T04:47:39.9227465Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-04-25T04:47:39.9227993Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-04-25T04:47:39.9230608Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-04-25T04:47:39.9242694Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-04-25T04:47:39.9248448Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-04-25T04:47:39.9251027Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-04-25T04:47:39.9254694Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-04-25T04:47:39.9259652Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-04-25T04:47:39.9263147Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-04-25T04:47:39.9266641Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-04-25T04:47:39.9271119Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-04-25T04:47:39.9275934Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-04-25T04:47:39.9278681Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-04-25T04:47:39.9282762Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-04-25T04:47:39.9285981Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-04-25T04:47:39.9289420Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-04-25T04:47:39.9294203Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-04-25T04:47:39.9299175Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-04-25T04:47:39.9303503Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-04-25T04:47:39.9307278Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-04-25T04:47:39.9310939Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-04-25T04:47:39.9314448Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-04-25T04:47:39.9317644Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-04-25T04:47:39.9322129Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-04-25T04:47:39.9325748Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-04-25T04:47:39.9329384Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-04-25T04:47:39.9333148Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-04-25T04:47:39.9336169Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-04-25T04:47:39.9343464Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-04-25T04:47:39.9347259Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-04-25T04:47:39.9355568Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-04-25T04:47:39.9364368Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-04-25T04:47:39.9368948Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-04-25T04:47:39.9372900Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-04-25T04:47:39.9376560Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-04-25T04:47:39.9380033Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-04-25T04:47:39.9388389Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-04-25T04:47:39.9393137Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-04-25T04:47:39.9396783Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-04-25T04:47:39.9400299Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-04-25T04:47:39.9403924Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-04-25T04:47:39.9407386Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-04-25T04:47:39.9411379Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-04-25T04:47:39.9416041Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-04-25T04:47:39.9420640Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-04-25T04:47:39.9425038Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-04-25T04:47:39.9430930Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-04-25T04:47:39.9434264Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-04-25T04:47:39.9439039Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-04-25T04:47:39.9457126Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-04-25T04:47:39.9461592Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-04-25T04:47:39.9464983Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-04-25T04:47:39.9468406Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-04-25T04:47:39.9472335Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-04-25T04:47:39.9475903Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-04-25T04:47:39.9479114Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-04-25T04:47:39.9483657Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-04-25T04:47:39.9487805Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-04-25T04:47:39.9491616Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-04-25T04:47:39.9495740Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-04-25T04:47:39.9499235Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-04-25T04:47:39.9502582Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-04-25T04:47:39.9506769Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-04-25T04:47:39.9518981Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-04-25T04:47:39.9523373Z adding 'torch/include/torch/csrc/fx/node.h' 2025-04-25T04:47:39.9532855Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-04-25T04:47:39.9536483Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-04-25T04:47:39.9540459Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-04-25T04:47:39.9545165Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-04-25T04:47:39.9550211Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-04-25T04:47:39.9554590Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-04-25T04:47:39.9558308Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-04-25T04:47:39.9561023Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-04-25T04:47:39.9564179Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-04-25T04:47:39.9567170Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-04-25T04:47:39.9571808Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-04-25T04:47:39.9575374Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-04-25T04:47:39.9580289Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-04-25T04:47:39.9584091Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-04-25T04:47:39.9587606Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-04-25T04:47:39.9591129Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-04-25T04:47:39.9594362Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-04-25T04:47:39.9600021Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-04-25T04:47:39.9603562Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-04-25T04:47:39.9607434Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-04-25T04:47:39.9612467Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-04-25T04:47:39.9617164Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-04-25T04:47:39.9626575Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-04-25T04:47:39.9637305Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-04-25T04:47:39.9641745Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-04-25T04:47:39.9646705Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-04-25T04:47:39.9651850Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-04-25T04:47:39.9656546Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-04-25T04:47:39.9660775Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-04-25T04:47:39.9664338Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-04-25T04:47:39.9669139Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-04-25T04:47:39.9673047Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-04-25T04:47:39.9676529Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-04-25T04:47:39.9679914Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-04-25T04:47:39.9684540Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-04-25T04:47:39.9700978Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-04-25T04:47:39.9701313Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-04-25T04:47:39.9705121Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-04-25T04:47:39.9713496Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-04-25T04:47:39.9721818Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-04-25T04:47:39.9727432Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-04-25T04:47:39.9731759Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-04-25T04:47:39.9735338Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-04-25T04:47:39.9738668Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-04-25T04:47:39.9741876Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-04-25T04:47:39.9744826Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-04-25T04:47:39.9748729Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-04-25T04:47:39.9751835Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-04-25T04:47:39.9755066Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-04-25T04:47:39.9758847Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-04-25T04:47:39.9763942Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-04-25T04:47:39.9767638Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-04-25T04:47:39.9770917Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-04-25T04:47:39.9777983Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-04-25T04:47:39.9784145Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-04-25T04:47:39.9787386Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-04-25T04:47:39.9797702Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-04-25T04:47:39.9802999Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-04-25T04:47:39.9808238Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-04-25T04:47:39.9813821Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-04-25T04:47:39.9817823Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-04-25T04:47:39.9821435Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-04-25T04:47:39.9825178Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-04-25T04:47:39.9828364Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-04-25T04:47:39.9831755Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-04-25T04:47:39.9834944Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-04-25T04:47:39.9838040Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-04-25T04:47:39.9842931Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-04-25T04:47:39.9847167Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-04-25T04:47:39.9850515Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-04-25T04:47:39.9853722Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-04-25T04:47:39.9857047Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-04-25T04:47:39.9860447Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-04-25T04:47:39.9865303Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-04-25T04:47:39.9869546Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-04-25T04:47:39.9873884Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-04-25T04:47:39.9878615Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-04-25T04:47:39.9883615Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-04-25T04:47:39.9888117Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-04-25T04:47:39.9891466Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-04-25T04:47:39.9894975Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-04-25T04:47:39.9898304Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-04-25T04:47:39.9901563Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-04-25T04:47:39.9905395Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-04-25T04:47:39.9909033Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-04-25T04:47:39.9912656Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-04-25T04:47:39.9917356Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-04-25T04:47:39.9921197Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-04-25T04:47:39.9925134Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-04-25T04:47:39.9928414Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-04-25T04:47:39.9932717Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-04-25T04:47:39.9936597Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-04-25T04:47:39.9940841Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-04-25T04:47:39.9945357Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-04-25T04:47:39.9951382Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-04-25T04:47:39.9958065Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-04-25T04:47:39.9961771Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-04-25T04:47:39.9965017Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-04-25T04:47:39.9968471Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-04-25T04:47:39.9972376Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-04-25T04:47:39.9975601Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-04-25T04:47:39.9979207Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-04-25T04:47:39.9983415Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-04-25T04:47:39.9986812Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-04-25T04:47:39.9990911Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-04-25T04:47:39.9994473Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-04-25T04:47:39.9999569Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-04-25T04:47:40.0004331Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-04-25T04:47:40.0007775Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-04-25T04:47:40.0013545Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-04-25T04:47:40.0017119Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-04-25T04:47:40.0020522Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-04-25T04:47:40.0024085Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-04-25T04:47:40.0027432Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-04-25T04:47:40.0030899Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-04-25T04:47:40.0034122Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-04-25T04:47:40.0037361Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-04-25T04:47:40.0046276Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-04-25T04:47:40.0050497Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-04-25T04:47:40.0054008Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-04-25T04:47:40.0057890Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-04-25T04:47:40.0061515Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-04-25T04:47:40.0065113Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-04-25T04:47:40.0068850Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-04-25T04:47:40.0072692Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-04-25T04:47:40.0076272Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-04-25T04:47:40.0080051Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-04-25T04:47:40.0086904Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-04-25T04:47:40.0090912Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-04-25T04:47:40.0094082Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-04-25T04:47:40.0105310Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-04-25T04:47:40.0111724Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-04-25T04:47:40.0117227Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-04-25T04:47:40.0129846Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-04-25T04:47:40.0134346Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-04-25T04:47:40.0143316Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-04-25T04:47:40.0148657Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-04-25T04:47:40.0151904Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-04-25T04:47:40.0156623Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-04-25T04:47:40.0160246Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-04-25T04:47:40.0182620Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-04-25T04:47:40.0188308Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-04-25T04:47:40.0201860Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-04-25T04:47:40.0202007Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-04-25T04:47:40.0202177Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-04-25T04:47:40.0205327Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-04-25T04:47:40.0209959Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-04-25T04:47:40.0214383Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-04-25T04:47:40.0218063Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-04-25T04:47:40.0222152Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-04-25T04:47:40.0227268Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-04-25T04:47:40.0231797Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-04-25T04:47:40.0235333Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-04-25T04:47:40.0239496Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-04-25T04:47:40.0243719Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-04-25T04:47:40.0247204Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-04-25T04:47:40.0250607Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-04-25T04:47:40.0254338Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-04-25T04:47:40.0257297Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-04-25T04:47:40.0262074Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-04-25T04:47:40.0266238Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-04-25T04:47:40.0269696Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-04-25T04:47:40.0273098Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-04-25T04:47:40.0276314Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-04-25T04:47:40.0280425Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-04-25T04:47:40.0283890Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-04-25T04:47:40.0287541Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-04-25T04:47:40.0291254Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-04-25T04:47:40.0294747Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-04-25T04:47:40.0298086Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-04-25T04:47:40.0302504Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-04-25T04:47:40.0305955Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-04-25T04:47:40.0309774Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-04-25T04:47:40.0313257Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-04-25T04:47:40.0317624Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-04-25T04:47:40.0321331Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-04-25T04:47:40.0324539Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-04-25T04:47:40.0328859Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-04-25T04:47:40.0332372Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-04-25T04:47:40.0335571Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-04-25T04:47:40.0339299Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-04-25T04:47:40.0343781Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-04-25T04:47:40.0348279Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-04-25T04:47:40.0351942Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-04-25T04:47:40.0356626Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-04-25T04:47:40.0360131Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-04-25T04:47:40.0363552Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-04-25T04:47:40.0368392Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-04-25T04:47:40.0372852Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-04-25T04:47:40.0376156Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-04-25T04:47:40.0379633Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-04-25T04:47:40.0383243Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-04-25T04:47:40.0388938Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-04-25T04:47:40.0392076Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-04-25T04:47:40.0395180Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-04-25T04:47:40.0398553Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-04-25T04:47:40.0401647Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-04-25T04:47:40.0404842Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-04-25T04:47:40.0408010Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-04-25T04:47:40.0410953Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-04-25T04:47:40.0414076Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-04-25T04:47:40.0417335Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-04-25T04:47:40.0421108Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-04-25T04:47:40.0424293Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-04-25T04:47:40.0427398Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-04-25T04:47:40.0430863Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-04-25T04:47:40.0434175Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-04-25T04:47:40.0437267Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-04-25T04:47:40.0440720Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-04-25T04:47:40.0444018Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-04-25T04:47:40.0448189Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-04-25T04:47:40.0451460Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-04-25T04:47:40.0454890Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-04-25T04:47:40.0458261Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-04-25T04:47:40.0462201Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-04-25T04:47:40.0465638Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-04-25T04:47:40.0478691Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-04-25T04:47:40.0479153Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-04-25T04:47:40.0479380Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-04-25T04:47:40.0479635Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-04-25T04:47:40.0482163Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-04-25T04:47:40.0485532Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-04-25T04:47:40.0488936Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-04-25T04:47:40.0492723Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-04-25T04:47:40.0495367Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-04-25T04:47:40.0498752Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-04-25T04:47:40.0501956Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-04-25T04:47:40.0505650Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-04-25T04:47:40.0509125Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-04-25T04:47:40.0512502Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-04-25T04:47:40.0515883Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-04-25T04:47:40.0518906Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-04-25T04:47:40.0522518Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-04-25T04:47:40.0525456Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-04-25T04:47:40.0528618Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-04-25T04:47:40.0531675Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-04-25T04:47:40.0534924Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-04-25T04:47:40.0538212Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-04-25T04:47:40.0541518Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-04-25T04:47:40.0545120Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-04-25T04:47:40.0548497Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-04-25T04:47:40.0551933Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-04-25T04:47:40.0555142Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-04-25T04:47:40.0558568Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-04-25T04:47:40.0562010Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-04-25T04:47:40.0565333Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-04-25T04:47:40.0568620Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-04-25T04:47:40.0571816Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-04-25T04:47:40.0575448Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-04-25T04:47:40.0578682Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-04-25T04:47:40.0583468Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-04-25T04:47:40.0587001Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-04-25T04:47:40.0590318Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-04-25T04:47:40.0593759Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-04-25T04:47:40.0597764Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-04-25T04:47:40.0600923Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-04-25T04:47:40.0604178Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-04-25T04:47:40.0607069Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-04-25T04:47:40.0610285Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-04-25T04:47:40.0613613Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-04-25T04:47:40.0616880Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-04-25T04:47:40.0620152Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-04-25T04:47:40.0624195Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-04-25T04:47:40.0627693Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-04-25T04:47:40.0630820Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-04-25T04:47:40.0634114Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-04-25T04:47:40.0637603Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-04-25T04:47:40.0641199Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-04-25T04:47:40.0644777Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-04-25T04:47:40.0649388Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-04-25T04:47:40.0653273Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-04-25T04:47:40.0656902Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-04-25T04:47:40.0661130Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-04-25T04:47:40.0665080Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-04-25T04:47:40.0668805Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-04-25T04:47:40.0672526Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-04-25T04:47:40.0676004Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-04-25T04:47:40.0679369Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-04-25T04:47:40.0682562Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-04-25T04:47:40.0687033Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-04-25T04:47:40.0698358Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-04-25T04:47:40.0698566Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-04-25T04:47:40.0700008Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-04-25T04:47:40.0704623Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-04-25T04:47:40.0706952Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-04-25T04:47:40.0710701Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-04-25T04:47:40.0713613Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-04-25T04:47:40.0717476Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-04-25T04:47:40.0720674Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-04-25T04:47:40.0724445Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-04-25T04:47:40.0727754Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-04-25T04:47:40.0731101Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-04-25T04:47:40.0734517Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-04-25T04:47:40.0737564Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-04-25T04:47:40.0741027Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-04-25T04:47:40.0744077Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-04-25T04:47:40.0747302Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-04-25T04:47:40.0750760Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-04-25T04:47:40.0755159Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-04-25T04:47:40.0758590Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-04-25T04:47:40.0762641Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-04-25T04:47:40.0766218Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-04-25T04:47:40.0770041Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-04-25T04:47:40.0773621Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-04-25T04:47:40.0778104Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-04-25T04:47:40.0782134Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-04-25T04:47:40.0785280Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-04-25T04:47:40.0790013Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-04-25T04:47:40.0793975Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-04-25T04:47:40.0797632Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-04-25T04:47:40.0808972Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-04-25T04:47:40.0813460Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-04-25T04:47:40.0816907Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-04-25T04:47:40.0821155Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-04-25T04:47:40.0825856Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-04-25T04:47:40.0829496Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-04-25T04:47:40.0832726Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-04-25T04:47:40.0836453Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-04-25T04:47:40.0840876Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-04-25T04:47:40.0845021Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-04-25T04:47:40.0850250Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-04-25T04:47:40.0868207Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-04-25T04:47:40.0873689Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-04-25T04:47:40.0877148Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-04-25T04:47:40.0881063Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-04-25T04:47:40.0884958Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-04-25T04:47:40.0889170Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-04-25T04:47:40.0894174Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-04-25T04:47:40.0899984Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-04-25T04:47:40.0903740Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-04-25T04:47:40.0907059Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-04-25T04:47:40.0910203Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-04-25T04:47:40.0913590Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-04-25T04:47:40.0916563Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-04-25T04:47:40.0925909Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-04-25T04:47:40.0931013Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-04-25T04:47:40.0934739Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-04-25T04:47:40.0938402Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-04-25T04:47:40.0942039Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-04-25T04:47:40.0945497Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-04-25T04:47:40.0949207Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-04-25T04:47:40.0953067Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-04-25T04:47:40.0957552Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-04-25T04:47:40.0962381Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-04-25T04:47:40.0967225Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-04-25T04:47:40.0971930Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-04-25T04:47:40.0975500Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-04-25T04:47:40.0978809Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-04-25T04:47:40.0982838Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-04-25T04:47:40.0989592Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-04-25T04:47:40.0992695Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-04-25T04:47:40.0996286Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-04-25T04:47:40.0999904Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-04-25T04:47:40.1005611Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-04-25T04:47:40.1016158Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-04-25T04:47:40.1021617Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-04-25T04:47:40.1025259Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-04-25T04:47:40.1028091Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-04-25T04:47:40.1031469Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-04-25T04:47:40.1034837Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-04-25T04:47:40.1038236Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-04-25T04:47:40.1043166Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-04-25T04:47:40.1046158Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-04-25T04:47:40.1049609Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-04-25T04:47:40.1052867Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-04-25T04:47:40.1058630Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-04-25T04:47:40.1072318Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-04-25T04:47:40.1076015Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-04-25T04:47:40.1079495Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-04-25T04:47:40.1085243Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-04-25T04:47:40.1088736Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-04-25T04:47:40.1103541Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-04-25T04:47:40.1108040Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-04-25T04:47:40.1114124Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-04-25T04:47:40.1119297Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-04-25T04:47:40.1122989Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-04-25T04:47:40.1127892Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-04-25T04:47:40.1131780Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-04-25T04:47:40.1135163Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-04-25T04:47:40.1140658Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-04-25T04:47:40.1146723Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-04-25T04:47:40.1150867Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-04-25T04:47:40.1155158Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-04-25T04:47:40.1158518Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-04-25T04:47:40.1162502Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-04-25T04:47:40.1166000Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-04-25T04:47:40.1169428Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-04-25T04:47:40.1173088Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-04-25T04:47:40.1176077Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-04-25T04:47:40.1180556Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-04-25T04:47:40.1201943Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-04-25T04:47:40.1207567Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-04-25T04:47:40.1212729Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-04-25T04:47:40.1219240Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-04-25T04:47:40.1223459Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-04-25T04:47:40.1227284Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-04-25T04:47:40.1230591Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-04-25T04:47:40.1234089Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-04-25T04:47:40.1237508Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-04-25T04:47:40.1244027Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-04-25T04:47:40.1250085Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-04-25T04:47:40.1254537Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-04-25T04:47:40.1258356Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-04-25T04:47:40.1262913Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-04-25T04:47:40.1268112Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-04-25T04:47:40.1272102Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-04-25T04:47:40.1275675Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-04-25T04:47:40.1280728Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-04-25T04:47:40.1284615Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-04-25T04:47:40.1289871Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-04-25T04:47:40.1293943Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-04-25T04:47:40.1300496Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-04-25T04:47:40.1304961Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-04-25T04:47:40.1308451Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-04-25T04:47:40.1312393Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-04-25T04:47:40.1316093Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-04-25T04:47:40.1320498Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-04-25T04:47:40.1324916Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-04-25T04:47:40.1329881Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-04-25T04:47:40.1333449Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-04-25T04:47:40.1341863Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-04-25T04:47:40.1346246Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-04-25T04:47:40.1349818Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-04-25T04:47:40.1354097Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-04-25T04:47:40.1360731Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-04-25T04:47:40.1364532Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-04-25T04:47:40.1368023Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-04-25T04:47:40.1374732Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-04-25T04:47:40.1379158Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-04-25T04:47:40.1383140Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-04-25T04:47:40.1392740Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-04-25T04:47:40.1396772Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-04-25T04:47:40.1400374Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-04-25T04:47:40.1407724Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-04-25T04:47:40.1412994Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-04-25T04:47:40.1420031Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-04-25T04:47:40.1430499Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-04-25T04:47:40.1436485Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-04-25T04:47:40.1439809Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-04-25T04:47:40.1444977Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-04-25T04:47:40.1448871Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-04-25T04:47:40.1452523Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-04-25T04:47:40.1457392Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-04-25T04:47:40.1461213Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-04-25T04:47:40.1466317Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-04-25T04:47:40.1468410Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-04-25T04:47:40.1472186Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-04-25T04:47:40.1475015Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-04-25T04:47:40.1479026Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-04-25T04:47:40.1482343Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-04-25T04:47:40.1485544Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-04-25T04:47:40.1489908Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-04-25T04:47:40.1493628Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-04-25T04:47:40.1497208Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-04-25T04:47:40.1502464Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-04-25T04:47:40.1506780Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-04-25T04:47:40.1511300Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-04-25T04:47:40.1515404Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-04-25T04:47:40.1520784Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-04-25T04:47:40.1524611Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-04-25T04:47:40.1527983Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-04-25T04:47:40.1531675Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-04-25T04:47:40.1536790Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-04-25T04:47:40.1540792Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-04-25T04:47:40.1546356Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-04-25T04:47:40.1558545Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-04-25T04:47:40.1559001Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-04-25T04:47:40.1560413Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-04-25T04:47:40.1564854Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-04-25T04:47:40.1570863Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-04-25T04:47:40.1576555Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-04-25T04:47:40.1580592Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-04-25T04:47:40.1584251Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-04-25T04:47:40.1588128Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-04-25T04:47:40.1593525Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-04-25T04:47:40.1599824Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-04-25T04:47:40.1603570Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-04-25T04:47:40.1607861Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-04-25T04:47:40.1611532Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-04-25T04:47:40.1615073Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-04-25T04:47:40.1618708Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-04-25T04:47:40.1623203Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-04-25T04:47:40.1627367Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-04-25T04:47:40.1631362Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-04-25T04:47:40.1634901Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-04-25T04:47:40.1673469Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-04-25T04:47:40.1687789Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-04-25T04:47:40.1692055Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-04-25T04:47:40.1696901Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-04-25T04:47:40.1700605Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-04-25T04:47:40.1705256Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-04-25T04:47:40.1709528Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-04-25T04:47:40.1713757Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-04-25T04:47:40.1717338Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-04-25T04:47:40.1720242Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-04-25T04:47:40.1723831Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-04-25T04:47:40.1727257Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-04-25T04:47:40.1731722Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-04-25T04:47:40.1736047Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-04-25T04:47:40.1739870Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-04-25T04:47:40.1744309Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-04-25T04:47:40.1748008Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-04-25T04:47:40.1752053Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-04-25T04:47:40.1758031Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-04-25T04:47:40.1763495Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-04-25T04:47:40.1765574Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-04-25T04:47:40.1769393Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-04-25T04:47:40.1773228Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-04-25T04:47:40.1777066Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-04-25T04:47:40.1781242Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-04-25T04:47:40.1784462Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-04-25T04:47:40.1787517Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-04-25T04:47:40.1791704Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-04-25T04:47:40.1800575Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-04-25T04:47:40.1805028Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-04-25T04:47:40.1809793Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-04-25T04:47:40.1814060Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-04-25T04:47:40.1817571Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-04-25T04:47:40.1820998Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-04-25T04:47:40.1824843Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-04-25T04:47:40.1828357Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-04-25T04:47:40.1832148Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-04-25T04:47:40.1836886Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-04-25T04:47:40.1842788Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-04-25T04:47:40.1847264Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-04-25T04:47:40.1850367Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-04-25T04:47:40.1854567Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-04-25T04:47:40.1857941Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-04-25T04:47:40.1861450Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-04-25T04:47:40.1865482Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-04-25T04:47:40.1868515Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-04-25T04:47:40.1871565Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-04-25T04:47:40.1875012Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-04-25T04:47:40.1879216Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-04-25T04:47:40.1883823Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-04-25T04:47:40.1887568Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-04-25T04:47:40.1892643Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-04-25T04:47:40.1896357Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-04-25T04:47:40.1900965Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-04-25T04:47:40.1904833Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-04-25T04:47:40.1908625Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-04-25T04:47:40.1914627Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-04-25T04:47:40.1918963Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-04-25T04:47:40.1924650Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-04-25T04:47:40.1929212Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-04-25T04:47:40.1933020Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-04-25T04:47:40.1937018Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-04-25T04:47:40.1941286Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-04-25T04:47:40.1944684Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-04-25T04:47:40.1948416Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-04-25T04:47:40.1955161Z adding 'torch/include/torch/csrc/stable/library.h' 2025-04-25T04:47:40.1959509Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-04-25T04:47:40.1964890Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-04-25T04:47:40.1968177Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-04-25T04:47:40.1971180Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-04-25T04:47:40.1974844Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-04-25T04:47:40.1978462Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-04-25T04:47:40.2002044Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-04-25T04:47:40.2007911Z adding 'torch/include/torch/csrc/utils/init.h' 2025-04-25T04:47:40.2011062Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-04-25T04:47:40.2014094Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-04-25T04:47:40.2017381Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-04-25T04:47:40.2021490Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-04-25T04:47:40.2024590Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-04-25T04:47:40.2030429Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-04-25T04:47:40.2034112Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-04-25T04:47:40.2037191Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-04-25T04:47:40.2051279Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-04-25T04:47:40.2055947Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-04-25T04:47:40.2059134Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-04-25T04:47:40.2063474Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-04-25T04:47:40.2067293Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-04-25T04:47:40.2071507Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-04-25T04:47:40.2075977Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-04-25T04:47:40.2079019Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-04-25T04:47:40.2083533Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-04-25T04:47:40.2087125Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-04-25T04:47:40.2090327Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-04-25T04:47:40.2104154Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-04-25T04:47:40.2109178Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-04-25T04:47:40.2112773Z adding 'torch/include/torch/csrc/utils/six.h' 2025-04-25T04:47:40.2115928Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-04-25T04:47:40.2119054Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-04-25T04:47:40.2122127Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-04-25T04:47:40.2125839Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-04-25T04:47:40.2129075Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-04-25T04:47:40.2131973Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-04-25T04:47:40.2135066Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-04-25T04:47:40.2138764Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-04-25T04:47:40.2142196Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-04-25T04:47:40.2145266Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-04-25T04:47:40.2148414Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-04-25T04:47:40.2153512Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-04-25T04:47:40.2158607Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-04-25T04:47:40.2162512Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-04-25T04:47:40.2168037Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-04-25T04:47:40.2171513Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-04-25T04:47:40.2175557Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-04-25T04:47:40.2178804Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-04-25T04:47:40.2182714Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-04-25T04:47:40.2189401Z adding 'torch/jit/__init__.py' 2025-04-25T04:47:40.2193797Z adding 'torch/jit/_async.py' 2025-04-25T04:47:40.2197190Z adding 'torch/jit/_await.py' 2025-04-25T04:47:40.2212974Z adding 'torch/jit/_builtins.py' 2025-04-25T04:47:40.2213283Z adding 'torch/jit/_check.py' 2025-04-25T04:47:40.2213670Z adding 'torch/jit/_dataclass_impls.py' 2025-04-25T04:47:40.2217142Z adding 'torch/jit/_decomposition_utils.py' 2025-04-25T04:47:40.2263001Z adding 'torch/jit/_decompositions.py' 2025-04-25T04:47:40.2263325Z adding 'torch/jit/_freeze.py' 2025-04-25T04:47:40.2263598Z adding 'torch/jit/_fuser.py' 2025-04-25T04:47:40.2263867Z adding 'torch/jit/_ir_utils.py' 2025-04-25T04:47:40.2264127Z adding 'torch/jit/_logging.py' 2025-04-25T04:47:40.2264404Z adding 'torch/jit/_monkeytype_config.py' 2025-04-25T04:47:40.2264703Z adding 'torch/jit/_pickle.py' 2025-04-25T04:47:40.2269171Z adding 'torch/jit/_recursive.py' 2025-04-25T04:47:40.2297016Z adding 'torch/jit/_script.py' 2025-04-25T04:47:40.2303949Z adding 'torch/jit/_script.pyi' 2025-04-25T04:47:40.2309767Z adding 'torch/jit/_serialization.py' 2025-04-25T04:47:40.2326979Z adding 'torch/jit/_shape_functions.py' 2025-04-25T04:47:40.2332391Z adding 'torch/jit/_state.py' 2025-04-25T04:47:40.2353964Z adding 'torch/jit/_trace.py' 2025-04-25T04:47:40.2363814Z adding 'torch/jit/annotations.py' 2025-04-25T04:47:40.2381358Z adding 'torch/jit/frontend.py' 2025-04-25T04:47:40.2385868Z adding 'torch/jit/generate_bytecode.py' 2025-04-25T04:47:40.2389302Z adding 'torch/jit/quantized.py' 2025-04-25T04:47:40.2395420Z adding 'torch/jit/supported_ops.py' 2025-04-25T04:47:40.2399403Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-04-25T04:47:40.2403346Z adding 'torch/jit/_passes/__init__.py' 2025-04-25T04:47:40.2406932Z adding 'torch/jit/_passes/_property_propagation.py' 2025-04-25T04:47:40.2412202Z adding 'torch/jit/mobile/__init__.py' 2025-04-25T04:47:40.3388568Z adding 'torch/lib/XNNPACK.lib' 2025-04-25T04:47:40.3458301Z adding 'torch/lib/_C.lib' 2025-04-25T04:47:40.3568172Z adding 'torch/lib/aoti_custom_ops.dll' 2025-04-25T04:47:40.3582783Z adding 'torch/lib/aoti_custom_ops.lib' 2025-04-25T04:47:40.3802235Z adding 'torch/lib/asmjit.dll' 2025-04-25T04:47:40.3836860Z adding 'torch/lib/asmjit.lib' 2025-04-25T04:47:40.3950151Z adding 'torch/lib/backend_with_compiler.dll' 2025-04-25T04:47:40.3964473Z adding 'torch/lib/backend_with_compiler.lib' 2025-04-25T04:47:40.4449062Z adding 'torch/lib/c10.dll' 2025-04-25T04:47:40.4638435Z adding 'torch/lib/c10.lib' 2025-04-25T04:47:40.4879295Z adding 'torch/lib/c10_cuda.dll' 2025-04-25T04:47:40.4900820Z adding 'torch/lib/c10_cuda.lib' 2025-04-25T04:47:40.4912256Z adding 'torch/lib/caffe2_nvrtc.dll' 2025-04-25T04:47:40.4916489Z adding 'torch/lib/caffe2_nvrtc.lib' 2025-04-25T04:47:40.4967619Z adding 'torch/lib/cpuinfo.lib' 2025-04-25T04:47:57.4664584Z adding 'torch/lib/dnnl.lib' 2025-04-25T04:47:59.3064723Z adding 'torch/lib/fbgemm.dll' 2025-04-25T04:47:59.3372938Z adding 'torch/lib/fbgemm.lib' 2025-04-25T04:47:59.3830309Z adding 'torch/lib/fmt.lib' 2025-04-25T04:47:59.3961695Z adding 'torch/lib/jitbackend_test.dll' 2025-04-25T04:47:59.3974470Z adding 'torch/lib/jitbackend_test.lib' 2025-04-25T04:48:00.3664907Z adding 'torch/lib/kineto.lib' 2025-04-25T04:48:00.6051709Z adding 'torch/lib/libprotobuf-lite.lib' 2025-04-25T04:48:01.5206233Z adding 'torch/lib/libprotobuf.lib' 2025-04-25T04:48:02.5812134Z adding 'torch/lib/libprotoc.lib' 2025-04-25T04:48:02.7765828Z adding 'torch/lib/microkernels-prod.lib' 2025-04-25T04:48:02.7915084Z adding 'torch/lib/pthreadpool.lib' 2025-04-25T04:48:02.7928361Z adding 'torch/lib/shm.dll' 2025-04-25T04:48:02.7932904Z adding 'torch/lib/shm.lib' 2025-04-25T04:48:03.1773265Z adding 'torch/lib/sleef.lib' 2025-04-25T04:48:03.1996047Z adding 'torch/lib/torch.dll' 2025-04-25T04:48:03.2000106Z adding 'torch/lib/torch.lib' 2025-04-25T04:48:09.3028881Z adding 'torch/lib/torch_cpu.dll' 2025-04-25T04:48:10.1949509Z adding 'torch/lib/torch_cpu.lib' 2025-04-25T04:48:25.0087814Z adding 'torch/lib/torch_cuda.dll' 2025-04-25T04:48:25.6159654Z adding 'torch/lib/torch_cuda.lib' 2025-04-25T04:48:25.6214047Z adding 'torch/lib/torch_global_deps.dll' 2025-04-25T04:48:26.4453339Z adding 'torch/lib/torch_python.dll' 2025-04-25T04:48:26.4898333Z adding 'torch/lib/torch_python.lib' 2025-04-25T04:48:26.5127928Z adding 'torch/lib/torchbind_test.dll' 2025-04-25T04:48:26.5149497Z adding 'torch/lib/torchbind_test.lib' 2025-04-25T04:48:26.5161895Z adding 'torch/lib/libshm/alloc_info.h' 2025-04-25T04:48:26.5162212Z adding 'torch/lib/libshm/err.h' 2025-04-25T04:48:26.5163732Z adding 'torch/lib/libshm/libshm.h' 2025-04-25T04:48:26.5181565Z adding 'torch/lib/libshm/socket.h' 2025-04-25T04:48:26.5181865Z adding 'torch/lib/libshm_windows/libshm.h' 2025-04-25T04:48:26.5211786Z adding 'torch/linalg/__init__.py' 2025-04-25T04:48:26.5218675Z adding 'torch/masked/__init__.py' 2025-04-25T04:48:26.5226556Z adding 'torch/masked/_docs.py' 2025-04-25T04:48:26.5249985Z adding 'torch/masked/_ops.py' 2025-04-25T04:48:26.5255548Z adding 'torch/masked/maskedtensor/__init__.py' 2025-04-25T04:48:26.5261788Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-04-25T04:48:26.5266763Z adding 'torch/masked/maskedtensor/binary.py' 2025-04-25T04:48:26.5273258Z adding 'torch/masked/maskedtensor/core.py' 2025-04-25T04:48:26.5276784Z adding 'torch/masked/maskedtensor/creation.py' 2025-04-25T04:48:26.5280178Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-04-25T04:48:26.5284503Z adding 'torch/masked/maskedtensor/reductions.py' 2025-04-25T04:48:26.5288718Z adding 'torch/masked/maskedtensor/unary.py' 2025-04-25T04:48:26.5292991Z adding 'torch/monitor/__init__.py' 2025-04-25T04:48:26.5298685Z adding 'torch/mps/__init__.py' 2025-04-25T04:48:26.5302360Z adding 'torch/mps/event.py' 2025-04-25T04:48:26.5306255Z adding 'torch/mps/profiler.py' 2025-04-25T04:48:26.5313270Z adding 'torch/mtia/__init__.py' 2025-04-25T04:48:26.5317311Z adding 'torch/mtia/_utils.py' 2025-04-25T04:48:26.5320931Z adding 'torch/mtia/memory.py' 2025-04-25T04:48:26.5325535Z adding 'torch/multiprocessing/__init__.py' 2025-04-25T04:48:26.5328863Z adding 'torch/multiprocessing/_atfork.py' 2025-04-25T04:48:26.5332327Z adding 'torch/multiprocessing/pool.py' 2025-04-25T04:48:26.5335871Z adding 'torch/multiprocessing/queue.py' 2025-04-25T04:48:26.5345194Z adding 'torch/multiprocessing/reductions.py' 2025-04-25T04:48:26.5352509Z adding 'torch/multiprocessing/spawn.py' 2025-04-25T04:48:26.5362486Z adding 'torch/nested/__init__.py' 2025-04-25T04:48:26.5367089Z adding 'torch/nested/_internal/__init__.py' 2025-04-25T04:48:26.5370705Z adding 'torch/nested/_internal/nested_int.py' 2025-04-25T04:48:26.5380658Z adding 'torch/nested/_internal/nested_tensor.py' 2025-04-25T04:48:26.5411685Z adding 'torch/nested/_internal/ops.py' 2025-04-25T04:48:26.5426919Z adding 'torch/nested/_internal/sdpa.py' 2025-04-25T04:48:26.5432718Z adding 'torch/nn/__init__.py' 2025-04-25T04:48:26.5436186Z adding 'torch/nn/_reduction.py' 2025-04-25T04:48:26.5439715Z adding 'torch/nn/common_types.py' 2025-04-25T04:48:26.5443635Z adding 'torch/nn/cpp.py' 2025-04-25T04:48:26.5517367Z adding 'torch/nn/functional.py' 2025-04-25T04:48:26.5529846Z adding 'torch/nn/functional.pyi' 2025-04-25T04:48:26.5534871Z adding 'torch/nn/grad.py' 2025-04-25T04:48:26.5543739Z adding 'torch/nn/init.py' 2025-04-25T04:48:26.5550559Z adding 'torch/nn/parameter.py' 2025-04-25T04:48:26.5554011Z adding 'torch/nn/parameter.pyi' 2025-04-25T04:48:26.5559456Z adding 'torch/nn/attention/__init__.py' 2025-04-25T04:48:26.5563318Z adding 'torch/nn/attention/_utils.py' 2025-04-25T04:48:26.5569580Z adding 'torch/nn/attention/bias.py' 2025-04-25T04:48:26.5590178Z adding 'torch/nn/attention/flex_attention.py' 2025-04-25T04:48:26.5595541Z adding 'torch/nn/attention/experimental/__init__.py' 2025-04-25T04:48:26.5601540Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-04-25T04:48:26.5605799Z adding 'torch/nn/backends/__init__.py' 2025-04-25T04:48:26.5609283Z adding 'torch/nn/backends/thnn.py' 2025-04-25T04:48:26.5613044Z adding 'torch/nn/intrinsic/__init__.py' 2025-04-25T04:48:26.5617146Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-04-25T04:48:26.5620892Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-04-25T04:48:26.5624269Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-04-25T04:48:26.5628292Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-04-25T04:48:26.5631649Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-04-25T04:48:26.5635351Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-04-25T04:48:26.5638359Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-04-25T04:48:26.5642199Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-04-25T04:48:26.5646092Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-04-25T04:48:26.5650113Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-04-25T04:48:26.5653046Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-04-25T04:48:26.5657236Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-04-25T04:48:26.5660232Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-04-25T04:48:26.5663360Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-04-25T04:48:26.5666265Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-04-25T04:48:26.5676405Z adding 'torch/nn/modules/__init__.py' 2025-04-25T04:48:26.5678798Z adding 'torch/nn/modules/_functions.py' 2025-04-25T04:48:26.5697236Z adding 'torch/nn/modules/activation.py' 2025-04-25T04:48:26.5705063Z adding 'torch/nn/modules/adaptive.py' 2025-04-25T04:48:26.5716125Z adding 'torch/nn/modules/batchnorm.py' 2025-04-25T04:48:26.5720574Z adding 'torch/nn/modules/channelshuffle.py' 2025-04-25T04:48:26.5732777Z adding 'torch/nn/modules/container.py' 2025-04-25T04:48:26.5750593Z adding 'torch/nn/modules/conv.py' 2025-04-25T04:48:26.5756237Z adding 'torch/nn/modules/distance.py' 2025-04-25T04:48:26.5761462Z adding 'torch/nn/modules/dropout.py' 2025-04-25T04:48:26.5766013Z adding 'torch/nn/modules/flatten.py' 2025-04-25T04:48:26.5771901Z adding 'torch/nn/modules/fold.py' 2025-04-25T04:48:26.5778497Z adding 'torch/nn/modules/instancenorm.py' 2025-04-25T04:48:26.5785136Z adding 'torch/nn/modules/lazy.py' 2025-04-25T04:48:26.5790959Z adding 'torch/nn/modules/linear.py' 2025-04-25T04:48:26.5818223Z adding 'torch/nn/modules/loss.py' 2025-04-25T04:48:26.5862018Z adding 'torch/nn/modules/module.py' 2025-04-25T04:48:26.5871134Z adding 'torch/nn/modules/normalization.py' 2025-04-25T04:48:26.5878219Z adding 'torch/nn/modules/padding.py' 2025-04-25T04:48:26.5882522Z adding 'torch/nn/modules/pixelshuffle.py' 2025-04-25T04:48:26.5895521Z adding 'torch/nn/modules/pooling.py' 2025-04-25T04:48:26.5915940Z adding 'torch/nn/modules/rnn.py' 2025-04-25T04:48:26.5925856Z adding 'torch/nn/modules/sparse.py' 2025-04-25T04:48:26.5940921Z adding 'torch/nn/modules/transformer.py' 2025-04-25T04:48:26.5947680Z adding 'torch/nn/modules/upsampling.py' 2025-04-25T04:48:26.5951932Z adding 'torch/nn/modules/utils.py' 2025-04-25T04:48:26.5956170Z adding 'torch/nn/parallel/__init__.py' 2025-04-25T04:48:26.5960303Z adding 'torch/nn/parallel/_functions.py' 2025-04-25T04:48:26.5965990Z adding 'torch/nn/parallel/comm.py' 2025-04-25T04:48:26.5972430Z adding 'torch/nn/parallel/data_parallel.py' 2025-04-25T04:48:26.6017085Z adding 'torch/nn/parallel/distributed.py' 2025-04-25T04:48:26.6024130Z adding 'torch/nn/parallel/parallel_apply.py' 2025-04-25T04:48:26.6029868Z adding 'torch/nn/parallel/replicate.py' 2025-04-25T04:48:26.6033445Z adding 'torch/nn/parallel/scatter_gather.py' 2025-04-25T04:48:26.6037753Z adding 'torch/nn/qat/__init__.py' 2025-04-25T04:48:26.6041727Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-04-25T04:48:26.6045520Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-04-25T04:48:26.6049162Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-04-25T04:48:26.6053304Z adding 'torch/nn/qat/modules/__init__.py' 2025-04-25T04:48:26.6056265Z adding 'torch/nn/qat/modules/conv.py' 2025-04-25T04:48:26.6059485Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-04-25T04:48:26.6062622Z adding 'torch/nn/qat/modules/linear.py' 2025-04-25T04:48:26.6066527Z adding 'torch/nn/quantizable/__init__.py' 2025-04-25T04:48:26.6070746Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-04-25T04:48:26.6073558Z adding 'torch/nn/quantizable/modules/activation.py' 2025-04-25T04:48:26.6076790Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-04-25T04:48:26.6080836Z adding 'torch/nn/quantized/__init__.py' 2025-04-25T04:48:26.6084082Z adding 'torch/nn/quantized/functional.py' 2025-04-25T04:48:26.6088072Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-04-25T04:48:26.6092008Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-04-25T04:48:26.6095526Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-04-25T04:48:26.6098722Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-04-25T04:48:26.6101995Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-04-25T04:48:26.6105652Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-04-25T04:48:26.6108484Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-04-25T04:48:26.6114327Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-04-25T04:48:26.6118869Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-04-25T04:48:26.6122231Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-04-25T04:48:26.6125687Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-04-25T04:48:26.6129412Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-04-25T04:48:26.6133784Z adding 'torch/nn/quantized/modules/__init__.py' 2025-04-25T04:48:26.6137412Z adding 'torch/nn/quantized/modules/activation.py' 2025-04-25T04:48:26.6141201Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-04-25T04:48:26.6144108Z adding 'torch/nn/quantized/modules/conv.py' 2025-04-25T04:48:26.6147374Z adding 'torch/nn/quantized/modules/dropout.py' 2025-04-25T04:48:26.6150628Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-04-25T04:48:26.6154069Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-04-25T04:48:26.6157176Z adding 'torch/nn/quantized/modules/linear.py' 2025-04-25T04:48:26.6160604Z adding 'torch/nn/quantized/modules/normalization.py' 2025-04-25T04:48:26.6163833Z adding 'torch/nn/quantized/modules/rnn.py' 2025-04-25T04:48:26.6167058Z adding 'torch/nn/quantized/modules/utils.py' 2025-04-25T04:48:26.6171638Z adding 'torch/nn/utils/__init__.py' 2025-04-25T04:48:26.6192433Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-04-25T04:48:26.6192818Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-04-25T04:48:26.6193168Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-04-25T04:48:26.6193814Z adding 'torch/nn/utils/clip_grad.py' 2025-04-25T04:48:26.6212042Z adding 'torch/nn/utils/convert_parameters.py' 2025-04-25T04:48:26.6212384Z adding 'torch/nn/utils/fusion.py' 2025-04-25T04:48:26.6212683Z adding 'torch/nn/utils/init.py' 2025-04-25T04:48:26.6213057Z adding 'torch/nn/utils/memory_format.py' 2025-04-25T04:48:26.6224558Z adding 'torch/nn/utils/parametrizations.py' 2025-04-25T04:48:26.6239245Z adding 'torch/nn/utils/parametrize.py' 2025-04-25T04:48:26.6258795Z adding 'torch/nn/utils/prune.py' 2025-04-25T04:48:26.6269546Z adding 'torch/nn/utils/rnn.py' 2025-04-25T04:48:26.6277374Z adding 'torch/nn/utils/spectral_norm.py' 2025-04-25T04:48:26.6283860Z adding 'torch/nn/utils/stateless.py' 2025-04-25T04:48:26.6319163Z adding 'torch/nn/utils/weight_norm.py' 2025-04-25T04:48:26.6319600Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-04-25T04:48:26.6320061Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-04-25T04:48:26.6320551Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-04-25T04:48:26.6321027Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-04-25T04:48:26.6321566Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-04-25T04:48:26.6322082Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-04-25T04:48:26.6322613Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-04-25T04:48:26.6324959Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-04-25T04:48:26.6328847Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-04-25T04:48:26.6332695Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-04-25T04:48:26.6343149Z adding 'torch/onnx/__init__.py' 2025-04-25T04:48:26.6347084Z adding 'torch/onnx/_constants.py' 2025-04-25T04:48:26.6350384Z adding 'torch/onnx/_experimental.py' 2025-04-25T04:48:26.6353828Z adding 'torch/onnx/_flags.py' 2025-04-25T04:48:26.6357510Z adding 'torch/onnx/_globals.py' 2025-04-25T04:48:26.6361404Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-04-25T04:48:26.6367576Z adding 'torch/onnx/_type_utils.py' 2025-04-25T04:48:26.6371820Z adding 'torch/onnx/errors.py' 2025-04-25T04:48:26.6375386Z adding 'torch/onnx/operators.py' 2025-04-25T04:48:26.6380338Z adding 'torch/onnx/symbolic_caffe2.py' 2025-04-25T04:48:26.6411389Z adding 'torch/onnx/symbolic_helper.py' 2025-04-25T04:48:26.6424087Z adding 'torch/onnx/symbolic_opset10.py' 2025-04-25T04:48:26.6442748Z adding 'torch/onnx/symbolic_opset11.py' 2025-04-25T04:48:26.6450582Z adding 'torch/onnx/symbolic_opset12.py' 2025-04-25T04:48:26.6464133Z adding 'torch/onnx/symbolic_opset13.py' 2025-04-25T04:48:26.6471399Z adding 'torch/onnx/symbolic_opset14.py' 2025-04-25T04:48:26.6475389Z adding 'torch/onnx/symbolic_opset15.py' 2025-04-25T04:48:26.6480229Z adding 'torch/onnx/symbolic_opset16.py' 2025-04-25T04:48:26.6485772Z adding 'torch/onnx/symbolic_opset17.py' 2025-04-25T04:48:26.6491835Z adding 'torch/onnx/symbolic_opset18.py' 2025-04-25T04:48:26.6494919Z adding 'torch/onnx/symbolic_opset19.py' 2025-04-25T04:48:26.6498756Z adding 'torch/onnx/symbolic_opset20.py' 2025-04-25T04:48:26.6502248Z adding 'torch/onnx/symbolic_opset7.py' 2025-04-25T04:48:26.6508693Z adding 'torch/onnx/symbolic_opset8.py' 2025-04-25T04:48:26.6580724Z adding 'torch/onnx/symbolic_opset9.py' 2025-04-25T04:48:26.6616932Z adding 'torch/onnx/utils.py' 2025-04-25T04:48:26.6645211Z adding 'torch/onnx/verification.py' 2025-04-25T04:48:26.6651267Z adding 'torch/onnx/_internal/__init__.py' 2025-04-25T04:48:26.6660078Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-04-25T04:48:26.6664123Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-04-25T04:48:26.6672694Z adding 'torch/onnx/_internal/io_adapter.py' 2025-04-25T04:48:26.6704201Z adding 'torch/onnx/_internal/jit_utils.py' 2025-04-25T04:48:26.6704600Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-04-25T04:48:26.6716541Z adding 'torch/onnx/_internal/onnxruntime.py' 2025-04-25T04:48:26.6717334Z adding 'torch/onnx/_internal/registration.py' 2025-04-25T04:48:26.6722668Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-04-25T04:48:26.6728868Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-04-25T04:48:26.6739906Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-04-25T04:48:26.6746785Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-04-25T04:48:26.6752584Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-04-25T04:48:26.6755690Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-04-25T04:48:26.6834586Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-04-25T04:48:26.6835245Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-04-25T04:48:26.6835792Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-04-25T04:48:26.6836220Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-04-25T04:48:26.6836624Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-04-25T04:48:26.6836998Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-04-25T04:48:26.6837372Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-04-25T04:48:26.6837772Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-04-25T04:48:26.6838154Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-04-25T04:48:26.6838560Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-04-25T04:48:26.6838982Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-04-25T04:48:26.6839397Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-04-25T04:48:26.6848110Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-04-25T04:48:26.6852140Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-04-25T04:48:26.6856645Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-04-25T04:48:26.6862890Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-04-25T04:48:26.6867886Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-04-25T04:48:26.6871092Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-04-25T04:48:26.6875087Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-04-25T04:48:26.6880434Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-04-25T04:48:26.6883833Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-04-25T04:48:26.6887843Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-04-25T04:48:26.6891602Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-04-25T04:48:26.6895831Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-04-25T04:48:26.6900420Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-04-25T04:48:26.6905914Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-04-25T04:48:26.6910607Z adding 'torch/onnx/_internal/fx/decomposition_table.py' 2025-04-25T04:48:26.6916196Z adding 'torch/onnx/_internal/fx/dynamo_graph_extractor.py' 2025-04-25T04:48:26.6928442Z adding 'torch/onnx/_internal/fx/fx_onnx_interpreter.py' 2025-04-25T04:48:26.6942128Z adding 'torch/onnx/_internal/fx/onnxfunction_dispatcher.py' 2025-04-25T04:48:26.6946835Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-04-25T04:48:26.6951035Z adding 'torch/onnx/_internal/fx/registration.py' 2025-04-25T04:48:26.6957657Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-04-25T04:48:26.6962608Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-04-25T04:48:26.6967107Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-04-25T04:48:26.6971713Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-04-25T04:48:26.6976023Z adding 'torch/onnx/_internal/fx/passes/decomp.py' 2025-04-25T04:48:26.6981121Z adding 'torch/onnx/_internal/fx/passes/functionalization.py' 2025-04-25T04:48:26.6995312Z adding 'torch/onnx/_internal/fx/passes/modularization.py' 2025-04-25T04:48:26.7000912Z adding 'torch/onnx/_internal/fx/passes/readability.py' 2025-04-25T04:48:26.7018028Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-04-25T04:48:26.7023971Z adding 'torch/onnx/_internal/fx/passes/virtualization.py' 2025-04-25T04:48:26.7030022Z adding 'torch/onnx/ops/__init__.py' 2025-04-25T04:48:26.7036114Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-04-25T04:48:26.7041363Z adding 'torch/optim/__init__.py' 2025-04-25T04:48:26.7052136Z adding 'torch/optim/_adafactor.py' 2025-04-25T04:48:26.7056209Z adding 'torch/optim/_functional.py' 2025-04-25T04:48:26.7063654Z adding 'torch/optim/adadelta.py' 2025-04-25T04:48:26.7072053Z adding 'torch/optim/adagrad.py' 2025-04-25T04:48:26.7085779Z adding 'torch/optim/adam.py' 2025-04-25T04:48:26.7094604Z adding 'torch/optim/adamax.py' 2025-04-25T04:48:26.7100813Z adding 'torch/optim/adamw.py' 2025-04-25T04:48:26.7108728Z adding 'torch/optim/asgd.py' 2025-04-25T04:48:26.7117189Z adding 'torch/optim/lbfgs.py' 2025-04-25T04:48:26.7142749Z adding 'torch/optim/lr_scheduler.py' 2025-04-25T04:48:26.7154112Z adding 'torch/optim/nadam.py' 2025-04-25T04:48:26.7172910Z adding 'torch/optim/optimizer.py' 2025-04-25T04:48:26.7183248Z adding 'torch/optim/radam.py' 2025-04-25T04:48:26.7191927Z adding 'torch/optim/rmsprop.py' 2025-04-25T04:48:26.7199851Z adding 'torch/optim/rprop.py' 2025-04-25T04:48:26.7208144Z adding 'torch/optim/sgd.py' 2025-04-25T04:48:26.7214207Z adding 'torch/optim/sparse_adam.py' 2025-04-25T04:48:26.7222492Z adding 'torch/optim/swa_utils.py' 2025-04-25T04:48:26.7227284Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-04-25T04:48:26.7232381Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-04-25T04:48:26.7242160Z adding 'torch/package/__init__.py' 2025-04-25T04:48:26.7246401Z adding 'torch/package/_digraph.py' 2025-04-25T04:48:26.7250349Z adding 'torch/package/_directory_reader.py' 2025-04-25T04:48:26.7254807Z adding 'torch/package/_importlib.py' 2025-04-25T04:48:26.7258320Z adding 'torch/package/_mangling.py' 2025-04-25T04:48:26.7262115Z adding 'torch/package/_mock.py' 2025-04-25T04:48:26.7266516Z adding 'torch/package/_package_pickler.py' 2025-04-25T04:48:26.7270531Z adding 'torch/package/_package_unpickler.py' 2025-04-25T04:48:26.7274489Z adding 'torch/package/_stdlib.py' 2025-04-25T04:48:26.7278942Z adding 'torch/package/file_structure_representation.py' 2025-04-25T04:48:26.7283069Z adding 'torch/package/find_file_dependencies.py' 2025-04-25T04:48:26.7287060Z adding 'torch/package/glob_group.py' 2025-04-25T04:48:26.7292690Z adding 'torch/package/importer.py' 2025-04-25T04:48:26.7311876Z adding 'torch/package/package_exporter.py' 2025-04-25T04:48:26.7326471Z adding 'torch/package/package_importer.py' 2025-04-25T04:48:26.7331361Z adding 'torch/package/analyze/__init__.py' 2025-04-25T04:48:26.7334785Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-04-25T04:48:26.7337871Z adding 'torch/package/analyze/is_from_package.py' 2025-04-25T04:48:26.7364286Z adding 'torch/package/analyze/trace_dependencies.py' 2025-04-25T04:48:26.7364649Z adding 'torch/profiler/__init__.py' 2025-04-25T04:48:26.7364959Z adding 'torch/profiler/_memory_profiler.py' 2025-04-25T04:48:26.7375712Z adding 'torch/profiler/_pattern_matcher.py' 2025-04-25T04:48:26.7382241Z adding 'torch/profiler/_utils.py' 2025-04-25T04:48:26.7386140Z adding 'torch/profiler/itt.py' 2025-04-25T04:48:26.7402163Z adding 'torch/profiler/profiler.py' 2025-04-25T04:48:26.7406532Z adding 'torch/profiler/python_tracer.py' 2025-04-25T04:48:26.7411209Z adding 'torch/quantization/__init__.py' 2025-04-25T04:48:26.7414927Z adding 'torch/quantization/_numeric_suite.py' 2025-04-25T04:48:26.7418423Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-04-25T04:48:26.7422542Z adding 'torch/quantization/_quantized_conversions.py' 2025-04-25T04:48:26.7426107Z adding 'torch/quantization/fake_quantize.py' 2025-04-25T04:48:26.7429346Z adding 'torch/quantization/fuse_modules.py' 2025-04-25T04:48:26.7453373Z adding 'torch/quantization/fuser_method_mappings.py' 2025-04-25T04:48:26.7453907Z adding 'torch/quantization/observer.py' 2025-04-25T04:48:26.7454229Z adding 'torch/quantization/qconfig.py' 2025-04-25T04:48:26.7454564Z adding 'torch/quantization/quant_type.py' 2025-04-25T04:48:26.7454930Z adding 'torch/quantization/quantization_mappings.py' 2025-04-25T04:48:26.7455284Z adding 'torch/quantization/quantize.py' 2025-04-25T04:48:26.7455596Z adding 'torch/quantization/quantize_fx.py' 2025-04-25T04:48:26.7456041Z adding 'torch/quantization/quantize_jit.py' 2025-04-25T04:48:26.7459077Z adding 'torch/quantization/stubs.py' 2025-04-25T04:48:26.7462325Z adding 'torch/quantization/utils.py' 2025-04-25T04:48:26.7466588Z adding 'torch/quantization/fx/__init__.py' 2025-04-25T04:48:26.7469974Z adding 'torch/quantization/fx/_equalize.py' 2025-04-25T04:48:26.7473268Z adding 'torch/quantization/fx/convert.py' 2025-04-25T04:48:26.7476311Z adding 'torch/quantization/fx/fuse.py' 2025-04-25T04:48:26.7479583Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-04-25T04:48:26.7483244Z adding 'torch/quantization/fx/graph_module.py' 2025-04-25T04:48:26.7486001Z adding 'torch/quantization/fx/match_utils.py' 2025-04-25T04:48:26.7489580Z adding 'torch/quantization/fx/pattern_utils.py' 2025-04-25T04:48:26.7492556Z adding 'torch/quantization/fx/prepare.py' 2025-04-25T04:48:26.7496238Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-04-25T04:48:26.7499382Z adding 'torch/quantization/fx/quantization_types.py' 2025-04-25T04:48:26.7502670Z adding 'torch/quantization/fx/utils.py' 2025-04-25T04:48:26.7508191Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-04-25T04:48:26.7513522Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-04-25T04:48:26.7517220Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-04-25T04:48:26.7522317Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-04-25T04:48:26.7536596Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-04-25T04:48:26.7541791Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-04-25T04:48:26.7545459Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-04-25T04:48:26.7549987Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-04-25T04:48:26.7554437Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-04-25T04:48:26.7558369Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-04-25T04:48:26.7563344Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-04-25T04:48:26.7596653Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-04-25T04:48:26.7606327Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-04-25T04:48:26.7610199Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-04-25T04:48:26.7615733Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-04-25T04:48:26.7620163Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-04-25T04:48:26.7626581Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-04-25T04:48:26.7633532Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-04-25T04:48:26.7639264Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-04-25T04:48:26.7646041Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-04-25T04:48:26.7669970Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-04-25T04:48:26.7670402Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-04-25T04:48:26.7670771Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-04-25T04:48:26.7671157Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-04-25T04:48:26.7671567Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-04-25T04:48:26.7674953Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-04-25T04:48:26.7679201Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-04-25T04:48:26.7684510Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-04-25T04:48:26.7692401Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-04-25T04:48:26.7692786Z adding 'torch/signal/__init__.py' 2025-04-25T04:48:26.7696284Z adding 'torch/signal/windows/__init__.py' 2025-04-25T04:48:26.7704845Z adding 'torch/signal/windows/windows.py' 2025-04-25T04:48:26.7715457Z adding 'torch/sparse/__init__.py' 2025-04-25T04:48:26.7723160Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-04-25T04:48:26.7728494Z adding 'torch/sparse/_semi_structured_ops.py' 2025-04-25T04:48:26.7754710Z adding 'torch/sparse/_triton_ops.py' 2025-04-25T04:48:26.7884230Z adding 'torch/sparse/_triton_ops_meta.py' 2025-04-25T04:48:26.7905766Z adding 'torch/sparse/semi_structured.py' 2025-04-25T04:48:26.7916506Z adding 'torch/special/__init__.py' 2025-04-25T04:48:26.8099518Z adding 'torch/test/CppSignature_test.exe' 2025-04-25T04:48:26.8379165Z adding 'torch/test/Dict_test.exe' 2025-04-25T04:48:26.8572458Z adding 'torch/test/Dimname_test.exe' 2025-04-25T04:48:26.8819606Z adding 'torch/test/IListRef_test.exe' 2025-04-25T04:48:26.9074782Z adding 'torch/test/KernelFunction_test.exe' 2025-04-25T04:48:26.9435508Z adding 'torch/test/List_test.exe' 2025-04-25T04:48:26.9704800Z adding 'torch/test/MaybeOwned_test.exe' 2025-04-25T04:48:26.9952840Z adding 'torch/test/NamedTensor_test.exe' 2025-04-25T04:48:27.0174800Z adding 'torch/test/StorageUtils_test.exe' 2025-04-25T04:48:27.0405270Z adding 'torch/test/apply_utils_test.exe' 2025-04-25T04:48:27.0648650Z adding 'torch/test/atest.exe' 2025-04-25T04:48:27.0875630Z adding 'torch/test/backend_fallback_test.exe' 2025-04-25T04:48:27.1135080Z adding 'torch/test/basic.exe' 2025-04-25T04:48:27.1355519Z adding 'torch/test/broadcast_test.exe' 2025-04-25T04:48:27.1536640Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-04-25T04:48:27.1720738Z adding 'torch/test/c10_Bitset_test.exe' 2025-04-25T04:48:27.1888768Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-04-25T04:48:27.2052904Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-04-25T04:48:27.2220281Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-04-25T04:48:27.2538975Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-04-25T04:48:27.2728429Z adding 'torch/test/c10_Device_test.exe' 2025-04-25T04:48:27.2945710Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-04-25T04:48:27.3128674Z adding 'torch/test/c10_Half_test.exe' 2025-04-25T04:48:27.3325790Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-04-25T04:48:27.3528485Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-04-25T04:48:27.3731652Z adding 'torch/test/c10_LeftRight_test.exe' 2025-04-25T04:48:27.3921976Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-04-25T04:48:27.4114805Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-04-25T04:48:27.4320081Z adding 'torch/test/c10_Scalar_test.exe' 2025-04-25T04:48:27.4500173Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-04-25T04:48:27.4666235Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-04-25T04:48:27.4846830Z adding 'torch/test/c10_SymInt_test.exe' 2025-04-25T04:48:27.5025019Z adding 'torch/test/c10_Synchronized_test.exe' 2025-04-25T04:48:27.5224745Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-04-25T04:48:27.5407298Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-04-25T04:48:27.5576917Z adding 'torch/test/c10_TypeList_test.exe' 2025-04-25T04:48:27.5743122Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-04-25T04:48:27.5928902Z adding 'torch/test/c10_accumulate_test.exe' 2025-04-25T04:48:27.6131894Z adding 'torch/test/c10_bfloat16_test.exe' 2025-04-25T04:48:27.6307495Z adding 'torch/test/c10_bit_cast_test.exe' 2025-04-25T04:48:27.6517519Z adding 'torch/test/c10_complex_math_test.exe' 2025-04-25T04:48:27.6722604Z adding 'torch/test/c10_complex_test.exe' 2025-04-25T04:48:27.6930307Z adding 'torch/test/c10_cow_test.exe' 2025-04-25T04:48:27.7101710Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_1_var_test.exe' 2025-04-25T04:48:27.7273764Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_stream.exe' 2025-04-25T04:48:27.7443563Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe' 2025-04-25T04:48:27.7608322Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_from_2_processes.exe' 2025-04-25T04:48:27.7776581Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe' 2025-04-25T04:48:27.7951315Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe' 2025-04-25T04:48:27.8122029Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe' 2025-04-25T04:48:27.8289221Z adding 'torch/test/c10_cuda_CUDATest.exe' 2025-04-25T04:48:27.8464266Z adding 'torch/test/c10_error_test.exe' 2025-04-25T04:48:27.8655950Z adding 'torch/test/c10_exception_test.exe' 2025-04-25T04:48:27.8830279Z adding 'torch/test/c10_flags_test.exe' 2025-04-25T04:48:27.9006425Z adding 'torch/test/c10_generic_math_test.exe' 2025-04-25T04:48:27.9157742Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-04-25T04:48:27.9612168Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-04-25T04:48:27.9836408Z adding 'torch/test/c10_irange_test.exe' 2025-04-25T04:48:28.0004774Z adding 'torch/test/c10_lazy_test.exe' 2025-04-25T04:48:28.0205885Z adding 'torch/test/c10_logging_test.exe' 2025-04-25T04:48:28.0468290Z adding 'torch/test/c10_optional_test.exe' 2025-04-25T04:48:28.0690787Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-04-25T04:48:28.0883657Z adding 'torch/test/c10_registry_test.exe' 2025-04-25T04:48:28.1260025Z adding 'torch/test/c10_small_vector_test.exe' 2025-04-25T04:48:28.1454970Z adding 'torch/test/c10_ssize_test.exe' 2025-04-25T04:48:28.1637298Z adding 'torch/test/c10_string_util_test.exe' 2025-04-25T04:48:28.1804428Z adding 'torch/test/c10_string_view_test.exe' 2025-04-25T04:48:28.1975496Z adding 'torch/test/c10_tempfile_test.exe' 2025-04-25T04:48:28.2169878Z adding 'torch/test/c10_typeid_test.exe' 2025-04-25T04:48:28.2385708Z adding 'torch/test/cpu_allocator_test.exe' 2025-04-25T04:48:28.2619276Z adding 'torch/test/cpu_generator_test.exe' 2025-04-25T04:48:28.2839526Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-04-25T04:48:28.3195921Z adding 'torch/test/cpu_rng_test.exe' 2025-04-25T04:48:28.3385133Z adding 'torch/test/cuda_allocatorTraceTracker_test.exe' 2025-04-25T04:48:28.3598072Z adding 'torch/test/cuda_allocator_test.exe' 2025-04-25T04:48:28.3766082Z adding 'torch/test/cuda_apply_test.exe' 2025-04-25T04:48:28.3991721Z adding 'torch/test/cuda_atomic_ops_test.exe' 2025-04-25T04:48:28.4226184Z adding 'torch/test/cuda_caching_host_allocator_test.exe' 2025-04-25T04:48:28.4472883Z adding 'torch/test/cuda_complex_math_test.exe' 2025-04-25T04:48:28.4686244Z adding 'torch/test/cuda_complex_test.exe' 2025-04-25T04:48:28.4919758Z adding 'torch/test/cuda_cub_test.exe' 2025-04-25T04:48:28.5126443Z adding 'torch/test/cuda_cudnn_test.exe' 2025-04-25T04:48:28.5303395Z adding 'torch/test/cuda_device_test.exe' 2025-04-25T04:48:28.5602539Z adding 'torch/test/cuda_distributions_test.exe' 2025-04-25T04:48:28.5814532Z adding 'torch/test/cuda_dlconvertor_test.exe' 2025-04-25T04:48:28.6048234Z adding 'torch/test/cuda_generator_test.exe' 2025-04-25T04:48:28.6264525Z adding 'torch/test/cuda_half_test.exe' 2025-04-25T04:48:28.6444016Z adding 'torch/test/cuda_integer_divider_test.exe' 2025-04-25T04:48:28.6654253Z adding 'torch/test/cuda_optional_test.exe' 2025-04-25T04:48:28.6867794Z adding 'torch/test/cuda_packedtensoraccessor_test.exe' 2025-04-25T04:48:28.7093563Z adding 'torch/test/cuda_reportMemoryUsage_test.exe' 2025-04-25T04:48:28.7309119Z adding 'torch/test/cuda_stream_test.exe' 2025-04-25T04:48:28.7534760Z adding 'torch/test/cuda_vectorized_test.exe' 2025-04-25T04:48:28.7743312Z adding 'torch/test/dlconvertor_test.exe' 2025-04-25T04:48:28.7977527Z adding 'torch/test/extension_backend_test.exe' 2025-04-25T04:48:28.8206038Z adding 'torch/test/half_test.exe' 2025-04-25T04:48:28.8469149Z adding 'torch/test/inline_container_test.exe' 2025-04-25T04:48:28.8852571Z adding 'torch/test/ivalue_test.exe' 2025-04-25T04:48:28.9279956Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-04-25T04:48:28.9645552Z adding 'torch/test/kernel_function_test.exe' 2025-04-25T04:48:29.0091138Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-04-25T04:48:29.0465418Z adding 'torch/test/kernel_lambda_test.exe' 2025-04-25T04:48:29.0718477Z adding 'torch/test/kernel_stackbased_test.exe' 2025-04-25T04:48:29.0930168Z adding 'torch/test/lazy_tensor_test.exe' 2025-04-25T04:48:29.1235987Z adding 'torch/test/legacy_vmap_test.exe' 2025-04-25T04:48:29.1592452Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-04-25T04:48:29.1817875Z adding 'torch/test/math_kernel_test.exe' 2025-04-25T04:48:29.2034769Z adding 'torch/test/memory_format_test.exe' 2025-04-25T04:48:29.2249936Z adding 'torch/test/memory_overlapping_test.exe' 2025-04-25T04:48:29.2470398Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-04-25T04:48:29.2709555Z adding 'torch/test/native_test.exe' 2025-04-25T04:48:29.2878728Z adding 'torch/test/op_allowlist_test.exe' 2025-04-25T04:48:29.3718267Z adding 'torch/test/op_registration_test.exe' 2025-04-25T04:48:29.3945036Z adding 'torch/test/operator_name_test.exe' 2025-04-25T04:48:29.4152645Z adding 'torch/test/operators_test.exe' 2025-04-25T04:48:29.4380310Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-04-25T04:48:29.4656553Z adding 'torch/test/pow_test.exe' 2025-04-25T04:48:29.4901414Z adding 'torch/test/quantized_test.exe' 2025-04-25T04:48:29.5115409Z adding 'torch/test/reduce_ops_test.exe' 2025-04-25T04:48:29.5334443Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-04-25T04:48:29.5578730Z adding 'torch/test/scalar_tensor_test.exe' 2025-04-25T04:48:29.5829029Z adding 'torch/test/scalar_test.exe' 2025-04-25T04:48:29.6047074Z adding 'torch/test/stride_properties_test.exe' 2025-04-25T04:48:29.6330441Z adding 'torch/test/tensor_iterator_test.exe' 2025-04-25T04:48:29.6560983Z adding 'torch/test/test_parallel.exe' 2025-04-25T04:48:29.6621332Z adding 'torch/test/thread_init_test.exe' 2025-04-25T04:48:29.6803461Z adding 'torch/test/type_ptr_test.exe' 2025-04-25T04:48:29.7047896Z adding 'torch/test/type_test.exe' 2025-04-25T04:48:29.7271497Z adding 'torch/test/undefined_tensor_test.exe' 2025-04-25T04:48:29.7330986Z adding 'torch/test/verify_api_visibility.exe' 2025-04-25T04:48:29.7543542Z adding 'torch/test/weakref_test.exe' 2025-04-25T04:48:29.7760714Z adding 'torch/test/wrapdim_test.exe' 2025-04-25T04:48:29.7975809Z adding 'torch/test/xla_tensor_test.exe' 2025-04-25T04:48:29.7988745Z adding 'torch/testing/__init__.py' 2025-04-25T04:48:29.8010961Z adding 'torch/testing/_comparison.py' 2025-04-25T04:48:29.8023267Z adding 'torch/testing/_creation.py' 2025-04-25T04:48:29.8027188Z adding 'torch/testing/_utils.py' 2025-04-25T04:48:29.8033217Z adding 'torch/testing/_internal/__init__.py' 2025-04-25T04:48:29.8040902Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-04-25T04:48:29.8047731Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-04-25T04:48:29.8054115Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-04-25T04:48:29.8059514Z adding 'torch/testing/_internal/common_cuda.py' 2025-04-25T04:48:29.8087961Z adding 'torch/testing/_internal/common_device_type.py' 2025-04-25T04:48:29.8093697Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-04-25T04:48:29.8115238Z adding 'torch/testing/_internal/common_distributed.py' 2025-04-25T04:48:29.8120709Z adding 'torch/testing/_internal/common_dtype.py' 2025-04-25T04:48:29.8140600Z adding 'torch/testing/_internal/common_fsdp.py' 2025-04-25T04:48:29.8148987Z adding 'torch/testing/_internal/common_jit.py' 2025-04-25T04:48:29.8401362Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-04-25T04:48:29.8436476Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-04-25T04:48:29.8472135Z adding 'torch/testing/_internal/common_modules.py' 2025-04-25T04:48:29.8513220Z adding 'torch/testing/_internal/common_nn.py' 2025-04-25T04:48:29.8534785Z adding 'torch/testing/_internal/common_optimizers.py' 2025-04-25T04:48:29.8542449Z adding 'torch/testing/_internal/common_pruning.py' 2025-04-25T04:48:29.8574966Z adding 'torch/testing/_internal/common_quantization.py' 2025-04-25T04:48:29.8585435Z adding 'torch/testing/_internal/common_quantized.py' 2025-04-25T04:48:29.8592194Z adding 'torch/testing/_internal/common_subclass.py' 2025-04-25T04:48:29.8682386Z adding 'torch/testing/_internal/common_utils.py' 2025-04-25T04:48:29.8697855Z adding 'torch/testing/_internal/composite_compliance.py' 2025-04-25T04:48:29.8705866Z adding 'torch/testing/_internal/custom_op_db.py' 2025-04-25T04:48:29.8711043Z adding 'torch/testing/_internal/custom_tensor.py' 2025-04-25T04:48:29.8715906Z adding 'torch/testing/_internal/dist_utils.py' 2025-04-25T04:48:29.8720563Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-04-25T04:48:29.8724208Z adding 'torch/testing/_internal/fake_config_module.py' 2025-04-25T04:48:29.8727380Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-04-25T04:48:29.8730563Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-04-25T04:48:29.8735891Z adding 'torch/testing/_internal/hop_db.py' 2025-04-25T04:48:29.8743129Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-04-25T04:48:29.8748579Z adding 'torch/testing/_internal/inductor_utils.py' 2025-04-25T04:48:29.8760440Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-04-25T04:48:29.8774108Z adding 'torch/testing/_internal/jit_utils.py' 2025-04-25T04:48:29.8780010Z adding 'torch/testing/_internal/logging_tensor.py' 2025-04-25T04:48:29.8785428Z adding 'torch/testing/_internal/logging_utils.py' 2025-04-25T04:48:29.8789159Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-04-25T04:48:29.8792512Z adding 'torch/testing/_internal/static_module.py' 2025-04-25T04:48:29.8796078Z adding 'torch/testing/_internal/subclasses.py' 2025-04-25T04:48:29.8800492Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-04-25T04:48:29.8807400Z adding 'torch/testing/_internal/triton_utils.py' 2025-04-25T04:48:29.8812026Z adding 'torch/testing/_internal/two_tensor.py' 2025-04-25T04:48:29.8816459Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-04-25T04:48:29.8819987Z adding 'torch/testing/_internal/data/__init__.py' 2025-04-25T04:48:29.8823115Z adding 'torch/testing/_internal/data/network1.py' 2025-04-25T04:48:29.8826130Z adding 'torch/testing/_internal/data/network2.py' 2025-04-25T04:48:29.8830308Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-04-25T04:48:29.8834758Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-04-25T04:48:29.8840052Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-04-25T04:48:29.8849234Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-04-25T04:48:29.8958864Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-04-25T04:48:29.8972622Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-04-25T04:48:29.8977081Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-04-25T04:48:29.8983836Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-04-25T04:48:29.8989164Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-04-25T04:48:29.8993380Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-04-25T04:48:29.8996658Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-04-25T04:48:29.9001393Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-04-25T04:48:29.9005542Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-04-25T04:48:29.9009288Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-04-25T04:48:29.9013167Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-04-25T04:48:29.9021949Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-04-25T04:48:29.9026263Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-04-25T04:48:29.9029940Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-04-25T04:48:29.9038113Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-04-25T04:48:29.9042625Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-04-25T04:48:29.9072162Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-04-25T04:48:29.9079853Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-04-25T04:48:29.9085741Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-04-25T04:48:29.9089846Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-04-25T04:48:29.9093732Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-04-25T04:48:29.9155193Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-04-25T04:48:29.9164100Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-04-25T04:48:29.9167871Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-04-25T04:48:29.9172024Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-04-25T04:48:29.9177892Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-04-25T04:48:29.9181843Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-04-25T04:48:29.9185801Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-04-25T04:48:29.9200678Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-04-25T04:48:29.9206570Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-04-25T04:48:29.9210742Z adding 'torch/testing/_internal/generated/__init__.py' 2025-04-25T04:48:29.9263191Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-04-25T04:48:29.9280250Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-04-25T04:48:29.9324839Z adding 'torch/testing/_internal/opinfo/core.py' 2025-04-25T04:48:29.9332598Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-04-25T04:48:29.9338894Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-04-25T04:48:29.9342903Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-04-25T04:48:29.9352873Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-04-25T04:48:29.9360869Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-04-25T04:48:29.9382966Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-04-25T04:48:29.9420270Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-04-25T04:48:29.9420818Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-04-25T04:48:29.9422556Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-04-25T04:48:29.9434185Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-04-25T04:48:29.9436531Z adding 'torch/testing/_internal/optests/__init__.py' 2025-04-25T04:48:29.9440671Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-04-25T04:48:29.9446607Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-04-25T04:48:29.9448983Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-04-25T04:48:29.9462025Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-04-25T04:48:29.9466770Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-04-25T04:48:29.9471012Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-04-25T04:48:29.9473989Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-04-25T04:48:29.9476946Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-04-25T04:48:29.9482688Z adding 'torch/utils/__init__.py' 2025-04-25T04:48:29.9486770Z adding 'torch/utils/_appending_byte_serializer.py' 2025-04-25T04:48:29.9491112Z adding 'torch/utils/_backport_slots.py' 2025-04-25T04:48:29.9503094Z adding 'torch/utils/_config_module.py' 2025-04-25T04:48:29.9507220Z adding 'torch/utils/_config_typing.pyi' 2025-04-25T04:48:29.9512905Z adding 'torch/utils/_content_store.py' 2025-04-25T04:48:29.9518411Z adding 'torch/utils/_contextlib.py' 2025-04-25T04:48:29.9522063Z adding 'torch/utils/_cpp_embed_headers.py' 2025-04-25T04:48:29.9525971Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-04-25T04:48:29.9537619Z adding 'torch/utils/_cxx_pytree.py' 2025-04-25T04:48:29.9542493Z adding 'torch/utils/_device.py' 2025-04-25T04:48:29.9545893Z adding 'torch/utils/_exposed_in.py' 2025-04-25T04:48:29.9549452Z adding 'torch/utils/_filelock.py' 2025-04-25T04:48:29.9553520Z adding 'torch/utils/_foreach_utils.py' 2025-04-25T04:48:29.9559570Z adding 'torch/utils/_freeze.py' 2025-04-25T04:48:29.9563700Z adding 'torch/utils/_functools.py' 2025-04-25T04:48:29.9568144Z adding 'torch/utils/_get_clean_triton.py' 2025-04-25T04:48:29.9571823Z adding 'torch/utils/_import_utils.py' 2025-04-25T04:48:29.9575092Z adding 'torch/utils/_mode_utils.py' 2025-04-25T04:48:29.9579373Z adding 'torch/utils/_ordered_set.py' 2025-04-25T04:48:29.9591631Z adding 'torch/utils/_python_dispatch.py' 2025-04-25T04:48:29.9616647Z adding 'torch/utils/_pytree.py' 2025-04-25T04:48:29.9621729Z adding 'torch/utils/_stats.py' 2025-04-25T04:48:29.9624867Z adding 'torch/utils/_thunk.py' 2025-04-25T04:48:29.9630737Z adding 'torch/utils/_traceback.py' 2025-04-25T04:48:29.9634697Z adding 'torch/utils/_triton.py' 2025-04-25T04:48:29.9637870Z adding 'torch/utils/_typing_utils.py' 2025-04-25T04:48:29.9641520Z adding 'torch/utils/_zip.py' 2025-04-25T04:48:29.9649464Z adding 'torch/utils/backend_registration.py' 2025-04-25T04:48:29.9658766Z adding 'torch/utils/bundled_inputs.py' 2025-04-25T04:48:29.9686994Z adding 'torch/utils/checkpoint.py' 2025-04-25T04:48:29.9698657Z adding 'torch/utils/collect_env.py' 2025-04-25T04:48:29.9702498Z adding 'torch/utils/cpp_backtrace.py' 2025-04-25T04:48:29.9750006Z adding 'torch/utils/cpp_extension.py' 2025-04-25T04:48:29.9756318Z adding 'torch/utils/deterministic.py' 2025-04-25T04:48:29.9760585Z adding 'torch/utils/dlpack.py' 2025-04-25T04:48:29.9764452Z adding 'torch/utils/file_baton.py' 2025-04-25T04:48:29.9775477Z adding 'torch/utils/flop_counter.py' 2025-04-25T04:48:29.9781658Z adding 'torch/utils/hooks.py' 2025-04-25T04:48:29.9786212Z adding 'torch/utils/mkldnn.py' 2025-04-25T04:48:29.9790854Z adding 'torch/utils/mobile_optimizer.py' 2025-04-25T04:48:29.9794044Z adding 'torch/utils/model_zoo.py' 2025-04-25T04:48:29.9798224Z adding 'torch/utils/module_tracker.py' 2025-04-25T04:48:29.9802725Z adding 'torch/utils/show_pickle.py' 2025-04-25T04:48:29.9807611Z adding 'torch/utils/throughput_benchmark.py' 2025-04-25T04:48:29.9813881Z adding 'torch/utils/weak.py' 2025-04-25T04:48:29.9818428Z adding 'torch/utils/_strobelight/__init__.py' 2025-04-25T04:48:29.9824014Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-04-25T04:48:29.9829212Z adding 'torch/utils/_sympy/__init__.py' 2025-04-25T04:48:29.9848750Z adding 'torch/utils/_sympy/functions.py' 2025-04-25T04:48:29.9854665Z adding 'torch/utils/_sympy/interp.py' 2025-04-25T04:48:29.9859821Z adding 'torch/utils/_sympy/numbers.py' 2025-04-25T04:48:29.9867166Z adding 'torch/utils/_sympy/printers.py' 2025-04-25T04:48:29.9873448Z adding 'torch/utils/_sympy/reference.py' 2025-04-25T04:48:29.9877681Z adding 'torch/utils/_sympy/singleton_int.py' 2025-04-25T04:48:29.9882645Z adding 'torch/utils/_sympy/solve.py' 2025-04-25T04:48:29.9887720Z adding 'torch/utils/_sympy/symbol.py' 2025-04-25T04:48:29.9934802Z adding 'torch/utils/_sympy/value_ranges.py' 2025-04-25T04:48:29.9935165Z adding 'torch/utils/backcompat/__init__.py' 2025-04-25T04:48:29.9935600Z adding 'torch/utils/benchmark/__init__.py' 2025-04-25T04:48:29.9935949Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-04-25T04:48:29.9936367Z adding 'torch/utils/benchmark/examples/blas_compare_setup.py' 2025-04-25T04:48:29.9936800Z adding 'torch/utils/benchmark/examples/compare.py' 2025-04-25T04:48:29.9937170Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-04-25T04:48:29.9937563Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-04-25T04:48:29.9937991Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-04-25T04:48:29.9942060Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-04-25T04:48:29.9945994Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-04-25T04:48:29.9949963Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-04-25T04:48:29.9954133Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-04-25T04:48:29.9957993Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-04-25T04:48:29.9962110Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-04-25T04:48:29.9965938Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-04-25T04:48:29.9970958Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-04-25T04:48:29.9973597Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-04-25T04:48:29.9980483Z adding 'torch/utils/benchmark/utils/common.py' 2025-04-25T04:48:29.9987548Z adding 'torch/utils/benchmark/utils/compare.py' 2025-04-25T04:48:29.9992726Z adding 'torch/utils/benchmark/utils/compile.py' 2025-04-25T04:48:29.9997799Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-04-25T04:48:30.0006175Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-04-25T04:48:30.0011096Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-04-25T04:48:30.0015641Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-04-25T04:48:30.0025110Z adding 'torch/utils/benchmark/utils/timer.py' 2025-04-25T04:48:30.0029666Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-04-25T04:48:30.0034197Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-04-25T04:48:30.0037752Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-04-25T04:48:30.0041349Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-04-25T04:48:30.0055875Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-04-25T04:48:30.0111061Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-04-25T04:48:30.0124807Z adding 'torch/utils/bottleneck/__init__.py' 2025-04-25T04:48:30.0129276Z adding 'torch/utils/bottleneck/__main__.py' 2025-04-25T04:48:30.0134040Z adding 'torch/utils/data/__init__.py' 2025-04-25T04:48:30.0137162Z adding 'torch/utils/data/backward_compatibility.py' 2025-04-25T04:48:30.0169260Z adding 'torch/utils/data/dataloader.py' 2025-04-25T04:48:30.0179364Z adding 'torch/utils/data/dataset.py' 2025-04-25T04:48:30.0184546Z adding 'torch/utils/data/distributed.py' 2025-04-25T04:48:30.0189288Z adding 'torch/utils/data/graph.py' 2025-04-25T04:48:30.0193974Z adding 'torch/utils/data/graph_settings.py' 2025-04-25T04:48:30.0200276Z adding 'torch/utils/data/sampler.py' 2025-04-25T04:48:30.0205298Z adding 'torch/utils/data/_utils/__init__.py' 2025-04-25T04:48:30.0211927Z adding 'torch/utils/data/_utils/collate.py' 2025-04-25T04:48:30.0216361Z adding 'torch/utils/data/_utils/fetch.py' 2025-04-25T04:48:30.0220453Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-04-25T04:48:30.0224686Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-04-25T04:48:30.0231968Z adding 'torch/utils/data/_utils/worker.py' 2025-04-25T04:48:30.0236503Z adding 'torch/utils/data/datapipes/__init__.py' 2025-04-25T04:48:30.0241309Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-04-25T04:48:30.0247757Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-04-25T04:48:30.0256210Z adding 'torch/utils/data/datapipes/_typing.py' 2025-04-25T04:48:30.0263568Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-04-25T04:48:30.0274991Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-04-25T04:48:30.0281805Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-04-25T04:48:30.0286640Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-04-25T04:48:30.0290096Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-04-25T04:48:30.0296489Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-04-25T04:48:30.0300930Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-04-25T04:48:30.0304528Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-04-25T04:48:30.0308848Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-04-25T04:48:30.0314513Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-04-25T04:48:30.0319658Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-04-25T04:48:30.0329241Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-04-25T04:48:30.0334011Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-04-25T04:48:30.0337992Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-04-25T04:48:30.0344042Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-04-25T04:48:30.0348334Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-04-25T04:48:30.0352525Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-04-25T04:48:30.0356914Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-04-25T04:48:30.0360299Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-04-25T04:48:30.0394511Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-04-25T04:48:30.0395058Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-04-25T04:48:30.0395456Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-04-25T04:48:30.0395869Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-04-25T04:48:30.0396282Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-04-25T04:48:30.0396669Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-04-25T04:48:30.0397101Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-04-25T04:48:30.0397542Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-04-25T04:48:30.0398397Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-04-25T04:48:30.0427694Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-04-25T04:48:30.0428109Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-04-25T04:48:30.0428457Z adding 'torch/utils/hipify/__init__.py' 2025-04-25T04:48:30.0428765Z adding 'torch/utils/hipify/constants.py' 2025-04-25T04:48:30.0480325Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-04-25T04:48:30.0506813Z adding 'torch/utils/hipify/hipify_python.py' 2025-04-25T04:48:30.0511001Z adding 'torch/utils/hipify/version.py' 2025-04-25T04:48:30.0514767Z adding 'torch/utils/jit/__init__.py' 2025-04-25T04:48:30.0518690Z adding 'torch/utils/jit/log_extract.py' 2025-04-25T04:48:30.0527288Z adding 'torch/utils/model_dump/__init__.py' 2025-04-25T04:48:30.0530727Z adding 'torch/utils/model_dump/__main__.py' 2025-04-25T04:48:30.0538504Z adding 'torch/utils/model_dump/code.js' 2025-04-25T04:48:30.0542449Z adding 'torch/utils/model_dump/htm.mjs' 2025-04-25T04:48:30.0548553Z adding 'torch/utils/model_dump/preact.mjs' 2025-04-25T04:48:30.0551994Z adding 'torch/utils/model_dump/skeleton.html' 2025-04-25T04:48:30.0555785Z adding 'torch/utils/serialization/__init__.py' 2025-04-25T04:48:30.0558768Z adding 'torch/utils/serialization/config.py' 2025-04-25T04:48:30.0562955Z adding 'torch/utils/tensorboard/__init__.py' 2025-04-25T04:48:30.0566169Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-04-25T04:48:30.0569963Z adding 'torch/utils/tensorboard/_embedding.py' 2025-04-25T04:48:30.0573727Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-04-25T04:48:30.0577151Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-04-25T04:48:30.0584225Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-04-25T04:48:30.0588802Z adding 'torch/utils/tensorboard/_utils.py' 2025-04-25T04:48:30.0602237Z adding 'torch/utils/tensorboard/summary.py' 2025-04-25T04:48:30.0617947Z adding 'torch/utils/tensorboard/writer.py' 2025-04-25T04:48:30.0622849Z adding 'torch/utils/viz/__init__.py' 2025-04-25T04:48:30.0630606Z adding 'torch/utils/viz/_cycles.py' 2025-04-25T04:48:30.0639562Z adding 'torch/xpu/__init__.py' 2025-04-25T04:48:30.0643482Z adding 'torch/xpu/_gpu_trace.py' 2025-04-25T04:48:30.0646912Z adding 'torch/xpu/_utils.py' 2025-04-25T04:48:30.0651534Z adding 'torch/xpu/memory.py' 2025-04-25T04:48:30.0655930Z adding 'torch/xpu/random.py' 2025-04-25T04:48:30.0660634Z adding 'torch/xpu/streams.py' 2025-04-25T04:48:30.0669648Z adding 'torchgen/__init__.py' 2025-04-25T04:48:30.0673374Z adding 'torchgen/code_template.py' 2025-04-25T04:48:30.0677319Z adding 'torchgen/context.py' 2025-04-25T04:48:30.0716949Z adding 'torchgen/gen.py' 2025-04-25T04:48:30.0727656Z adding 'torchgen/gen_aoti_c_shim.py' 2025-04-25T04:48:30.0736875Z adding 'torchgen/gen_backend_stubs.py' 2025-04-25T04:48:30.0751358Z adding 'torchgen/gen_executorch.py' 2025-04-25T04:48:30.0766291Z adding 'torchgen/gen_functionalization_type.py' 2025-04-25T04:48:30.0776584Z adding 'torchgen/gen_lazy_tensor.py' 2025-04-25T04:48:30.0781051Z adding 'torchgen/gen_schema_utils.py' 2025-04-25T04:48:30.0786144Z adding 'torchgen/gen_vmap_plumbing.py' 2025-04-25T04:48:30.0789865Z adding 'torchgen/local.py' 2025-04-25T04:48:30.0834539Z adding 'torchgen/model.py' 2025-04-25T04:48:30.0849819Z adding 'torchgen/native_function_generation.py' 2025-04-25T04:48:30.0858775Z adding 'torchgen/utils.py' 2025-04-25T04:48:30.0862723Z adding 'torchgen/yaml_utils.py' 2025-04-25T04:48:30.0866712Z adding 'torchgen/aoti/__init__.py' 2025-04-25T04:48:30.0870666Z adding 'torchgen/aoti/fallback_ops.py' 2025-04-25T04:48:30.0881420Z adding 'torchgen/api/__init__.py' 2025-04-25T04:48:30.0894113Z adding 'torchgen/api/autograd.py' 2025-04-25T04:48:30.0902011Z adding 'torchgen/api/cpp.py' 2025-04-25T04:48:30.0906530Z adding 'torchgen/api/dispatcher.py' 2025-04-25T04:48:30.0911800Z adding 'torchgen/api/functionalization.py' 2025-04-25T04:48:30.0952981Z adding 'torchgen/api/lazy.py' 2025-04-25T04:48:30.0953253Z adding 'torchgen/api/meta.py' 2025-04-25T04:48:30.0953514Z adding 'torchgen/api/native.py' 2025-04-25T04:48:30.0953859Z adding 'torchgen/api/python.py' 2025-04-25T04:48:30.0960154Z adding 'torchgen/api/structured.py' 2025-04-25T04:48:30.0968104Z adding 'torchgen/api/translate.py' 2025-04-25T04:48:30.0973653Z adding 'torchgen/api/ufunc.py' 2025-04-25T04:48:30.0979415Z adding 'torchgen/api/unboxing.py' 2025-04-25T04:48:30.0983672Z adding 'torchgen/api/types/__init__.py' 2025-04-25T04:48:30.0990509Z adding 'torchgen/api/types/signatures.py' 2025-04-25T04:48:30.0995420Z adding 'torchgen/api/types/types.py' 2025-04-25T04:48:30.1000429Z adding 'torchgen/api/types/types_base.py' 2025-04-25T04:48:30.1005419Z adding 'torchgen/dest/__init__.py' 2025-04-25T04:48:30.1015832Z adding 'torchgen/dest/lazy_ir.py' 2025-04-25T04:48:30.1020065Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-04-25T04:48:30.1023893Z adding 'torchgen/dest/native_functions.py' 2025-04-25T04:48:30.1038729Z adding 'torchgen/dest/register_dispatch_key.py' 2025-04-25T04:48:30.1047248Z adding 'torchgen/dest/ufunc.py' 2025-04-25T04:48:30.1051562Z adding 'torchgen/executorch/__init__.py' 2025-04-25T04:48:30.1056725Z adding 'torchgen/executorch/model.py' 2025-04-25T04:48:30.1061130Z adding 'torchgen/executorch/parse.py' 2025-04-25T04:48:30.1065072Z adding 'torchgen/executorch/api/__init__.py' 2025-04-25T04:48:30.1069468Z adding 'torchgen/executorch/api/custom_ops.py' 2025-04-25T04:48:30.1075993Z adding 'torchgen/executorch/api/et_cpp.py' 2025-04-25T04:48:30.1081192Z adding 'torchgen/executorch/api/unboxing.py' 2025-04-25T04:48:30.1085213Z adding 'torchgen/executorch/api/types/__init__.py' 2025-04-25T04:48:30.1088879Z adding 'torchgen/executorch/api/types/signatures.py' 2025-04-25T04:48:30.1092519Z adding 'torchgen/executorch/api/types/types.py' 2025-04-25T04:48:30.1096572Z adding 'torchgen/operator_versions/__init__.py' 2025-04-25T04:48:30.1102474Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-04-25T04:48:30.1105889Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-04-25T04:48:30.1230375Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-04-25T04:48:30.1249222Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-04-25T04:48:30.1254879Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-04-25T04:48:30.1258687Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-04-25T04:48:30.1262156Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-04-25T04:48:30.1265791Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-04-25T04:48:30.1269124Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-04-25T04:48:30.1272396Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-04-25T04:48:30.1275445Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-04-25T04:48:30.1278635Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-04-25T04:48:30.1282069Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-04-25T04:48:30.1286007Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-04-25T04:48:30.1290400Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-04-25T04:48:30.1294126Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-04-25T04:48:30.1297054Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-04-25T04:48:30.1300502Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-04-25T04:48:30.1303447Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-04-25T04:48:30.1306862Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-04-25T04:48:30.1309978Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-04-25T04:48:30.1313149Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-04-25T04:48:30.1317567Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-04-25T04:48:30.1320331Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-04-25T04:48:30.1324290Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-04-25T04:48:30.1327496Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-04-25T04:48:30.1330887Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-04-25T04:48:30.1334224Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-04-25T04:48:30.1337830Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-04-25T04:48:30.1341070Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-04-25T04:48:30.1344482Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-04-25T04:48:30.1348580Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-04-25T04:48:30.1351752Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-04-25T04:48:30.1355011Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-04-25T04:48:30.1367450Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-04-25T04:48:30.1372065Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-04-25T04:48:30.1375574Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-04-25T04:48:30.1378778Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-04-25T04:48:30.1381830Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-04-25T04:48:30.1385152Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-04-25T04:48:30.1388489Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-04-25T04:48:30.1391841Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-04-25T04:48:30.1394821Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-04-25T04:48:30.1398964Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-04-25T04:48:30.1402148Z adding 'torchgen/packaged/autograd/README.md' 2025-04-25T04:48:30.1404985Z adding 'torchgen/packaged/autograd/__init__.py' 2025-04-25T04:48:30.1408071Z adding 'torchgen/packaged/autograd/build.bzl' 2025-04-25T04:48:30.1411259Z adding 'torchgen/packaged/autograd/context.py' 2025-04-25T04:48:30.1415429Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-04-25T04:48:30.1467210Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-04-25T04:48:30.1475707Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-04-25T04:48:30.1479949Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-04-25T04:48:30.1492264Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-04-25T04:48:30.1502754Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-04-25T04:48:30.1520580Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-04-25T04:48:30.1529898Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-04-25T04:48:30.1534736Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-04-25T04:48:30.1563103Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-04-25T04:48:30.1571309Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-04-25T04:48:30.1587073Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-04-25T04:48:30.1593611Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-04-25T04:48:30.1597097Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-04-25T04:48:30.1601002Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-04-25T04:48:30.1603996Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-04-25T04:48:30.1607718Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-04-25T04:48:30.1611124Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-04-25T04:48:30.1614531Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-04-25T04:48:30.1617631Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-04-25T04:48:30.1620865Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-04-25T04:48:30.1624569Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-04-25T04:48:30.1627634Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-04-25T04:48:30.1631143Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-04-25T04:48:30.1634199Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-04-25T04:48:30.1637790Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-04-25T04:48:30.1641412Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-04-25T04:48:30.1645433Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-04-25T04:48:30.1649004Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-04-25T04:48:30.1652057Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-04-25T04:48:30.1655782Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-04-25T04:48:30.1659660Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-04-25T04:48:30.1663190Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-04-25T04:48:30.1676679Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-04-25T04:48:30.1682132Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-04-25T04:48:30.1686272Z adding 'torchgen/selective_build/__init__.py' 2025-04-25T04:48:30.1691005Z adding 'torchgen/selective_build/operator.py' 2025-04-25T04:48:30.1697387Z adding 'torchgen/selective_build/selector.py' 2025-04-25T04:48:30.1701703Z adding 'torchgen/static_runtime/__init__.py' 2025-04-25T04:48:30.1707803Z adding 'torchgen/static_runtime/config.py' 2025-04-25T04:48:30.1713051Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-04-25T04:48:30.1722514Z adding 'torchgen/static_runtime/generator.py' 2025-04-25T04:48:30.1845096Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/LICENSE' 2025-04-25T04:48:30.1868817Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/METADATA' 2025-04-25T04:48:30.1879902Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/NOTICE' 2025-04-25T04:48:30.1881674Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/WHEEL' 2025-04-25T04:48:30.1883816Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/entry_points.txt' 2025-04-25T04:48:30.1885874Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/top_level.txt' 2025-04-25T04:48:30.2608964Z adding 'torch-2.8.0a0+gitb68c0ef.dist-info/RECORD' 2025-04-25T04:48:30.2999534Z removing build\bdist.win-amd64\wheel 2025-04-25T04:48:31.8693487Z 2025-04-25T04:48:31.8697305Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-04-25T04:48:31.8698153Z 2025-04-25T04:48:31.8698732Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-04-25T04:48:31.8699146Z 2025-04-25T04:48:31.8699520Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-04-25T04:48:32.7197951Z Compile requests 7391 2025-04-25T04:48:32.7198354Z Compile requests executed 7390 2025-04-25T04:48:32.7198651Z Cache hits 7322 2025-04-25T04:48:32.7198926Z Cache hits (C/C++) 7001 2025-04-25T04:48:32.7199230Z Cache hits (CUDA) 321 2025-04-25T04:48:32.7199494Z Cache misses 49 2025-04-25T04:48:32.7199769Z Cache misses (C/C++) 49 2025-04-25T04:48:32.7200040Z Cache timeouts 0 2025-04-25T04:48:32.7200318Z Cache read errors 0 2025-04-25T04:48:32.7200593Z Forced recaches 0 2025-04-25T04:48:32.7200859Z Cache write errors 0 2025-04-25T04:48:32.7201145Z Compilation failures 3 2025-04-25T04:48:32.7201417Z Cache errors 16 2025-04-25T04:48:32.7201689Z Cache errors (C/C++) 16 2025-04-25T04:48:32.7201980Z Non-cacheable compilations 8 2025-04-25T04:48:32.7202267Z Non-cacheable calls 0 2025-04-25T04:48:32.7202540Z Non-compilation calls 1 2025-04-25T04:48:32.7202828Z Unsupported compiler calls 0 2025-04-25T04:48:32.7203124Z Average cache write 0.032 s 2025-04-25T04:48:32.7203412Z Average compiler 0.079 s 2025-04-25T04:48:32.7203711Z Average cache read hit 0.066 s 2025-04-25T04:48:32.7204008Z Failed distributed compilations 0 2025-04-25T04:48:32.7204417Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-04-25T04:48:32.7204820Z Version (client) 0.7.4 2025-04-25T04:48:32.7217297Z 2025-04-25T04:48:32.7218150Z (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:48:33.7078751Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:48:34.8650029Z Installing collected packages: torch 2025-04-25T04:48:55.5799765Z Successfully installed torch-2.8.0a0+gitb68c0ef 2025-04-25T04:48:55.6558627Z 2025-04-25T04:48:55.6560248Z (base) C:\actions-runner\_work\pytorch\pytorch>(if "win-vs2022-cuda12.6-py3" == "" (echo NOTE: To run `import torch`, please make sure to activate the conda environment by running `call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3` in Command Prompt before running Git Bash. ) else ( 2025-04-25T04:48:55.6561699Z copy /Y "dist\*.whl" "C:/14656749847/build-results/" 2025-04-25T04:48:55.6562063Z python tools/stats/export_test_times.py 2025-04-25T04:48:55.6562548Z robocopy /E ".additional_ci_files" "C:/14656749847/build-results/\.additional_ci_files" 2025-04-25T04:48:55.6563208Z copy /Y "build\.ninja_log" "C:/14656749847/build-results/\" 2025-04-25T04:48:55.6563697Z ) ) 2025-04-25T04:48:55.6567350Z dist\torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:48:55.8558811Z 1 file(s) copied. 2025-04-25T04:48:57.1320189Z Exporting test times from test-infra 2025-04-25T04:48:57.1321321Z 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:48:57.1323137Z 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:48:57.1899372Z 2025-04-25T04:48:57.1900154Z ------------------------------------------------------------------------------- 2025-04-25T04:48:57.1901043Z ROBOCOPY :: Robust File Copy for Windows 2025-04-25T04:48:57.1901536Z ------------------------------------------------------------------------------- 2025-04-25T04:48:57.1902026Z 2025-04-25T04:48:57.1903375Z Started : Friday, April 25, 2025 4:48:57 AM 2025-04-25T04:48:57.1904717Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-04-25T04:48:57.1905208Z Dest : C:\14656749847\build-results\.additional_ci_files\ 2025-04-25T04:48:57.1905479Z 2025-04-25T04:48:57.1905584Z Files : *.* 2025-04-25T04:48:57.1905766Z 2025-04-25T04:48:57.1906727Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-04-25T04:48:57.1906988Z 2025-04-25T04:48:57.1907155Z ------------------------------------------------------------------------------ 2025-04-25T04:48:57.1910917Z 2025-04-25T04:48:57.1917621Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-04-25T04:48:57.1926038Z New File 5.6 m test-class-times.json 2025-04-25T04:48:57.1929322Z 8% 2025-04-25T04:48:57.1933056Z 17% 2025-04-25T04:48:57.1936098Z 26% 2025-04-25T04:48:57.1939891Z 35% 2025-04-25T04:48:57.1942937Z 44% 2025-04-25T04:48:57.1946649Z 53% 2025-04-25T04:48:57.1949643Z 62% 2025-04-25T04:48:57.1953878Z 70% 2025-04-25T04:48:57.1956872Z 79% 2025-04-25T04:48:57.1960627Z 88% 2025-04-25T04:48:57.1961858Z 97% 2025-04-25T04:48:57.1964167Z 100% 2025-04-25T04:48:57.1969515Z New File 1.5 m test-times.json 2025-04-25T04:48:57.1970856Z 16% 2025-04-25T04:48:57.1972530Z 32% 2025-04-25T04:48:57.1974199Z 48% 2025-04-25T04:48:57.1976162Z 64% 2025-04-25T04:48:57.1977734Z 80% 2025-04-25T04:48:57.1978514Z 96% 2025-04-25T04:48:57.1981978Z 100% 2025-04-25T04:48:57.1982379Z 2025-04-25T04:48:57.1982565Z ------------------------------------------------------------------------------ 2025-04-25T04:48:57.1982936Z 2025-04-25T04:48:57.1984070Z Total Copied Skipped Mismatch FAILED Extras 2025-04-25T04:48:57.1984835Z Dirs : 1 1 0 0 0 0 2025-04-25T04:48:57.1985743Z Files : 2 2 0 0 0 0 2025-04-25T04:48:57.1986655Z Bytes : 7.18 m 7.18 m 0 0 0 0 2025-04-25T04:48:57.1987573Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-04-25T04:48:57.1987829Z 2025-04-25T04:48:57.1988433Z 2025-04-25T04:48:57.1989620Z Speed : 579584307 Bytes/sec. 2025-04-25T04:48:57.1990469Z Speed : 33164.080 MegaBytes/min. 2025-04-25T04:48:57.1990798Z Ended : Friday, April 25, 2025 4:48:57 AM 2025-04-25T04:48:57.1991157Z 2025-04-25T04:48:57.9763681Z 1 file(s) copied. 2025-04-25T04:48:57.9765442Z 2025-04-25T04:48:57.9766247Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cuda12.6-py3-41133079877.json 2025-04-25T04:48:58.0218164Z 2025-04-25T04:48:58.0218953Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-04-25T04:48:58.0308557Z Stopping sccache server... 2025-04-25T04:48:58.0329859Z Compile requests 7391 2025-04-25T04:48:58.0330248Z Compile requests executed 7390 2025-04-25T04:48:58.0330570Z Cache hits 7322 2025-04-25T04:48:58.0330860Z Cache hits (C/C++) 7001 2025-04-25T04:48:58.0331144Z Cache hits (CUDA) 321 2025-04-25T04:48:58.0331408Z Cache misses 49 2025-04-25T04:48:58.0331688Z Cache misses (C/C++) 49 2025-04-25T04:48:58.0331951Z Cache timeouts 0 2025-04-25T04:48:58.0332358Z Cache read errors 0 2025-04-25T04:48:58.0332630Z Forced recaches 0 2025-04-25T04:48:58.0332910Z Cache write errors 0 2025-04-25T04:48:58.0333200Z Compilation failures 3 2025-04-25T04:48:58.0333474Z Cache errors 16 2025-04-25T04:48:58.0333743Z Cache errors (C/C++) 16 2025-04-25T04:48:58.0334031Z Non-cacheable compilations 8 2025-04-25T04:48:58.0334401Z Non-cacheable calls 0 2025-04-25T04:48:58.0334688Z Non-compilation calls 1 2025-04-25T04:48:58.0334990Z Unsupported compiler calls 0 2025-04-25T04:48:58.0335279Z Average cache write 0.032 s 2025-04-25T04:48:58.0335591Z Average compiler 0.079 s 2025-04-25T04:48:58.0335876Z Average cache read hit 0.066 s 2025-04-25T04:48:58.0336177Z Failed distributed compilations 0 2025-04-25T04:48:58.0336585Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-04-25T04:48:58.0336993Z Version (client) 0.7.4 2025-04-25T04:48:58.0353118Z 2025-04-25T04:48:58.3055766Z + assert_git_not_dirty 2025-04-25T04:48:58.3056147Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-04-25T04:48:58.3188945Z + [[ win-vs2022-cuda12.6-py3 != *rocm* ]] 2025-04-25T04:48:58.3195371Z + [[ win-vs2022-cuda12.6-py3 != *xla* ]] 2025-04-25T04:48:58.3823176Z ++ git status --porcelain 2025-04-25T04:48:58.3886327Z ++ grep -v '?? third_party' 2025-04-25T04:50:46.4677665Z ++ true 2025-04-25T04:50:46.4681846Z + git_status= 2025-04-25T04:50:46.4682080Z + [[ -n '' ]] 2025-04-25T04:50:46.4682944Z + echo 'BUILD PASSED' 2025-04-25T04:50:46.4683242Z BUILD PASSED 2025-04-25T04:50:46.5797076Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-04-25T04:50:46.5797667Z with: 2025-04-25T04:50:46.5797913Z retention-days: 14 2025-04-25T04:50:46.5798242Z if-no-files-found: error 2025-04-25T04:50:46.5798623Z name: win-vs2022-cuda12.6-py3 2025-04-25T04:50:46.5799013Z path: C:\14656749847\build-results 2025-04-25T04:50:46.5799437Z s3-bucket: gha-artifacts 2025-04-25T04:50:46.5799778Z region: us-east-1 2025-04-25T04:50:46.5800067Z env: 2025-04-25T04:50:46.5800306Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:46.5800959Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:46.5801955Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:46.5802853Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:46.5803571Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:46.5804044Z ##[endgroup] 2025-04-25T04:50:48.7591752Z With the provided path, there will be 4 files uploaded 2025-04-25T04:50:48.7592287Z Uploading to s3 prefix: pytorch/pytorch/14656749847/win-vs2022-cuda12.6-py3 2025-04-25T04:50:48.7600466Z Starting upload of .additional_ci_files\test-class-times.json 2025-04-25T04:50:49.0429755Z Finished upload of .additional_ci_files\test-class-times.json 2025-04-25T04:50:49.0432946Z Starting upload of .additional_ci_files\test-times.json 2025-04-25T04:50:49.2271501Z Finished upload of .additional_ci_files\test-times.json 2025-04-25T04:50:49.2273847Z Starting upload of .ninja_log 2025-04-25T04:50:49.3955973Z Finished upload of .ninja_log 2025-04-25T04:50:49.3957508Z Starting upload of torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:50:52.3113638Z Finished upload of torch-2.8.0a0+gitb68c0ef-cp39-cp39-win_amd64.whl 2025-04-25T04:50:52.3538923Z Prepare all required actions 2025-04-25T04:50:52.3539793Z Getting action download info 2025-04-25T04:50:52.6179492Z Getting action download info 2025-04-25T04:50:52.7456099Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-04-25T04:50:52.7456444Z with: 2025-04-25T04:50:52.7457175Z github-token: *** 2025-04-25T04:50:52.7457393Z env: 2025-04-25T04:50:52.7457601Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:52.7457990Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:52.7458548Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:52.7459062Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:52.7459481Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:52.7459805Z ##[endgroup] 2025-04-25T04:50:52.7582392Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-04-25T04:50:52.7583034Z with: 2025-04-25T04:50:52.7583477Z s3-prefix: pytorch/pytorch/14656749847/1/artifact 2025-04-25T04:50:52.7584028Z retention-days: 14 2025-04-25T04:50:52.7584393Z if-no-files-found: warn 2025-04-25T04:50:52.7584778Z path: sccache-stats-*.json 2025-04-25T04:50:52.7585192Z name: artifact 2025-04-25T04:50:52.7586634Z s3-bucket: gha-artifacts 2025-04-25T04:50:52.7587144Z region: us-east-1 2025-04-25T04:50:52.7587460Z env: 2025-04-25T04:50:52.7587723Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:52.7588402Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:52.7589384Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:52.7590304Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:52.7591021Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:52.7592665Z ##[endgroup] 2025-04-25T04:50:53.1682494Z NOTE: s3-prefix specified, ignoring name parameter 2025-04-25T04:50:53.1683045Z With the provided path, there will be 1 file uploaded 2025-04-25T04:50:53.1683500Z Uploading to s3 prefix: pytorch/pytorch/14656749847/1/artifact 2025-04-25T04:50:53.1698148Z Starting upload of sccache-stats-win-vs2022-cuda12.6-py3-41133079877.json 2025-04-25T04:50:53.2887800Z Finished upload of sccache-stats-win-vs2022-cuda12.6-py3-41133079877.json 2025-04-25T04:50:53.3138990Z ##[group]Run python3 -m tools.stats.sccache_stats_to_benchmark_format 2025-04-25T04:50:53.3139578Z python3 -m tools.stats.sccache_stats_to_benchmark_format 2025-04-25T04:50:53.3164203Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:53.3164727Z env: 2025-04-25T04:50:53.3164951Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:53.3165404Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:53.3165972Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:53.3166551Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:53.3167029Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:53.3167362Z BUILD_TIME: 2025-04-25T04:50:53.3167614Z ##[endgroup] 2025-04-25T04:50:53.5150511Z ##[group]Run pytorch/test-infra/.github/actions/upload-benchmark-results@main 2025-04-25T04:50:53.5150960Z with: 2025-04-25T04:50:53.5151221Z benchmark-results-dir: test/test-reports 2025-04-25T04:50:53.5151531Z dry-run: false 2025-04-25T04:50:53.5151769Z schema-version: v3 2025-04-25T04:50:53.5152278Z github-token: *** 2025-04-25T04:50:53.5152493Z env: 2025-04-25T04:50:53.5152681Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:53.5153090Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:53.5153653Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:53.5154148Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:53.5154693Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:53.5156477Z ##[endgroup] 2025-04-25T04:50:53.5243332Z ##[group]Run set -eux 2025-04-25T04:50:53.5243734Z set -eux 2025-04-25T04:50:53.5244099Z python3 -mpip install boto3==1.35.33 2025-04-25T04:50:53.5314009Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:53.5314766Z env: 2025-04-25T04:50:53.5315012Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:53.5315641Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:53.5318249Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:53.5319119Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:53.5319816Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:53.5320297Z ##[endgroup] 2025-04-25T04:50:53.5533297Z + python3 -mpip install boto3==1.35.33 2025-04-25T04:50:55.4089471Z Collecting boto3==1.35.33 2025-04-25T04:50:55.6178331Z Downloading boto3-1.35.33-py3-none-any.whl.metadata (6.6 kB) 2025-04-25T04:50:55.6295788Z 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:50:55.6303266Z 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:50:55.6310657Z 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:50:55.6388959Z 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:50:55.6401906Z 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:50:55.6486533Z 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:50:55.6735176Z Downloading boto3-1.35.33-py3-none-any.whl (139 kB) 2025-04-25T04:50:55.8270015Z -------------------------------------- 139.1/139.1 kB 826.3 kB/s eta 0:00:00 2025-04-25T04:50:56.7581201Z Installing collected packages: boto3 2025-04-25T04:50:56.7582732Z Attempting uninstall: boto3 2025-04-25T04:50:56.7591879Z Found existing installation: boto3 1.35.42 2025-04-25T04:50:56.7765162Z Uninstalling boto3-1.35.42: 2025-04-25T04:50:56.7821213Z Successfully uninstalled boto3-1.35.42 2025-04-25T04:50:56.9491966Z Successfully installed boto3-1.35.33 2025-04-25T04:50:57.0834814Z ##[group]Run set -eux 2025-04-25T04:50:57.0835072Z set -eux 2025-04-25T04:50:57.0835263Z  2025-04-25T04:50:57.0835482Z if [[ -z "${GITHUB_TOKEN}" ]]; then 2025-04-25T04:50:57.0835826Z  echo "Missing github-token input" 2025-04-25T04:50:57.0836115Z  exit 1 2025-04-25T04:50:57.0836329Z fi 2025-04-25T04:50:57.0855862Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:57.0856309Z env: 2025-04-25T04:50:57.0856496Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:57.0856890Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:57.0857418Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:57.0857913Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:57.0858316Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:57.0858862Z GITHUB_TOKEN: *** 2025-04-25T04:50:57.0859071Z ##[endgroup] 2025-04-25T04:50:57.1089111Z + [[ -z *** ]] 2025-04-25T04:50:57.1238730Z ##[group]Run pytorch/test-infra/.github/actions/get-workflow-job-id@main 2025-04-25T04:50:57.1239526Z with: 2025-04-25T04:50:57.1240012Z github-token: *** 2025-04-25T04:50:57.1240279Z env: 2025-04-25T04:50:57.1241143Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:57.1241776Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:57.1242745Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:57.1243601Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:57.1244306Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:57.1244770Z ##[endgroup] 2025-04-25T04:50:57.1325412Z ##[group]Run set -eux 2025-04-25T04:50:57.1326870Z set -eux 2025-04-25T04:50:57.1327135Z  2025-04-25T04:50:57.1327915Z python3 "${GITHUB_ACTION_PATH}/../../scripts/get_workflow_job_id.py" "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-04-25T04:50:57.1354874Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:57.1356850Z env: 2025-04-25T04:50:57.1357109Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:57.1357871Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:57.1358826Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:57.1359689Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:57.1360380Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:57.1361133Z GITHUB_TOKEN: *** 2025-04-25T04:50:57.1361422Z ##[endgroup] 2025-04-25T04:50:57.1579293Z + python3 'C:\actions-runner\_work\_actions\pytorch\test-infra\main\.github/actions/get-workflow-job-id/../../scripts/get_workflow_job_id.py' 14656749847 i-011f9a5b269b95681 2025-04-25T04:50:57.9778319Z setting job-id=41133079877 2025-04-25T04:50:57.9778694Z setting job-name=win-vs2022-cuda12.6-py3 / build 2025-04-25T04:50:58.0015861Z ##[group]Run set -eux 2025-04-25T04:50:58.0016181Z set -eux 2025-04-25T04:50:58.0016380Z  2025-04-25T04:50:58.0016755Z python3 "${GITHUB_ACTION_PATH}/../../scripts/benchmarks/gather_metadata.py" \ 2025-04-25T04:50:58.0017270Z  --schema-version "${SCHEMA_VERSION}" \ 2025-04-25T04:50:58.0017579Z  --repo "${REPO}" \ 2025-04-25T04:50:58.0017854Z  --head-branch "${HEAD_BRANCH}" \ 2025-04-25T04:50:58.0018151Z  --head-sha "${HEAD_SHA}" \ 2025-04-25T04:50:58.0018455Z  --workflow-id "${WORKFLOW_RUN_ID}" \ 2025-04-25T04:50:58.0018783Z  --run-attempt "${RUN_ATTEMPT}" \ 2025-04-25T04:50:58.0019140Z  --job-id "${JOB_ID}" \ 2025-04-25T04:50:58.0019417Z  --job-name "${JOB_NAME}" 2025-04-25T04:50:58.0039540Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:58.0039989Z env: 2025-04-25T04:50:58.0040185Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:58.0040571Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:58.0041107Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:58.0041611Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:58.0042019Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:58.0042313Z SCHEMA_VERSION: v3 2025-04-25T04:50:58.0042537Z REPO: pytorch/pytorch 2025-04-25T04:50:58.0042782Z HEAD_BRANCH: refs/tags/ciflow/trunk/148893 2025-04-25T04:50:58.0043219Z HEAD_SHA: b68c0effe97351b0c24b2f7aef671559be6aa977 2025-04-25T04:50:58.0043602Z WORKFLOW_RUN_ID: 14656749847 2025-04-25T04:50:58.0043848Z RUN_ATTEMPT: 1 2025-04-25T04:50:58.0044047Z JOB_ID: 41133079877 2025-04-25T04:50:58.0044290Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-04-25T04:50:58.0044567Z ##[endgroup] 2025-04-25T04:50:58.0243381Z + 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 41133079877 --job-name 'win-vs2022-cuda12.6-py3 / build' 2025-04-25T04:50:58.1385162Z ##[group]Run set -eux 2025-04-25T04:50:58.1385413Z set -eux 2025-04-25T04:50:58.1385612Z  2025-04-25T04:50:58.1385835Z # TODO (huydhn): Implement this part 2025-04-25T04:50:58.1386173Z echo "runners=[]" >> "${GITHUB_OUTPUT}" 2025-04-25T04:50:58.1405667Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:58.1406121Z env: 2025-04-25T04:50:58.1406324Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:58.1406719Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:58.1407245Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:58.1407739Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:58.1408151Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:58.1408541Z ##[endgroup] 2025-04-25T04:50:58.1610453Z + echo 'runners=[]' 2025-04-25T04:50:58.1712823Z ##[group]Run set -eux 2025-04-25T04:50:58.1713141Z set -eux 2025-04-25T04:50:58.1713403Z  2025-04-25T04:50:58.1713664Z # TODO (huydhn): Implement this part 2025-04-25T04:50:58.1714092Z echo "dependencies={}" >> "${GITHUB_OUTPUT}" 2025-04-25T04:50:58.1733852Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:58.1734540Z env: 2025-04-25T04:50:58.1734777Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:58.1735217Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:58.1735812Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:58.1736369Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:58.1736838Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:58.1737217Z ##[endgroup] 2025-04-25T04:50:58.1935485Z + echo 'dependencies={}' 2025-04-25T04:50:58.2035073Z ##[group]Run set -eux 2025-04-25T04:50:58.2035410Z set -eux 2025-04-25T04:50:58.2035644Z  2025-04-25T04:50:58.2035955Z if [[ ! -d "${BENCHMARK_RESULTS_DIR}" ]]; then 2025-04-25T04:50:58.2036413Z  echo "${BENCHMARK_RESULTS_DIR} does not exist, skipping" 2025-04-25T04:50:58.2036945Z  # We don't want the job to fail if the directory doesn't exist 2025-04-25T04:50:58.2037383Z  exit 0 2025-04-25T04:50:58.2037617Z fi 2025-04-25T04:50:58.2037856Z  2025-04-25T04:50:58.2038113Z if [[ "${DRY_RUN}" == "true" ]]; then 2025-04-25T04:50:58.2038625Z  python3 "${GITHUB_ACTION_PATH}/../../scripts/upload_benchmark_results.py" \ 2025-04-25T04:50:58.2039188Z  --benchmark-results-dir "${BENCHMARK_RESULTS_DIR}" \ 2025-04-25T04:50:58.2039686Z  --metadata "${BENCHMARK_METADATA}" \ 2025-04-25T04:50:58.2040085Z  --runners "${RUNNER_INFO}" \ 2025-04-25T04:50:58.2040436Z  --dependencies "${DEPENDENCIES}" \ 2025-04-25T04:50:58.2040820Z  --dry-run 2025-04-25T04:50:58.2041076Z else 2025-04-25T04:50:58.2041487Z  python3 "${GITHUB_ACTION_PATH}/../../scripts/upload_benchmark_results.py" \ 2025-04-25T04:50:58.2042068Z  --benchmark-results-dir "${BENCHMARK_RESULTS_DIR}" \ 2025-04-25T04:50:58.2042530Z  --metadata "${BENCHMARK_METADATA}" \ 2025-04-25T04:50:58.2042904Z  --runners "${RUNNER_INFO}" \ 2025-04-25T04:50:58.2043272Z  --dependencies "${DEPENDENCIES}" 2025-04-25T04:50:58.2043628Z fi 2025-04-25T04:50:58.2063463Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-04-25T04:50:58.2063967Z env: 2025-04-25T04:50:58.2064214Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:50:58.2064766Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:50:58.2065488Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:50:58.2066077Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:50:58.2066560Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:50:58.2066930Z BENCHMARK_RESULTS_DIR: test/test-reports 2025-04-25T04:50:58.2067278Z DRY_RUN: false 2025-04-25T04:50:58.2068651Z BENCHMARK_METADATA: {"timestamp": 1745556658, "schema_version": "v3", "name": "win-vs2022-cuda12.6-py3 / build", "repo": "pytorch/pytorch", "head_branch": "refs/tags/ciflow/trunk/148893", "head_sha": "b68c0effe97351b0c24b2f7aef671559be6aa977", "workflow_id": 14656749847, "run_attempt": 1, "job_id": 41133079877} 2025-04-25T04:50:58.2069988Z RUNNER_INFO: [] 2025-04-25T04:50:58.2070260Z DEPENDENCIES: {} 2025-04-25T04:50:58.2070511Z ##[endgroup] 2025-04-25T04:50:58.2280659Z + [[ ! -d test/test-reports ]] 2025-04-25T04:50:58.2281799Z + [[ false == \t\r\u\e ]] 2025-04-25T04:50:58.2284432Z + 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": 1745556658, "schema_version": "v3", "name": "win-vs2022-cuda12.6-py3 / build", "repo": "pytorch/pytorch", "head_branch": "refs/tags/ciflow/trunk/148893", "head_sha": "b68c0effe97351b0c24b2f7aef671559be6aa977", "workflow_id": 14656749847, "run_attempt": 1, "job_id": 41133079877}' --runners '[]' --dependencies '{}' 2025-04-25T04:50:58.9046254Z INFO:root:Upload test/test-reports\sccache-stats.json to s3://ossci-benchmarks/v3/pytorch/pytorch/14656749847/41133079877/sccache-stats.json 2025-04-25T04:50:58.9769024Z INFO:botocore.credentials:Found credentials from IAM Role: gh-ci-github-action-runners-runner-role 2025-04-25T04:51:00.8260070Z Prepare all required actions 2025-04-25T04:51:00.8260607Z Getting action download info 2025-04-25T04:51:00.9604486Z ##[group]Run ./.github/actions/teardown-win 2025-04-25T04:51:00.9604944Z with: 2025-04-25T04:51:00.9605252Z extra-delete-dir: /c/14656749847/build-results/ 2025-04-25T04:51:00.9605719Z env: 2025-04-25T04:51:00.9605948Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:00.9606576Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:00.9607527Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:00.9608392Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:00.9610193Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:00.9610664Z ##[endgroup] 2025-04-25T04:51:00.9709592Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-04-25T04:51:00.9710079Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-04-25T04:51:00.9726470Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:51:00.9726940Z env: 2025-04-25T04:51:00.9727145Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:00.9727603Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:00.9728209Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:00.9728703Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:00.9729114Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:00.9729414Z ##[endgroup] 2025-04-25T04:51:01.3957187Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:51:01.4033042Z Finished 2025-04-25T04:51:01.5732990Z Holding runner until all ssh sessions have logged out 2025-04-25T04:51:01.6033134Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-04-25T04:51:01.6033853Z .github\scripts\kill_active_ssh_sessions.ps1 2025-04-25T04:51:01.6052795Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:51:01.6053714Z env: 2025-04-25T04:51:01.6053961Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:01.6054596Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:01.6056752Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:01.6057640Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:01.6058340Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:01.6058811Z ##[endgroup] 2025-04-25T04:51:01.9695662Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:51:01.9743625Z Finished 2025-04-25T04:51:02.0124942Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-04-25T04:51:02.0125345Z env: 2025-04-25T04:51:02.0125538Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:02.0125956Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:02.0126493Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:02.0127079Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:02.0127498Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:02.0127797Z ##[endgroup] 2025-04-25T04:51:02.0213420Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:51:02.0215259Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-04-25T04:51:02.0216535Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-04-25T04:51:02.0217408Z # handle tool 2025-04-25T04:51:02.0217962Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-04-25T04:51:02.0219775Z Foreach ($process In $processes) { 2025-04-25T04:51:02.0221771Z  Try { 2025-04-25T04:51:02.0222714Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-04-25T04:51:02.0224068Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-04-25T04:51:02.0225958Z  } 2025-04-25T04:51:02.0226223Z  Catch { 2025-04-25T04:51:02.0226710Z  Write-Output "No leftover $process process, continuing" 2025-04-25T04:51:02.0227352Z  Write-Output $_ 2025-04-25T04:51:02.0227697Z  } 2025-04-25T04:51:02.0227931Z } 2025-04-25T04:51:02.0228152Z  2025-04-25T04:51:02.0228950Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-04-25T04:51:02.0230061Z # for hung processes 2025-04-25T04:51:02.0231617Z Foreach ($process In $processes) { 2025-04-25T04:51:02.0232098Z  Try { 2025-04-25T04:51:02.0232783Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-04-25T04:51:02.0233610Z  } 2025-04-25T04:51:02.0233864Z  Catch { 2025-04-25T04:51:02.0234168Z  Write-Output $_ 2025-04-25T04:51:02.0234574Z  } 2025-04-25T04:51:02.0234795Z } 2025-04-25T04:51:02.0235024Z  2025-04-25T04:51:02.0235238Z Try { 2025-04-25T04:51:02.0235575Z  # Print all the processes for debugging 2025-04-25T04:51:02.0237470Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-04-25T04:51:02.0238221Z } 2025-04-25T04:51:02.0238449Z Catch { 2025-04-25T04:51:02.0239140Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-04-25T04:51:02.0240003Z  Write-Output $_ 2025-04-25T04:51:02.0240337Z } 2025-04-25T04:51:02.0262694Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:51:02.0263488Z env: 2025-04-25T04:51:02.0263841Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:02.0264493Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:02.0265460Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:02.0267517Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:02.0268227Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:02.0268698Z ##[endgroup] 2025-04-25T04:51:02.3996308Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:51:02.4069701Z Finished 2025-04-25T04:51:02.4248559Z No leftover python process, continuing 2025-04-25T04:51:02.4748360Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4749165Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4749873Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4750496Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4751016Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4751914Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4752539Z 2025-04-25T04:51:02.4767130Z No leftover ninja process, continuing 2025-04-25T04:51:02.4779543Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4780263Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4780848Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4781282Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4782650Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4783548Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4784173Z 2025-04-25T04:51:02.4796622Z No leftover cl process, continuing 2025-04-25T04:51:02.4808231Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4808927Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4809510Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4809930Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4810450Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4811363Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4811990Z 2025-04-25T04:51:02.4823063Z No leftover nvcc process, continuing 2025-04-25T04:51:02.4834248Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4834942Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4835511Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4835945Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4836431Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4837305Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4837931Z 2025-04-25T04:51:02.4847790Z No leftover cmd process, continuing 2025-04-25T04:51:02.4862522Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4863220Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4864627Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4865055Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4865540Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4866380Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4867068Z 2025-04-25T04:51:02.4912644Z No leftover sccache process, continuing 2025-04-25T04:51:02.4913261Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4914047Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4914723Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4927359Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4928109Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4928963Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4929664Z 2025-04-25T04:51:02.4929907Z No leftover git process, continuing 2025-04-25T04:51:02.4930520Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-04-25T04:51:02.4931221Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:9 char:5 2025-04-25T04:51:02.4931808Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-04-25T04:51:02.4932246Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.4932873Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-04-25T04:51:02.4933715Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-04-25T04:51:02.4934350Z 2025-04-25T04:51:02.5375174Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.5375740Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.5376341Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.5376800Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.5377218Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.5377655Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.5377962Z 2025-04-25T04:51:02.5535210Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.5535782Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.5536405Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.5536879Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.5537316Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.5537733Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.5538046Z 2025-04-25T04:51:02.5693561Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.5694125Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.5694709Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.5695174Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.5695603Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.5696020Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.5696364Z 2025-04-25T04:51:02.5850620Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.5851377Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.5851981Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.5852438Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.5852861Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.5853285Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.5853586Z 2025-04-25T04:51:02.6009587Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.6010149Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.6010729Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.6011208Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.6011630Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.6012224Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.6012536Z 2025-04-25T04:51:02.6167459Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.6168015Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.6168615Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.6169059Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.6169546Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.6169963Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.6170325Z 2025-04-25T04:51:02.6323623Z You cannot call a method on a null-valued expression. 2025-04-25T04:51:02.6324463Z At C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1:21 char:5 2025-04-25T04:51:02.6325068Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-04-25T04:51:02.6325532Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-04-25T04:51:02.6325964Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-04-25T04:51:02.6326381Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-04-25T04:51:02.6326693Z 2025-04-25T04:51:02.7375334Z Caption CommandLine ProcessId 2025-04-25T04:51:02.7375867Z 2025-04-25T04:51:02.7376256Z System Idle Process 0 2025-04-25T04:51:02.7376728Z 2025-04-25T04:51:02.7377166Z System 4 2025-04-25T04:51:02.7377582Z 2025-04-25T04:51:02.7378522Z Registry 168 2025-04-25T04:51:02.7379126Z 2025-04-25T04:51:02.7379584Z smss.exe 412 2025-04-25T04:51:02.7380008Z 2025-04-25T04:51:02.7401011Z csrss.exe 512 2025-04-25T04:51:02.7401548Z 2025-04-25T04:51:02.7402549Z wininit.exe 588 2025-04-25T04:51:02.7403003Z 2025-04-25T04:51:02.7403313Z csrss.exe 596 2025-04-25T04:51:02.7403740Z 2025-04-25T04:51:02.7404109Z winlogon.exe winlogon.exe 660 2025-04-25T04:51:02.7404591Z 2025-04-25T04:51:02.7404923Z services.exe 732 2025-04-25T04:51:02.7405427Z 2025-04-25T04:51:02.7405886Z lsass.exe C:\Windows\system32\lsass.exe 756 2025-04-25T04:51:02.7406526Z 2025-04-25T04:51:02.7407086Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 868 2025-04-25T04:51:02.7407707Z 2025-04-25T04:51:02.7408199Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 892 2025-04-25T04:51:02.7408830Z 2025-04-25T04:51:02.7409233Z fontdrvhost.exe "fontdrvhost.exe" 920 2025-04-25T04:51:02.7409727Z 2025-04-25T04:51:02.7410362Z fontdrvhost.exe "fontdrvhost.exe" 928 2025-04-25T04:51:02.7410874Z 2025-04-25T04:51:02.7411352Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 1016 2025-04-25T04:51:02.7411970Z 2025-04-25T04:51:02.7412565Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 8 2025-04-25T04:51:02.7413175Z 2025-04-25T04:51:02.7413697Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 724 2025-04-25T04:51:02.7414329Z 2025-04-25T04:51:02.7414960Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1096 2025-04-25T04:51:02.7415741Z 2025-04-25T04:51:02.7416053Z dwm.exe "dwm.exe" 1148 2025-04-25T04:51:02.7416474Z 2025-04-25T04:51:02.7417100Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1228 2025-04-25T04:51:02.7417927Z 2025-04-25T04:51:02.7418479Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1312 2025-04-25T04:51:02.7419144Z 2025-04-25T04:51:02.7419970Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1344 2025-04-25T04:51:02.7420680Z 2025-04-25T04:51:02.7421189Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1368 2025-04-25T04:51:02.7421778Z 2025-04-25T04:51:02.7422297Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1400 2025-04-25T04:51:02.7422909Z 2025-04-25T04:51:02.7423441Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-04-25T04:51:02.7424136Z 2025-04-25T04:51:02.7424836Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1492 2025-04-25T04:51:02.7425688Z 2025-04-25T04:51:02.7427553Z 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 1512 2025-04-25T04:51:02.7429606Z 2025-04-25T04:51:02.7430156Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1580 2025-04-25T04:51:02.7430848Z 2025-04-25T04:51:02.7431349Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1692 2025-04-25T04:51:02.7431952Z 2025-04-25T04:51:02.7432728Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1700 2025-04-25T04:51:02.7433355Z 2025-04-25T04:51:02.7433898Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1708 2025-04-25T04:51:02.7434558Z 2025-04-25T04:51:02.7435038Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1824 2025-04-25T04:51:02.7435702Z 2025-04-25T04:51:02.7436294Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1848 2025-04-25T04:51:02.7436994Z 2025-04-25T04:51:02.7437568Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1856 2025-04-25T04:51:02.7438302Z 2025-04-25T04:51:02.7438862Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1924 2025-04-25T04:51:02.7439501Z 2025-04-25T04:51:02.7440041Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1960 2025-04-25T04:51:02.7440718Z 2025-04-25T04:51:02.7441530Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2000 2025-04-25T04:51:02.7442224Z 2025-04-25T04:51:02.7442840Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 1224 2025-04-25T04:51:02.7443535Z 2025-04-25T04:51:02.7444228Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2052 2025-04-25T04:51:02.7445004Z 2025-04-25T04:51:02.7445427Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2220 2025-04-25T04:51:02.7445967Z 2025-04-25T04:51:02.7446599Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2296 2025-04-25T04:51:02.7447392Z 2025-04-25T04:51:02.7447913Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2320 2025-04-25T04:51:02.7448554Z 2025-04-25T04:51:02.7449099Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2436 2025-04-25T04:51:02.7449791Z 2025-04-25T04:51:02.7450283Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2444 2025-04-25T04:51:02.7450892Z 2025-04-25T04:51:02.7451563Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2456 2025-04-25T04:51:02.7452368Z 2025-04-25T04:51:02.7453063Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2468 2025-04-25T04:51:02.7453768Z 2025-04-25T04:51:02.7454305Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2480 2025-04-25T04:51:02.7454932Z 2025-04-25T04:51:02.7455453Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2488 2025-04-25T04:51:02.7456061Z 2025-04-25T04:51:02.7456590Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2504 2025-04-25T04:51:02.7457261Z 2025-04-25T04:51:02.7457805Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2512 2025-04-25T04:51:02.7458439Z 2025-04-25T04:51:02.7458961Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2788 2025-04-25T04:51:02.7459623Z 2025-04-25T04:51:02.7460045Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2832 2025-04-25T04:51:02.7460584Z 2025-04-25T04:51:02.7461170Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2872 2025-04-25T04:51:02.7461795Z 2025-04-25T04:51:02.7462467Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3004 2025-04-25T04:51:02.7463246Z 2025-04-25T04:51:02.7463771Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3024 2025-04-25T04:51:02.7464408Z 2025-04-25T04:51:02.7464916Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 2072 2025-04-25T04:51:02.7465537Z 2025-04-25T04:51:02.7466236Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3212 2025-04-25T04:51:02.7467078Z 2025-04-25T04:51:02.7467728Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3476 2025-04-25T04:51:02.7468500Z 2025-04-25T04:51:02.7469110Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4052 2025-04-25T04:51:02.7469975Z 2025-04-25T04:51:02.7470525Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 3100 2025-04-25T04:51:02.7471245Z 2025-04-25T04:51:02.7473019Z 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 1684 2025-04-25T04:51:02.7474862Z 2025-04-25T04:51:02.7475619Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 3568 2025-04-25T04:51:02.7476466Z 2025-04-25T04:51:02.7476867Z vds.exe C:\Windows\System32\vds.exe 3844 2025-04-25T04:51:02.7477350Z 2025-04-25T04:51:02.7477906Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 2604 2025-04-25T04:51:02.7478569Z 2025-04-25T04:51:02.7479022Z msdtc.exe C:\Windows\System32\msdtc.exe 3752 2025-04-25T04:51:02.7479539Z 2025-04-25T04:51:02.7480138Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 1168 2025-04-25T04:51:02.7480847Z 2025-04-25T04:51:02.7481389Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1608 2025-04-25T04:51:02.7482003Z 2025-04-25T04:51:02.7482665Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2416 2025-04-25T04:51:02.7483448Z 2025-04-25T04:51:02.7484017Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4248 2025-04-25T04:51:02.7484645Z 2025-04-25T04:51:02.7485208Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4656 2025-04-25T04:51:02.7485875Z 2025-04-25T04:51:02.7486487Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 3424 2025-04-25T04:51:02.7487191Z 2025-04-25T04:51:02.7487845Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 5004 2025-04-25T04:51:02.7488623Z 2025-04-25T04:51:02.7489376Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 5052 2025-04-25T04:51:02.7490240Z 2025-04-25T04:51:02.7491893Z 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 1192 2025-04-25T04:51:02.7493662Z 2025-04-25T04:51:02.7494099Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1648 2025-04-25T04:51:02.7494629Z 2025-04-25T04:51:02.7495133Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1768 2025-04-25T04:51:02.7495667Z 2025-04-25T04:51:02.7496183Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4108 2025-04-25T04:51:02.7496819Z 2025-04-25T04:51:02.7497333Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1660 2025-04-25T04:51:02.7497971Z 2025-04-25T04:51:02.7498492Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 3408 2025-04-25T04:51:02.7499125Z 2025-04-25T04:51:02.7499556Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4260 2025-04-25T04:51:02.7500142Z 2025-04-25T04:51:02.7500741Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 144 2025-04-25T04:51:02.7501444Z 2025-04-25T04:51:02.7502011Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 1912 1412 4680 2025-04-25T04:51:02.7502738Z 2025-04-25T04:51:02.7503176Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3392 2025-04-25T04:51:02.7503718Z 2025-04-25T04:51:02.7504260Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4960 2025-04-25T04:51:02.7504816Z 2025-04-25T04:51:02.7505678Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\92f84eb5-2fd2-4d9b-9e79-fa5d4fbc23ad.ps1'" 1388 2025-04-25T04:51:02.7506628Z 2025-04-25T04:51:02.7507262Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5880 2025-04-25T04:51:02.7508004Z 2025-04-25T04:51:02.7508008Z 2025-04-25T04:51:02.7508012Z 2025-04-25T04:51:02.7811374Z ##[group]Run nick-fields/retry@v3.0.0 2025-04-25T04:51:02.7811659Z with: 2025-04-25T04:51:02.7811838Z shell: bash 2025-04-25T04:51:02.7812025Z timeout_minutes: 5 2025-04-25T04:51:02.7812246Z max_attempts: 3 2025-04-25T04:51:02.7812451Z retry_wait_seconds: 90 2025-04-25T04:51:02.7813509Z 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:51:02.7814782Z polling_interval_seconds: 1 2025-04-25T04:51:02.7815046Z warning_on_retry: true 2025-04-25T04:51:02.7815283Z continue_on_error: false 2025-04-25T04:51:02.7815504Z env: 2025-04-25T04:51:02.7815704Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:02.7816069Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:02.7816616Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:02.7817119Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:02.7817515Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:02.7817860Z EXTRA_DELETE_DIR: /c/14656749847/build-results/ 2025-04-25T04:51:02.7818156Z ##[endgroup] 2025-04-25T04:51:03.2170358Z + '[' -n /c/14656749847/build-results/ ']' 2025-04-25T04:51:03.2170765Z + rm -rf /c/14656749847/build-results/ 2025-04-25T04:51:03.2763649Z + 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-cuda12.6-py3-41133079877.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-04-25T04:51:32.3408576Z Command completed after 1 attempt(s). 2025-04-25T04:51:32.3600429Z ##[group]Run handle C:\actions-runner\_work\ 2025-04-25T04:51:32.3602279Z handle C:\actions-runner\_work\ 2025-04-25T04:51:32.3623722Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:51:32.3624555Z env: 2025-04-25T04:51:32.3625564Z GIT_DEFAULT_BRANCH: main 2025-04-25T04:51:32.3626671Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-04-25T04:51:32.3627628Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-04-25T04:51:32.3628494Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-04-25T04:51:32.3629200Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-04-25T04:51:32.3629675Z ##[endgroup] 2025-04-25T04:51:32.7429040Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:51:32.7482136Z Finished 2025-04-25T04:51:33.1808803Z 2025-04-25T04:51:33.1809210Z Nthandle v5.0 - Handle viewer 2025-04-25T04:51:33.1809588Z Copyright (C) 1997-2022 Mark Russinovich 2025-04-25T04:51:33.1809925Z Sysinternals - www.sysinternals.com 2025-04-25T04:51:33.1810140Z 2025-04-25T04:51:33.2162467Z powershell.exe pid: 5204 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:51:33.2163140Z handle.exe pid: 5364 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:51:33.2163710Z handle.exe pid: 5132 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:51:33.2164293Z handle64.exe pid: 5428 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:51:33.3275073Z Post job cleanup. 2025-04-25T04:51:33.4312874Z Post job cleanup. 2025-04-25T04:51:33.8430360Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-04-25T04:51:33.8649159Z git version 2.47.1.windows.2 2025-04-25T04:51:33.8720879Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\43b72615-7be4-4bca-be49-476bd460fc95\.gitconfig' 2025-04-25T04:51:33.8730306Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\43b72615-7be4-4bca-be49-476bd460fc95' before making global git config changes 2025-04-25T04:51:33.8731486Z Adding repository directory to the temporary git global config as a safe directory 2025-04-25T04:51:33.8741606Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-04-25T04:51:33.9026084Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-04-25T04:51:33.9296674Z [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:51:34.3789853Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-04-25T04:51:34.4002815Z http.https://github.com/.extraheader 2025-04-25T04:51:34.4049514Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-04-25T04:51:34.4379257Z [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:51:34.8325906Z A job completed hook has been configured by the self-hosted runner administrator 2025-04-25T04:51:34.8398569Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-04-25T04:51:34.8447889Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-04-25T04:51:34.8448745Z ##[endgroup] 2025-04-25T04:51:35.2115814Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-04-25T04:51:35.2186265Z Finished 2025-04-25T04:51:36.7802978Z Evaluate and set job outputs 2025-04-25T04:51:36.7809118Z Cleaning up orphan processes